/* =================================================================
   On Point Hydrovac — Theme Styles (matches provided screenshots)
   Font: Inter, dark hero, blue pill CTAs, white content sections
   ================================================================= */

/* ------------------------ Design Tokens ------------------------ */
:root{
  --ink: #0b0d10;        /* near-black for hero/bg */
  --panel: #0f141a;      /* dark card */
  --line: #1d2128;       /* subtle borders on dark */
  --text: #f5f6f7;       /* light text on dark */
  --muted: #cbd5e1;      /* muted on dark */
  --muted-ink: #475569;  /* muted on light */
  --ink-2: #111827;      /* headings on light */
  --bg: #ffffff;         /* light section bg */
  --bg-subtle: #f6f7f9;  /* subtle grey */
  --ring: #94a3b8;

  --brand-1: #7dd3fc;    /* sky */
  --brand-2: #22d3ee;    /* cyan */

  --shadow-lg: 0 10px 30px rgba(2,6,23,.20);
  --shadow-md: 0 8px 24px rgba(2,6,23,.12);
  --radius: 18px;
}

/* -------------------------- Base ------------------------------- */
*{ box-sizing: border-box; }
html, body{ height:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 75% -10%, #16202a 0%, transparent 60%), var(--ink);
  letter-spacing:.01em;
}
img{ max-width:100%; display:block; border-radius: calc(var(--radius) - 6px); }
h1,h2,h3{ margin:0 0 .6rem; line-height:1.05; letter-spacing:-.02em; }
p{ margin:0 0 1rem; }
a{ color:inherit; text-decoration:none; }
.center{ text-align:center; }
.nowrap{ white-space:nowrap; }

.container{ width:min(1200px, 92vw); margin-inline:auto; }

/* ------------------------- Header ------------------------------ */
.site-header{
  position: sticky; top:0; z-index:50;
  background: color-mix(in oklab, #0c1116 70%, transparent);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:.7rem 0; }
.brand{ font-weight:800; letter-spacing:-.02em; display:inline-flex; align-items:center; gap:.6rem; color:#f8fafc; }
.brand .muted{ color:#cbd5e1; font-weight:600; }
.brand-dot{ width:.8rem; height:.8rem; background: linear-gradient(135deg, var(--brand-1), var(--brand-2)); border-radius:50%; box-shadow:0 0 0 4px rgba(125,211,252,.15); }
.main-nav{ display:flex; gap:1.2rem; align-items:center; }
.main-nav a{ color:#aeb7c2; font-weight:600; padding:.5rem .6rem; border-radius:10px; }
.main-nav a:hover{ color:#fff; background:#161a20; }

.hamburger{ display:none; background:none; border:0; width:42px; height:36px; position:relative; }
.hamburger span{ position:absolute; left:8px; right:8px; height:2px; background:#e5e7eb; border-radius:2px; transition:.2s; }
.hamburger span:nth-child(1){ top:10px } .hamburger span:nth-child(2){ top:17px } .hamburger span:nth-child(3){ top:24px }
.mobile-menu{ display:none; grid-template-columns:1fr; gap:.2rem; padding:0 1rem .8rem; border-bottom:1px solid var(--line); }
.mobile-menu a{ padding:.8rem 1rem; border-radius:12px; background:#101419; color:#d1d7de; }
.mobile-menu a:hover{ color:#fff; }

/* -------------------------- Hero ------------------------------- */
.hero{ padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 5rem); background:var(--ink); color:var(--text); }
.hero-grid{ display:grid; gap:2rem; align-items:center; grid-template-columns: 1.1fr 1fr; }
.display{ font-size: clamp(2.6rem, 5.4vw, 4.2rem); font-weight:900; }
.lede{ font-size: clamp(1rem, 1.3vw, 1.125rem); color:var(--muted); max-width:48ch; }

.pill{ display:inline-flex; align-items:center; gap:.5rem; background:#11151b; color:#c7d0da; border:1px solid var(--line); padding:.35rem .6rem; border-radius:999px; font-size:.85rem; }

.hero-image{ position:relative; }
.hero-image img{ width:100%; height: clamp(420px, 60vh, 720px); object-fit:cover; border-radius: var(--radius); }
.rating-card{
  position:absolute; right:16px; bottom:16px; width:min(320px, 80%);
  background:#0c1116cc; border:1px solid var(--line); border-radius:14px; padding:.9rem 1rem; box-shadow:var(--shadow-lg); font-size:.95rem;
}
.rating-card .stars{ color:#ffd166; letter-spacing:.15em; margin-bottom:.4rem; }

/* --------------------------- Buttons --------------------------- */
.btn{ display:inline-flex; align-items:center; gap:.6rem; padding:.9rem 1.1rem; border-radius:9999px; font-weight:800; border:1px solid var(--line); transition: transform .2s ease, filter .2s ease; }
.btn .arrow{ width:18px; height:18px; }
.btn--primary{
  background:linear-gradient(180deg, var(--brand-1) 0%, var(--brand-2) 100%);
  color:#0b0d10; border:0; box-shadow: 0 6px 18px rgba(34,211,238,.25);
}
.btn--primary:hover{ transform: translateY(-2px); filter: brightness(1.02); }
.btn--ghost{ background:#12161d; color:#d1d7de; border-color:transparent; }
.btn--ghost:hover{ background:#151a22; }
.btn--primary .btn-end{
  display:inline-grid; place-items:center;
  width:34px; height:34px; margin-left:.6rem; border-radius:50%;
  background:#0b0f14; color:#bfe9ff; box-shadow: inset 0 0 0 1px #1e2936; transition: transform .2s ease;
}
.btn--primary:hover .btn-end{ transform: translateX(2px); }
.btn--primary .btn-label{ padding-left:.1rem; }

/* ----------------------- Light Sections ------------------------ */
section.section{ padding: clamp(3rem, 6vw, 6rem) 0; }
section:not(.hero){ background:#fff; color:#111; }
section:not(.hero) h1, section:not(.hero) h2, section:not(.hero) h3, section:not(.hero) p, section:not(.hero) .muted{ color:#111 !important; }
section:not(.hero) .muted{ color: var(--muted-ink) !important; }
section:not(.hero) .btn--primary{
  background: #0b0d10; color:#fff; box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
section:not(.hero) .btn--primary .btn-end{
  background:#fff; color:#0b0d10; box-shadow: inset 0 0 0 1px #cbd5e1;
}
section:not(.hero) .btn--primary:hover .btn-end{ transform: translateX(2px); background:#f3f4f6; }
section:not(.hero) .btn--ghost{ background:#f3f4f6; color:#111; border:1px solid #d1d5db; }
section:not(.hero) .btn--ghost:hover{ background:#e5e7eb; }

/* -------------------------- About ------------------------------ */
.eyebrow{ display:inline-block; font-weight:700; color:#0f172a; background:#f1f5f9; border:1px solid #e2e8f0; padding:.35rem .6rem; border-radius:999px; margin-bottom:.9rem; }
.about-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items:start; }
.about-title h2{ color:#0f172a; font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight:800; line-height:1.02; }
.about-copy{ color:#334155; font-size: clamp(1rem, 1.4vw, 1.125rem); line-height:1.8; }

.gallery{ display:grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: clamp(.8rem, 1.6vw, 1.2rem); overflow-x:auto; padding-top:1.2rem; scrollbar-width: thin; }
.gallery img{ height:360px; object-fit:cover; border-radius:20px; border:1px solid #e5e7eb; box-shadow: 0 8px 26px rgba(2,6,23,.06); }

/* Stats */
.stats--simple{ background:#fff; padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(2rem, 4vw, 4rem); }
.metric-num{ line-height:1; margin-bottom:.8rem; }
.metric-num .counter{ font-weight:600; font-size: clamp(56px, 7vw, 84px); color:#0f172a; letter-spacing:-.01em; }
.metric h3{ font-weight:600; font-size: clamp(1.15rem, 2vw, 1.4rem); color:#0f172a; margin:0 0 .4rem; }
.metric p{ font-size: clamp(.95rem, 1.3vw, 1.05rem); line-height:1.6; color:#475569; margin:0; }

/* -------------------------- Services -------------------------- */
.services--light{ background:#f6f7f9; }
.services-grid{ display:grid; grid-template-columns: 1.15fr 1fr; gap: 1.5rem; align-items:start; }
.service-figure img{ width:100%; height:520px; object-fit:cover; border-radius:16px; border:1px solid #e5e7eb; box-shadow: var(--shadow-md); }

/* Minimal list look (no card borders) to match screenshots */
.service-list{ background:transparent; border:0; border-radius:0; box-shadow:none; }
.service-list .service{ border:0; background:transparent; }
.service-list summary{ list-style:none; display:flex; align-items:center; gap:.8rem; padding:1rem 0; font-weight:800; color:#0f172a; cursor:pointer; position:relative; }
.service-list summary::-webkit-details-marker{ display:none; }
.service-list .s-ico{ width:22px; text-align:center; opacity:.9; }
.service-list .s-title{ flex:1; }
.service-list .plus{ width:20px; height:20px; opacity:.6; transform:rotate(0deg); transition:.2s; }
.service-list details[open] .plus{ transform: rotate(45deg); opacity:.35; }
.service-list .s-body{ padding:.6rem 0 1rem 2.5rem; color:#475569; line-height:1.7; }

/* ---------------------------- Work ---------------------------- */
.work{ background:#fff; }
.work .section-title, .work .muted, .work .eyebrow{ text-align:center; margin-left:auto; margin-right:auto; }
.work .carousel{ position:relative; margin-top:1.2rem; border-radius:var(--radius); }
.c-track{ display:flex; gap:1rem; overflow:hidden; scroll-behavior:smooth; }
.project-card{
  min-width:100%;
  display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1rem, 2vw, 1.4rem); align-items:center;
  background:#eef2f6; border:1px solid #e5e7eb; border-radius:18px; padding: clamp(1rem, 2vw, 1.25rem); color:#0f172a;
}
.project-img{ height: clamp(260px, 45vh, 360px); object-fit:cover; border-radius:14px; border:1px solid #e5e7eb; box-shadow: 0 10px 22px rgba(2,6,23,.06); }
.project-body h3{ font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight:800; margin:.1rem 0 .6rem; color:#111827; }
.project-body p{ color:#475569; }
.chips{ display:flex; gap:.5rem; margin:.9rem 0 .5rem; flex-wrap:wrap; }
.chip{ background:#fff; border:1px solid #e5e7eb; color:#0f172a; padding:.35rem .6rem; border-radius:999px; font-size:.85rem; font-weight:600; }
.project-body blockquote{ margin:.6rem 0 0; padding-left:1rem; border-left:3px solid #d1d5db; color:#0f172a; }
.project-body cite{ display:block; color:#6b7280; font-style:normal; margin-top:.35rem; }
.work .c-arrow{ display:none; }
.work .c-dots{ display:flex; justify-content:center; gap:.45rem; padding:.8rem 0 0; }
.work .c-dots button{ width:8px; height:8px; border-radius:50%; border:0; background:#c5ced8; }
.work .c-dots button[aria-current="true"]{ background:#7b8aa0; }

/* ----------------------- Testimonials ------------------------- */
.testimonials--marquee{ background:#fff; }
.t-marquee{ display:grid; gap:1.2rem; margin-top:1.5rem; }
.t-row{ position:relative; overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.t-track{ display:flex; gap:1.2rem; padding:.3rem 0; will-change:transform; }
.t-card{
  flex:0 0 32%; min-width:320px; max-width:520px;
  border-radius:16px; padding:1.2rem; border:1px solid #e5e7eb; box-shadow:0 8px 18px rgba(2,6,23,.05);
  color:#0f172a;
}
.t-row:nth-of-type(1) .t-card{ background:#ffffff; }
.t-row:nth-of-type(2) .t-card{ background:#f3f4f6; }
.t-card .stars{ color:#f5b301; letter-spacing:.18em; margin-bottom:.6rem; }
.t-card p{ color:#475569; line-height:1.7; margin:0 0 .9rem; }
.t-card .author{ display:flex; align-items:center; gap:.6rem; color:#111827; font-weight:600; }
.t-card .author img{ width:34px; height:34px; border-radius:50%; object-fit:cover; border:1px solid #e5e7eb; }

/* --------------------------- FAQs ----------------------------- */
.faqs{ background:#fff; }
.faqs-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items:start; }
.faqs-left .section-title{ margin:.5rem 0; }
.faqs-left .btn{ margin-top:1rem; }
.faqs-right{ display:flex; flex-direction:column; gap:.8rem; }
.faqs-right details{ background:#fafafa; border:1px solid #e5e7eb; border-radius:10px; padding:.9rem 1.1rem; transition:background .2s; }
.faqs-right details[open]{ background:#fff; border-color:#d1d5db; }
.faqs-right summary{ list-style:none; cursor:pointer; font-weight:600; font-size:1.05rem; color:#111827; display:flex; justify-content:space-between; align-items:center; }
.faqs-right summary::-webkit-details-marker{ display:none; }
.faqs-right summary::after{ content:"+"; font-weight:700; font-size:1.2rem; color:#475569; }
.faqs-right details[open] summary::after{ content:"×"; font-size:1.25rem; color:#475569; }
.faqs-right p{ margin-top:.7rem; font-size:.95rem; line-height:1.65; color:#475569; }

/* -------------------------- Contact --------------------------- */
.contact{ background:#fff; }
.contact .container{ max-width:1200px; }
.contact-wrap{ background:#0b0f14; border-radius:18px; padding: clamp(1rem,2.5vw,1.4rem); display:grid; grid-template-columns:1fr 1fr; gap: clamp(1rem,2vw,1.2rem); }
.contact-info{ color:#e5eaf0; padding:.75rem; }
.contact-info .section-title{ color:#fff; margin:.4rem 0 .6rem; font-weight:800; }
.contact-info .lede{ color:#c8d1db; max-width:46ch; }
.contact-list{ margin: 1.2rem 0 1rem; }
.contact-list .row{ display:flex; gap:2rem; align-items:baseline; padding:.6rem 0; border-bottom:1px solid #1b2531; }
.contact-list .row:last-child{ border-bottom:0; }
.contact-list dt{ width:140px; color:#e8edf5; font-weight:700; }
.contact-list dd, .contact-list a{ color:#c8d1db; }
.contact-list a:hover{ color:#fff; }
.socials{ display:flex; gap:.6rem; margin-top:.6rem; }
.socials .soc{ display:inline-grid; place-items:center; width:40px; height:40px; border-radius:12px; background:#0e141b; border:1px solid #1f2b38; color:#d7dde6; }

.contact-form{ background:#ffffff; border-radius:14px; border:1px solid #e5e7eb; padding: clamp(1rem,2vw,1.25rem); color:#0f172a; display:grid; gap:.85rem; }
.contact-form label{ display:grid; gap:.4rem; font-weight:700; color:#0f172a; }
.contact-form input, .contact-form textarea{ background:#f7f8fa; border:1px solid #e5e7eb; border-radius:10px; padding:.85rem 1rem; color:#0f172a; font: inherit; }
.contact-form input::placeholder, .contact-form textarea::placeholder{ color:#9aa5b1; }
.btn--dark-fill{ background:#3f3f46; color:#fff; border-radius:9999px; padding:.9rem 1rem; font-weight:700; border:none; }
.btn--dark-fill:hover{ filter:brightness(1.05); }
.req-note{ color:#6b7280; }

/* --------------------------- Footer --------------------------- */
.footer{ border-top:1px solid #e5e7eb; padding: 2rem 0 2.4rem; background:#f9fafb; color:#111; }
.footer-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:2rem; align-items:start; }
.footer-links{ display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; }
.footer-links h4{ color:#475569; margin:0 0 .6rem; }
.footer-links a{ color:#374151; display:block; margin:.2rem 0; }
.copy{ margin-top:1.2rem; color:#6b7280; }

/* ------------------------ Utilities/Reveal --------------------- */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
.delay-1{ transition-delay:.08s; } .delay-2{ transition-delay:.16s; } .delay-3{ transition-delay:.24s; }

@media (prefers-reduced-motion: reduce){
  .reveal, .btn{ transition:none !important; }
}

/* -------------------------- Responsive ------------------------ */
@media (max-width:1080px){
  .hero-grid, .services-grid, .contact-wrap, .faqs-grid, .footer-grid, .work .project-card{ grid-template-columns:1fr; }
  .main-nav{ display:none; }
  .hamburger{ display:block; }
  .hero-image img{ height:420px; }
  .stats--simple{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width:980px){
  .work .project-card{ grid-template-columns:1fr; }
  .work .project-img{ height:260px; }
}
@media (max-width:680px){
  .gallery img{ height: 220px; }
  .stats--simple{ grid-template-columns: 1fr; }
  .t-card{ flex-basis: 82% !important; min-width: 260px !important; }
}
@media (max-width:768px){
  .cta-row .btn, .contact-form .btn, .btn-row .btn{ width:100%; justify-content:center; }
  .contact-wrap{ padding:16px; border-radius:18px; }
  .contact-list .row{ flex-wrap:wrap; gap:.5rem 1rem; }
  .contact-list dt{ width:auto; min-width:88px; }
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
}

/* ------------------- Careers (Cards) -------------------------- */
.careers-head{ margin-bottom: clamp(18px, 3vw, 28px); }
.careers-grid{ display:grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: clamp(16px, 2.6vw, 22px); }
@media (max-width:900px){ .careers-grid{ grid-template-columns:1fr; } }

.job-card{ background:#fff; border:1px solid #e5e7eb; border-radius:16px; box-shadow: var(--shadow-md); overflow:hidden; cursor:pointer; }
.job-top{ padding:16px 16px 12px; display:grid; grid-template-columns: 1fr auto; gap:6px 12px; align-items:start; position:relative; padding-bottom:46px; }
.job-title{ font-weight:700; color:#0f172a; }
.job-meta{ color:#475569; font-size:.95rem; display:flex; align-items:center; gap:.5rem; }
.badge{ background:#eef2ff; color:#3730a3; padding:.18rem .5rem; border-radius:999px; font-weight:600; font-size:.85rem; }
.dot{ opacity:.5; }
.job-toggle{ position:absolute; right:12px; bottom:12px; background:#111827; color:#fff; border:0; border-radius:999px; padding:.5rem .8rem; font-weight:600; cursor:pointer; }
.job-toggle[aria-expanded="true"]{ background:#334155; }
.job-body{ padding: 6px 16px 16px; border-top:1px solid #e5e7eb; display:none; }
.job-card.is-open .job-body{ display:block; }
.job-desc h3{ font-size:1.05rem; margin:.6rem 0 .35rem; color:#0f172a; }
.job-desc ul{ padding-left:1.1rem; margin:0 0 .6rem; color:#475569; }
.job-snippet{ margin:4px 0 10px; color:#475569; max-width:60ch; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* ------------------- Mobile Menu Sheet ------------------------ */
.mobile-menu{
  display:none; /* shown only <1024 via @media */
  position: fixed; inset: 56px 0 0 0;
  background: rgba(12,16,20,.98);
  backdrop-filter: blur(6px);
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  padding: 12px min(28px, 5vw) 32px;
}
.mobile-menu.open{ opacity:1; transform: translateY(0); pointer-events:auto; }
.mobile-menu a{ display:block; padding:14px 8px; color:#e5e7eb; font-weight:600; border-bottom:1px solid rgba(255,255,255,.06); }

/* --------------------- Accessibility Focus -------------------- */
:focus-visible{ outline: 2px solid var(--ring); outline-offset: 2px; }

/* ====== Job Card: modern & minimalist ====== */
.job-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;box-shadow:0 6px 18px rgba(2,6,23,.06);overflow:hidden;transition:border-color .2s,box-shadow .2s;}
.job-card.is-open{border-color:#d1d5db;box-shadow:0 10px 28px rgba(2,6,23,.10);}
.job-top{padding:16px;display:grid;grid-template-columns:1fr auto;gap:8px 12px;align-items:start;position:relative;padding-bottom:56px;background:#fff;}
.job-title{font-weight:700;color:#0f172a;letter-spacing:-.01em;}
.job-meta{display:flex;align-items:center;gap:.6rem;color:#475569;font-size:.95rem;}
.badge{background:#eef2ff;color:#3730a3;padding:.2rem .55rem;border-radius:999px;font-weight:600;font-size:.85rem;}
.job-snippet{grid-column:1/-1;margin-top:2px;color:#475569;max-width:70ch;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.job-toggle{position:absolute;right:12px;bottom:12px;background:#111827;color:#fff;border:0;border-radius:999px;padding:.55rem .9rem;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;gap:.4rem;box-shadow:0 4px 12px rgba(2,6,23,.12);}
.job-toggle:hover{filter:brightness(1.05);} .job-toggle[aria-expanded="true"]{background:#334155;}
.job-body{padding:10px 16px 16px;border-top:1px solid #e5e7eb;background:#fafafa;display:none;}
.job-card.is-open .job-body{display:block;}
.job-desc h3{font-size:1.05rem;margin:.8rem 0 .4rem;color:#0f172a;}
.job-desc ul{padding-left:1.1rem;margin:0;color:#475569;} .job-desc li{margin:.34rem 0;}
.apply-form{margin-top:.8rem;background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:12px;}
.apply-form h4{margin:0 0 .6rem;color:#0f172a;}
.apply-form .fields{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}
.apply-form .fields .full{grid-column:1/-1;}
.apply-form label span{display:block;font-weight:600;font-size:.92rem;margin-bottom:.25rem;color:#0f172a;}
.apply-form input[type="text"],.apply-form input[type="email"],.apply-form input[type="tel"],.apply-form input[type="file"],.apply-form textarea{width:100%;border:1px solid #d1d5db;border-radius:10px;padding:.65rem .75rem;background:#f8fafc;color:#0f172a;font:inherit;}
.apply-form input[type="file"]{padding:.5rem;background:#fff;}
.apply-actions{display:flex;align-items:center;gap:12px;margin-top:10px;}
.apply-status{font-size:.95rem;color:#0f172a;}
.btn.btn-primary{background:#111827;color:#fff;border:0;border-radius:999px;padding:.7rem 1rem;font-weight:700;cursor:pointer;}
.btn.btn-primary:hover{background:#334155;}
@media (max-width:640px){.apply-form .fields{grid-template-columns:1fr;}}

/* ===== About — small card gallery ===== */
#about .gallery-carousel{
  --g-gap: 14px;              /* card gap */
  margin-top: .6rem;
}
#about .gallery-carousel .c-viewport{ overflow: hidden; border-radius: 14px; }
#about .gallery-carousel .c-track{
  display: flex;
  gap: var(--g-gap);
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform .35s ease;
}

/* Card size */
#about .gallery-carousel .c-slide{ width: 280px; flex: 0 0 auto; }
@media (min-width: 640px){ #about .gallery-carousel .c-slide{ width: 300px; } }
@media (min-width: 1024px){ #about .gallery-carousel .c-slide{ width: 320px; } }

/* Card look */
#about .gallery-carousel img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(2,6,23,.06);
}

/* Controls (compact) */
#about .gallery-carousel .c-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:36px; height:36px; border-radius:999px; border:0;
  display:grid; place-items:center; color:#fff; cursor:pointer;
  background: rgba(15,23,42,.85);
}
#about .gallery-carousel .c-arrow.prev{ left:.25rem; }
#about .gallery-carousel .c-arrow.next{ right:.25rem; }
#about .gallery-carousel .c-dots{ display:flex; gap:6px; justify-content:center; margin-top:6px; }
#about .gallery-carousel .c-dots button{
  width:7px; height:7px; border-radius:50%; border:0; background:#cbd5e1;
}
#about .gallery-carousel .c-dots button[aria-current="true"]{ background:#64748b; }

/* Services: subtle highlight for the open item */
#services .service[open] .s-title { text-decoration: none; }

/* Subtle active state */
#services .service[open] summary { color:#0f172a; }
#services .service[open] .plus { transform: rotate(45deg); opacity:.35; }

/* ===== Contact section adjustments ===== */
.contact-wrap {
  background: #0b0f14;          /* dark background */
  color: #f1f5f9;               /* light text */
}

.contact-info .section-title {
  color: #fff !important;
}

.contact-info,
.contact-info p,
.contact-info .lede,
.contact-list dt,
.contact-list dd,
.contact-list a {
  color: #e2e8f0 !important;
}

.contact-list .row {
  border-bottom: 1px solid #1f2937; /* subtle divider */
}
.contact-list .row:last-child { border-bottom: none; }

.socials .soc {
  background: #111827;
  border: 1px solid #1f2937;
  color: #f1f5f9;
}
.socials .soc:hover {
  background: #1f2937;
  color: #fff;
}

/* ===== Footer dark mode ===== */
.footer {
  background: #0b0f14;
  color: #e5e7eb;
  border-top: 1px solid #1f2937;
}

.footer .brand,
.footer .footer-links h4,
.footer .footer-links a,
.footer .copy {
  color: #e5e7eb;
}

.footer .footer-links a:hover {
  color: #fff;
}

/* Hide carousel arrows specifically inside the About section */
#about .c-arrow {
  display: none !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img.logo {
  height: 36px; /* adjust as needed */
  width: auto;
}
