/* ==========================================================================
   Sujuma Engineering Limited — stylesheet
   Layout structure inspired by the Photon site (video/carousel hero,
   split about section, dark portfolio band, footer with logo + socials)
   rebuilt in Sujuma's own brand system — the blue / red / green from the
   Sujuma ring logo, on a navy base.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root{
  /* primary accent = logo blue; --copper name kept so existing rules below
     (buttons, links, hero accents) stay wired up */
  --copper: #1E33C7;
  --copper-light: #4C6BFF;
  --copper-dark: #142497;

  /* secondary logo accents */
  --brand-red: #E31E1E;
  --brand-red-light: #FF5A5A;
  --brand-green: #12A64B;
  --brand-green-light: #35CE72;

  --navy-950: #0B1620;
  --navy-900: #10202D;
  --navy-800: #16303F;
  --ink: #1C2B36;
  --slate: #5B6B76;
  --paper: #FAF7F1;
  --paper-dim: #F1EAE0;
  --line: #E3DACB;
  --white: #FFFFFF;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}
p{ margin: 0 0 1em; color: var(--slate); line-height: 1.65; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad{ padding: 96px 0; }
.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  font-weight:600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight:600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-copper{ background: var(--copper); color: var(--white); }
.btn-copper:hover{ background: var(--copper-dark); }
.btn-outline{ border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover{ background: var(--ink); color: var(--white); }
.btn-outline-light{ border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.btn-outline-light:hover{ background: var(--white); color: var(--navy-950); border-color: var(--white); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px;
}
.logo{ display:flex; align-items:center; gap:12px; }
.logo img{ height: 46px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-weight:600; font-size:14.5px; letter-spacing:.02em;
  color: var(--ink); position:relative; padding: 6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: var(--copper); transform: scaleX(0); transform-origin:left;
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform: scaleX(1); }
.nav-links a[aria-current="page"]{ color: var(--copper-dark); }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none; width:38px; height:32px; border:none; background:none; cursor:pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; position:absolute; left:6px; right:6px; height:2px; background: var(--ink);
}
.nav-toggle::before{ top:8px; } .nav-toggle span{ top:15px; } .nav-toggle::after{ top:22px; }

/* ==========================================================================
   Hero — dark banner with rotating slide copy, replaces the video hero
   ========================================================================== */
.hero{
  position: relative;
  overflow:hidden;
  background: var(--navy-950);
  color: var(--white);
}

/* photographic background layer — one image per slide, cross-faded */
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg-img{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  animation: zoom-pan 25s ease-in-out infinite;
}
.hero-bg-img.is-active{ opacity:1; }
.hero-bg-img-1{ animation-delay: 0s; }
.hero-bg-img-2{ animation-delay: -6.25s; }
.hero-bg-img-3{ animation-delay: -12.5s; }
.hero-bg-img-4{ animation-delay: -18.75s; }

@keyframes zoom-pan {
  0% { background-size: 120%; background-position: center; }
  50% { background-size: 110%; background-position: center; }
  100% { background-size: 120%; background-position: center; }
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(160deg, rgba(11,22,32,.60), rgba(16,32,45,.55) 55%, rgba(22,48,63,.50)),
    radial-gradient(1100px 620px at 84% -10%, rgba(30,51,199,.25), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(18,166,75,.12), transparent 55%);
}
.hero-grid-lines{
  position:absolute; inset:0; opacity:.06; pointer-events:none; z-index:1;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-slider{
  position: relative; z-index: 2;
  min-height: 560px;
  display:flex; align-items:center;
}
.hero-slide{
  display:none;
  animation: heroFade .6s ease;
}
.hero-slide.is-active{ display:block; }
@keyframes heroFade{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none; } }

.hero-slide-inner{
  max-width: 680px;
  padding: 90px 0 76px;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color: var(--copper-light); margin-bottom: 18px;
}
.hero-eyebrow::before{ content:""; width:26px; height:2px; background: var(--copper-light); display:inline-block; }
.hero-slide h1{
  font-size: clamp(38px, 5.4vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-slide h1 .accent{ color: var(--copper-light); }

/* per-slide accent — cycles the logo's blue / green / red */
.hero-slide--green .hero-eyebrow,
.hero-slide--green h1 .accent{ color: var(--brand-green-light); }
.hero-slide--green .hero-eyebrow::before{ background: var(--brand-green-light); }

.hero-slide--red .hero-eyebrow,
.hero-slide--red h1 .accent{ color: var(--brand-red-light); }
.hero-slide--red .hero-eyebrow::before{ background: var(--brand-red-light); }
.hero-slide p{
  color: rgba(255,255,255,.72);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-dots{
  position:absolute; left:24px; right:24px; bottom:28px;
  display:flex; align-items:center; gap:10px;
}
.hero-dots .container-dots{ display:flex; gap:10px; margin:0 auto; }
.hero-dot{
  width: 34px; height:3px; border:none; background: rgba(255,255,255,.28);
  cursor:pointer; border-radius: 2px; padding:0; transition: background .2s ease;
}
.hero-dot.is-active{ background: var(--copper-light); }

.hero-specs{
  position: relative; z-index: 2;
  display:flex; gap:0; margin: 0; padding:0;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(11,22,32,.55);
  backdrop-filter: blur(2px);
}
.hero-specs .container{
  display:flex; flex-wrap:wrap; gap: 0;
}
.hero-spec{
  flex:1 1 200px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.hero-spec:last-child{ border-right:none; }
.hero-spec dt{
  font-family: var(--font-display);
  font-size: 30px; color: var(--copper-light); margin:0;
}
.hero-spec dd{ margin:4px 0 0; color: rgba(255,255,255,.62); font-size: 13.5px; }

/* ==========================================================================
   Intro / about split
   ========================================================================== */
.intro{ padding: 100px 0 40px; }
.intro-grid{
  display:grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items:center;
}
.intro-media{
  position: relative;
  background: var(--paper-dim);
  border-radius: 8px;
  padding: 44px;
  display:flex; align-items:center; justify-content:center;
}
.intro-media::before{
  content:"";
  position:absolute; inset:0; border-radius:8px; padding:1.5px;
  background: conic-gradient(var(--copper), var(--brand-red), var(--brand-green), var(--copper));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55;
}
.intro-media img{ max-width: 260px; }
.intro h2{ font-size: clamp(26px, 3vw, 34px); color: var(--ink); max-width: 20ch; }
.intro-body p{ font-size: 15.5px; }

.value-row{
  display:flex; gap:28px; margin-top: 28px; flex-wrap:wrap;
}
.value-item{ flex:1 1 160px; }
.value-item h4{ font-size:15px; color: var(--copper-dark); margin-bottom:4px; font-family: var(--font-body); font-weight:700; }
.value-item p{ font-size: 13.5px; margin:0; }

/* ==========================================================================
   Services — dark portfolio band with cards (replaces Photon's carousel)
   ========================================================================== */
.services-dark{
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  position: relative;
}
.services-head{
  text-align:center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.services-head .eyebrow{ color: var(--copper-light); }
.services-head h2{
  font-size: clamp(28px, 3.6vw, 40px);
  background: linear-gradient(90deg, var(--copper-light), var(--copper));
  -webkit-background-clip: text; background-clip:text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.services-head h2::after{
  content:""; display:block; width:70px; height:3px; background: var(--copper);
  margin: 18px auto 0;
}
.services-head p{ color: rgba(255,255,255,.6); }

.service-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 30px 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover{
  transform: translateY(-5px);
  border-color: rgba(30,51,199,.5);
  background: rgba(255,255,255,.055);
}
.service-icon{
  width: 52px; height:52px; border-radius:9px;
  background: rgba(76,107,255,.14);
  border: 1px solid rgba(76,107,255,.35);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.service-icon svg{ width:26px; height:26px; stroke: var(--copper-light); }

/* cycle the three logo accent colors across the service cards, echoing
   the blue / red / green rings in the mark */
.service-card:nth-child(3n+2) .service-icon{
  background: rgba(227,30,30,.14);
  border-color: rgba(227,30,30,.35);
}
.service-card:nth-child(3n+2) .service-icon svg{ stroke: var(--brand-red-light); }
.service-card:nth-child(3n+2) .service-link{ color: var(--brand-red-light); }

.service-card:nth-child(3n+3) .service-icon{
  background: rgba(18,166,75,.14);
  border-color: rgba(18,166,75,.35);
}
.service-card:nth-child(3n+3) .service-icon svg{ stroke: var(--brand-green-light); }
.service-card:nth-child(3n+3) .service-link{ color: var(--brand-green-light); }
.service-card h3{
  font-family: var(--font-body); font-weight:700; font-size: 17px;
  color: var(--white); margin-bottom: 10px;
}
.service-card p{ font-size: 13.8px; color: rgba(255,255,255,.58); margin-bottom: 18px; }
.service-link{
  font-size: 13px; font-weight:600; color: var(--copper-light);
  display:inline-flex; align-items:center; gap:6px;
}
.service-link svg{ width:14px; height:14px; transition: transform .2s ease; }
.service-card:hover .service-link svg{ transform: translateX(3px); }

/* ==========================================================================
   Interior page hero (About / Services / Contact) — compact dark banner
   ========================================================================== */
.page-hero{
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero.page-hero--photo{
  background: var(--navy-950) url('../images/workers.png') center/cover no-repeat;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(160deg, rgba(11,22,32,.98), rgba(16,32,45,.94) 55%, rgba(22,48,63,.9)),
    radial-gradient(900px 480px at 88% -20%, rgba(30,51,199,.4), transparent 60%),
    radial-gradient(700px 420px at -10% 120%, rgba(18,166,75,.18), transparent 55%);
}
.page-hero.page-hero--photo::before{
  background:
    linear-gradient(160deg, rgba(11,22,32,.93), rgba(16,32,45,.84) 55%, rgba(22,48,63,.8)),
    radial-gradient(900px 480px at 88% -20%, rgba(30,51,199,.3), transparent 60%),
    radial-gradient(700px 420px at -10% 120%, rgba(18,166,75,.12), transparent 55%);
}
.page-hero .container{ position:relative; z-index:1; }
.breadcrumb{
  font-size: 13px; font-weight:600; color: rgba(255,255,255,.5);
  margin-bottom: 22px; letter-spacing:.02em;
}
.breadcrumb a{ color: rgba(255,255,255,.75); }
.breadcrumb a:hover{ color: var(--copper-light); }
.page-hero h1{
  font-size: clamp(30px, 4.2vw, 46px);
  max-width: 18ch;
  margin-bottom: 16px;
}
.page-hero p{ color: rgba(255,255,255,.68); font-size: 16px; max-width: 62ch; }

/* ==========================================================================
   Split content block (About page — text + scope list)
   ========================================================================== */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items:start;
}
.scope-list{ display:flex; flex-direction:column; gap:14px; }
.scope-list li{
  display:flex; align-items:center; gap:14px;
  padding: 16px 18px;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight:600; font-size: 14.5px; color: var(--ink);
}
.scope-list li svg{
  flex: none;
  width:30px; height:30px; padding:6px; border-radius:50%;
  background: rgba(30,51,199,.12); color: var(--copper);
}
/* cycle the three brand colors down the scope list, echoing the rings */
.scope-list li:nth-child(3n+2) svg{ background: rgba(227,30,30,.12); color: var(--brand-red); }
.scope-list li:nth-child(3n+3) svg{ background: rgba(18,166,75,.12); color: var(--brand-green); }

/* ==========================================================================
   Values grid (About page)
   ========================================================================== */
.values-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.value-card{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 3px solid var(--copper);
}
.value-card:nth-child(4n+2){ border-top-color: var(--brand-red); }
.value-card:nth-child(4n+3){ border-top-color: var(--brand-green); }
.value-card:nth-child(4n+4){ border-top-color: var(--copper-light); }
.value-card h3{
  font-family: var(--font-body); font-weight:700; font-size: 16.5px;
  color: var(--white); margin-bottom: 10px;
}
.value-card p{ font-size: 13.8px; color: rgba(255,255,255,.6); margin:0; }

/* ==========================================================================
   Services page — alternating photo / detail-card rows
   ========================================================================== */
.service-row-section{ padding: 0; }
.service-row-section:nth-child(odd){ background: var(--paper); }
.service-row-section:nth-child(even){ background: var(--paper-dim); }

.service-row{
  display:flex;
  align-items:center;
  gap: 56px;
  padding: 72px 0;
}
.service-row:nth-child(even){ flex-direction: row-reverse; }

.service-row-media{
  flex: 1 1 48%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11,22,32,.16);
}
.service-row-media img{
  width: 100%; height: 360px; object-fit: cover; display:block;
  transition: transform .5s ease;
}
.service-row-media:hover img{ transform: scale(1.05); }

.service-row-details{
  flex: 1 1 52%;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px;
  box-shadow: 0 10px 28px rgba(11,22,32,.08);
}
.service-icon-lg{
  width: 56px; height:56px; border-radius:12px;
  background: rgba(30,51,199,.12);
  border: 1px solid rgba(30,51,199,.3);
  color: var(--copper);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.service-icon-lg svg{ width:28px; height:28px; }
.service-row-details h2{
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.service-row-details > p{ font-size: 15px; max-width: 52ch; }

.service-tags-list{
  list-style:none; margin: 22px 0 0; padding:0;
  display:flex; flex-direction:column; gap: 10px;
}
.service-tags-list li{
  font-size: 14px; font-weight:600; color: var(--ink);
  padding: 12px 16px;
  background: var(--paper-dim);
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  transition: all .25s ease;
}
.service-row-section:nth-child(even) .service-tags-list li{ background: var(--paper); }
.service-tags-list li:hover{
  background: var(--copper); color: var(--white);
  transform: translateX(4px);
  cursor: default;
}

/* cycle the three brand colors row by row, same rhythm as the homepage cards */
.service-row-section:nth-child(3n+2) .service-icon-lg{
  background: rgba(227,30,30,.12); border-color: rgba(227,30,30,.3); color: var(--brand-red);
}
.service-row-section:nth-child(3n+2) .service-tags-list li{ border-left-color: var(--brand-red); }
.service-row-section:nth-child(3n+2) .service-tags-list li:hover{ background: var(--brand-red); }

.service-row-section:nth-child(3n+3) .service-icon-lg{
  background: rgba(18,166,75,.12); border-color: rgba(18,166,75,.3); color: var(--brand-green);
}
.service-row-section:nth-child(3n+3) .service-tags-list li{ border-left-color: var(--brand-green); }
.service-row-section:nth-child(3n+3) .service-tags-list li:hover{ background: var(--brand-green); }

/* ==========================================================================
   Process
   ========================================================================== */
.process-head{ max-width: 620px; margin-bottom: 52px; }
.process-head h2{ font-size: clamp(26px,3vw,34px); }
.process-steps{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 28px;
}
.process-step{
  border-top: 3px solid var(--copper);
  padding-top: 18px;
}
.step-num{
  display:block; font-family: var(--font-display); font-size: 34px;
  color: var(--line); margin-bottom: 6px;
}
.process-step h3{ font-size: 18px; margin-bottom: 8px; }
.process-step p{ font-size: 13.8px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
  padding: 54px 0; flex-wrap:wrap;
}
.cta-inner h2{ font-size: clamp(22px,2.6vw,30px); margin:0; max-width: 30ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--navy-950);
  color: rgba(255,255,255,.68);
  padding-top: 72px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo img{ height:44px; }
.footer-brand p{ color: rgba(255,255,255,.5); font-size: 13.8px; margin-top: 16px; max-width: 30ch; }
.footer-social{ display:flex; gap:12px; margin-top: 20px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease; color: rgba(255,255,255,.7);
}
.footer-social a:hover{ background: var(--copper); border-color: var(--copper); color: var(--white); }
.footer-social svg{ width:16px; height:16px; }

.footer-col h4{
  font-family: var(--font-body); font-size: 13px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--white); font-weight:700; margin-bottom: 18px;
}
.footer-col ul li{ margin-bottom: 11px; }
.footer-col ul li a{ font-size: 14px; color: rgba(255,255,255,.62); transition: color .2s ease; }
.footer-col ul li a:hover{ color: var(--copper-light); }

.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding: 22px 0; font-size: 12.8px; color: rgba(255,255,255,.4);
  flex-wrap:wrap; gap: 8px;
}

/* ==========================================================================
   Contact page — info list, map, quote form
   ========================================================================== */
.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items:start;
}
.contact-info-list{
  display:flex; flex-direction:column;
  margin: 26px 0 30px;
}
.contact-info-list li{
  display:flex; justify-content:space-between; align-items:baseline;
  gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-list li:first-child{ padding-top:0; }
.ci-label{
  margin:0; font-size: 13px; font-weight:600; letter-spacing:.03em;
  text-transform: uppercase; color: var(--slate);
}
.ci-value{
  margin:0; font-family: var(--font-display); font-weight:700;
  font-size: 1.05rem; color: var(--navy-950); text-align:right;
}
.ci-value a:hover{ color: var(--copper); }
.map-box{
  display:block;
  border-radius: 14px; overflow:hidden;
  border: 1px solid var(--line); background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.map-box:hover{
  border-color: var(--copper);
  box-shadow: 0 8px 24px rgba(30,51,199,.10);
}
.map-box-visual{
  position:relative; height: 140px; overflow:hidden;
}
.map-box-visual svg:first-child{ width:100%; height:100%; display:block; }
.map-pin{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-100%);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.25));
}
.map-box-caption{ padding: 18px 20px; }
.map-box-caption h4{
  margin:0 0 6px; font-family:var(--font-display); font-size:1.05rem;
  color: var(--navy-950);
}
.map-box-caption p{ margin:0 0 10px; font-size: 14px; }
.map-box-link{
  display:inline-block; color: var(--copper); font-weight:600; font-size: 13.5px;
}
.map-box:hover .map-box-link{ text-decoration: underline; }

.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field{ margin-bottom: 18px; }
.field label{
  display:block; margin-bottom:7px; font-size:13px; font-weight:600;
  letter-spacing:.02em; color: var(--navy-950);
}
.field input, .field select, .field textarea{
  width:100%; padding: 12px 14px; font-family: var(--font-body);
  font-size: 15px; color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: 8px; outline:none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--copper);
}
.field textarea{ resize: vertical; }
.form-note{ font-size: 12.5px; margin: 12px 0 0; }

.form-confirmation{
  display:flex; gap:14px; align-items:flex-start;
  margin-top: 20px; padding: 18px 20px;
  background: #EFFBF3; border: 1px solid #BFE9CC; border-radius: 10px;
  animation: fc-in .25s ease;
}
.form-confirmation[hidden]{ display:none; }
.form-confirmation .fc-icon{ flex:none; margin-top:1px; }
.form-confirmation .fc-title{
  margin:0 0 4px; font-family: var(--font-display); font-weight:700;
  font-size: 1.02rem; color: var(--navy-950);
}
.form-confirmation .fc-body{ margin:0; font-size: 13.8px; }
.form-confirmation .fc-body a{ color: var(--copper); font-weight:600; }
@keyframes fc-in{
  from{ opacity:0; transform: translateY(-6px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ==========================================================================
   Our work — photo slideshow (About page)
   ========================================================================== */
.work-slider{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-dim);
  border: 1px solid var(--line);
}
.work-slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity .6s ease;
}
.work-slide.is-active{ opacity:1; visibility:visible; }
.work-slide img{ width:100%; height:100%; object-fit:contain; display:block; background: var(--paper-dim); }

.work-slider-arrow{
  position:absolute; top:50%; transform: translateY(-50%);
  width:42px; height:42px; border-radius:50%; border:none;
  display:flex; align-items:center; justify-content:center;
  background: rgba(11,22,32,.55); color: var(--white); cursor:pointer;
  z-index:2; transition: background .15s ease;
}
.work-slider-arrow:hover{ background: rgba(11,22,32,.8); }
.work-slider-arrow svg{ width:20px; height:20px; }
.work-slider-prev{ left:16px; }
.work-slider-next{ right:16px; }

.work-slider-dots{
  position:absolute; left:0; right:0; bottom:16px;
  display:flex; align-items:center; justify-content:center; gap:9px;
  z-index:2;
}
.work-slider-dots .work-dot{
  width: 8px; height:8px; border-radius:50%; border:none; padding:0;
  background: rgba(255,255,255,.5); cursor:pointer; transition: background .2s ease, transform .2s ease;
}
.work-slider-dots .work-dot.is-active{ background: var(--white); transform: scale(1.15); }

@media (max-width: 760px){
  .work-slider{ aspect-ratio: 4 / 3; }
  .work-slider-arrow{ width:36px; height:36px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .intro-grid{ grid-template-columns: 1fr; }
  .intro-media{ order:-1; }
  .split{ grid-template-columns: 1fr; }
  .service-row, .service-row:nth-child(even){ flex-direction: column; }
  .service-row-media img{ height: 260px; }
  .process-steps{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 760px){
  .field-row{ grid-template-columns: 1fr; gap:0; }
  .nav-links{
    position:absolute; top:84px; left:0; right:0;
    background: var(--paper); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:flex-start; gap:0;
    max-height:0; overflow:hidden; transition: max-height .25s ease;
  }
  .nav-links.is-open{ max-height: 320px; }
  .nav-links a{ width:100%; padding: 14px 24px; }
  .nav-links a::after{ display:none; }
  .nav-toggle{ display:block; }
  .nav-cta .btn-outline{ display:none; }
  .hero-slide-inner{ padding: 60px 0 64px; }
  .hero-specs .container{ flex-direction:column; }
  .hero-spec{ border-right:none; border-bottom: 1px solid rgba(255,255,255,.14); }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .process-steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .section-pad{ padding: 64px 0; }
  .service-row{ padding: 48px 0; gap: 28px; }
  .service-row-details{ padding: 26px; }
}