/* ==========================================================================
   Prime Tune — tokens
   ========================================================================== */
:root{
  --ink:        #151B24;   /* deep navy, from signage background */
  --ink-2:      #1E2733;   /* slightly lighter navy for cards on dark */
  --orange:     #D9622E;   /* signage stripe */
  --orange-dim: #B8511F;
  --paper:      #F6F5F2;   /* warm off-white */
  --concrete:   #EAE7E1;   /* alternating section bg */
  --graphite:   #22252A;   /* body text on light */
  --steel:      #6E737B;   /* muted text */
  --line:       #DAD6CE;   /* hairline on light */
  --line-dark:  rgba(255,255,255,.14);

  --font-head: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--graphite);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; line-height:1.08; }
p{ margin:0; }
ul{ list-style:none; margin:0; padding:0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:3px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:0.95rem;
  border:1.5px solid transparent;
  transition:background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--orange); color:#fff; }
.btn-primary:hover{ background:var(--orange-dim); }
.btn-ghost{ background:transparent; border-color:rgba(255,255,255,.55); color:#fff; }
.btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn-ghost-light{ background:transparent; border-color:rgba(255,255,255,.35); color:#fff; }
.btn-ghost-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn-sm{ padding:10px 20px; font-size:.88rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:transparent;
  transition:background-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled{
  background:var(--ink);
  box-shadow:0 2px 24px rgba(0,0,0,.25);
}
.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:16px var(--pad);
  display:flex;
  align-items:center;
  gap:32px;
}
.logo{ display:flex; flex-direction:column; gap:2px; margin-right:auto; }
.logo-name{
  font-family:var(--font-head);
  font-weight:900;
  font-size:1.28rem;
  letter-spacing:0.01em;
  color:#fff;
}
.logo-sub{
  font-size:.72rem;
  color:var(--orange);
  font-weight:600;
  letter-spacing:.03em;
}
.logo-sub .dot{ color:rgba(255,255,255,.5); }

.main-nav{ display:flex; gap:28px; }
.main-nav a{
  color:rgba(255,255,255,.82);
  font-size:.92rem;
  font-weight:500;
  padding:6px 0;
  border-bottom:1.5px solid transparent;
  transition:color .18s ease, border-color .18s ease;
}
.main-nav a:hover{ color:#fff; border-color:var(--orange); }

.header-actions{ display:flex; align-items:center; gap:18px; }
.phone-link{
  color:#fff;
  font-weight:600;
  font-size:.92rem;
  display:none;
}
@media (min-width:1080px){ .phone-link{ display:inline; } }

.burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px; height:36px;
  background:none; border:none; cursor:pointer;
  padding:0;
}
.burger span{
  width:100%; height:2px; background:#fff; display:block;
  transition:transform .2s ease, opacity .2s ease;
}

@media (max-width:900px){
  .main-nav{
    position:fixed; inset:64px 0 0 0;
    background:var(--ink);
    flex-direction:column;
    padding:32px var(--pad);
    gap:4px;
    transform:translateX(100%);
    transition:transform .28s ease;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{ font-size:1.15rem; padding:14px 0; border-bottom:1px solid var(--line-dark); width:100%; }
  .header-actions .btn-sm{ display:none; }
  .burger{ display:flex; }
  .site-header{ background:var(--ink); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--ink);
}
.hero-media{ position:absolute; inset:0; }
.hero-img{
  width:100%; height:100%; object-fit:cover;
  animation:heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{
  from{ transform:scale(1.08); }
  to{ transform:scale(1); }
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(10,13,18,.92) 0%, rgba(10,13,18,.55) 42%, rgba(10,13,18,.25) 65%, rgba(10,13,18,.45) 100%);
}
.hero-content{
  position:relative;
  max-width:var(--max);
  width:100%;
  margin:0 auto;
  padding:0 var(--pad) 96px;
  color:#fff;
}
.hero-content h1{
  font-weight:900;
  font-size:clamp(2.3rem, 5.6vw, 4.1rem);
  letter-spacing:-0.01em;
  max-width:14ch;
}
.hero-sub{
  margin-top:22px;
  max-width:46ch;
  font-size:1.08rem;
  color:rgba(255,255,255,.86);
  line-height:1.6;
}
.hero-actions{
  margin-top:36px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.hero-scroll-cue{
  position:absolute; left:var(--pad); bottom:28px;
  width:1px; height:44px;
  background:linear-gradient(180deg, rgba(255,255,255,.7), transparent);
}
@media (max-width:600px){ .hero-scroll-cue{ display:none; } }

/* Mobile: the photo becomes a fixed-height band at the top, and the
   headline sits in its own panel below on solid ink — not overlaid on
   the image at all. So the signage in the shot (now fully visible again,
   logo included) can never collide with the text, regardless of how
   many lines the sub-text or buttons wrap to. */
@media (max-width:700px){
  .hero{
    min-height:0;
    display:block;
    background:var(--ink);
  }
  .hero-media{
    position:relative;
    inset:auto;
    height:42vh;
    min-height:230px;
    max-height:380px;
  }
  .hero-img{ animation:none; }
  .hero-scrim{
    /* just a soft fade into the panel below, not a legibility scrim —
       the photo doesn't need to fight the text anymore */
    background:linear-gradient(180deg, rgba(10,13,18,0) 70%, var(--ink) 100%);
  }
  .hero-content{
    padding:28px var(--pad) 40px;
  }
  .hero-content h1{
    font-size:clamp(1.9rem, 8vw, 2.4rem);
  }
  .hero-sub{
    max-width:38ch;
  }
  .hero-actions{
    flex-wrap:nowrap;
    flex-direction:column;
    align-items:stretch;
  }
  .hero-actions .btn{ text-align:center; }
  .hero-scroll-cue{ display:none; }
}

/* ==========================================================================
   Section head (shared)
   ========================================================================== */
.section-head{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:44px;
}
.section-head h2{
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  font-weight:800;
}
.section-head p{
  max-width:38ch;
  color:var(--steel);
  font-size:1rem;
}
.section-head.light p{ color:rgba(255,255,255,.68); }
.section-head.light h2{ color:#fff; }

/* ==========================================================================
   Approach / philosophy
   ========================================================================== */
.approach{ background:var(--paper); padding:104px 0; }
.approach-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
}
.statement-text{
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(1.5rem, 3vw, 2.15rem);
  line-height:1.28;
  color:var(--ink);
}
.statement-note{
  margin-top:24px;
  color:var(--steel);
  font-size:1rem;
  max-width:44ch;
  line-height:1.65;
}
.approach-principles{ display:flex; flex-direction:column; gap:30px; }
.principle{ border-left:2px solid var(--orange); padding-left:22px; }
.principle h3{ font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.principle p{ color:var(--steel); font-size:.95rem; line-height:1.6; }

@media (max-width:860px){
  .approach-inner{ grid-template-columns:1fr; gap:44px; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services{ background:var(--concrete); padding:104px 0; }
.services-grid{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:2px;
  background:var(--line);
  border:1px solid var(--line);
}
.service-feature{
  background:var(--ink);
  position:relative;
  min-height:420px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.service-feature img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.service-feature:hover img{ transform:scale(1.04); }
.service-feature::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(10,13,18,.88), rgba(10,13,18,.15) 55%);
}
.service-feature-text{
  position:relative; z-index:1;
  padding:34px;
  color:#fff;
}
.service-feature-text h3{ font-size:1.3rem; font-weight:800; margin-bottom:10px; }
.service-feature-text p{ color:rgba(255,255,255,.82); font-size:.95rem; max-width:38ch; line-height:1.55; }

.service-list{ background:var(--paper); display:flex; flex-direction:column; }
.service-list li{
  padding:26px 30px;
  border-bottom:1px solid var(--line);
  display:flex; flex-direction:column; gap:6px;
}
.service-list li:last-child{ border-bottom:none; }
.service-list li span{ font-weight:700; font-size:1.02rem; }
.service-list li small{ color:var(--steel); font-size:.87rem; font-weight:400; }

@media (max-width:860px){
  .services-grid{ grid-template-columns:1fr; }
  .service-feature{ min-height:320px; }
}

/* ==========================================================================
   Shop / equipment
   ========================================================================== */
.shop{ background:var(--paper); }
.shop-media img{ width:100%; height:clamp(320px,50vw,560px); object-fit:cover; }
.shop-facts{
  max-width:var(--max);
  margin:0 auto;
  padding:56px var(--pad) 104px;
}
.shop-lead{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1.2rem, 2.2vw, 1.55rem);
  color:var(--ink);
  max-width:56ch;
  margin-bottom:44px;
}
.facts-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}
.fact{ border-top:2px solid var(--orange); padding-top:18px; }
.fact p{ color:var(--steel); font-size:.95rem; line-height:1.6; }
@media (max-width:800px){ .facts-row{ grid-template-columns:1fr; gap:28px; } }

/* ==========================================================================
   Visit / process
   ========================================================================== */
.visit{ background:var(--ink); padding:104px 0; }
.visit-strip{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}
.visit-step img{
  width:100%; height:230px; object-fit:cover;
  margin-bottom:22px;
}
.visit-step h4{ color:#fff; font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.visit-step p{ color:rgba(255,255,255,.65); font-size:.92rem; line-height:1.6; }
@media (max-width:860px){
  .visit-strip{ grid-template-columns:1fr; gap:40px; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery{ background:var(--paper); padding:104px 0; }
.gallery-grid{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-auto-rows:240px;
  gap:16px;
}
.gallery-grid img{ width:100%; height:100%; object-fit:cover; }
.gallery-grid .g-tall{ grid-row:span 2; }
.gallery-grid .g-wide{ grid-column:span 2; }
@media (max-width:700px){
  .gallery-grid{ grid-template-columns:1fr; grid-auto-rows:220px; }
  .gallery-grid .g-tall,
  .gallery-grid .g-wide{ grid-row:auto; grid-column:auto; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{ background:var(--ink); padding:104px 0 0; }
.contact-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:stretch;
}
.contact-info h2{ color:#fff; font-size:clamp(1.7rem,3vw,2.3rem); font-weight:800; margin-bottom:18px; }
.contact-lead{ color:rgba(255,255,255,.7); max-width:42ch; line-height:1.6; margin-bottom:40px; }
.contact-details{ display:grid; gap:22px; margin:0 0 40px; }
.contact-details dt{ color:var(--orange); font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; margin-bottom:4px; }
.contact-details dd{ margin:0; color:#fff; font-size:1.05rem; font-weight:500; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:14px; }

.contact-map{ min-height:320px; }
.map-placeholder{
  height:100%; min-height:320px;
  border:1px dashed rgba(255,255,255,.28);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px;
  color:rgba(255,255,255,.5);
}
.map-placeholder span{ font-family:var(--font-head); font-weight:800; color:rgba(255,255,255,.7); letter-spacing:.02em; }
.map-placeholder small{ font-size:.82rem; }

@media (max-width:860px){
  .contact-inner{ grid-template-columns:1fr; gap:40px; }
}

/* ==========================================================================
   Reveal / pitch
   ========================================================================== */
.reveal{
  background:var(--ink);
  padding:120px 0;
  border-top:1px solid var(--line-dark);
  position:relative;
}
.reveal::before{
  content:"";
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:64px; height:3px; background:var(--orange);
}
.reveal-inner{ max-width:840px; margin:0 auto; padding:0 var(--pad); }
.reveal-eyebrow{
  color:var(--orange);
  font-weight:600;
  font-size:.92rem;
  margin-bottom:14px;
}
.reveal-title{
  color:#fff;
  font-weight:900;
  font-size:clamp(1.9rem, 4vw, 2.7rem);
  max-width:18ch;
  margin-bottom:22px;
}
.reveal-lead{
  color:rgba(255,255,255,.75);
  font-size:1.08rem;
  line-height:1.65;
  max-width:56ch;
  margin-bottom:64px;
}

.reveal-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:2px;
  background:var(--line-dark);
  border:1px solid var(--line-dark);
  margin-bottom:72px;
}
.reveal-item{
  background:var(--ink);
  padding:30px 28px;
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.reveal-item .icon-plate{
  width:52px; height:52px; flex-shrink:0;
  background:var(--paper);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
}
.reveal-item .icon-plate img{ width:30px; height:30px; }
.reveal-item p{ color:rgba(255,255,255,.82); font-size:.95rem; line-height:1.55; }
@media (max-width:700px){ .reveal-grid{ grid-template-columns:1fr; } }

.reveal-steps{ margin-bottom:72px; }
.reveal-steps h3{
  color:#fff;
  font-weight:800;
  font-size:1.4rem;
  margin-bottom:32px;
}
.reveal-steps ol{ display:flex; flex-direction:column; gap:0; margin:0; padding:0; }
.reveal-steps li{
  display:flex;
  gap:24px;
  align-items:flex-start;
  padding:24px 0;
  border-bottom:1px solid var(--line-dark);
}
.reveal-steps li:last-child{ border-bottom:none; }
.step-num{
  font-family:var(--font-head);
  font-weight:900;
  font-size:1.6rem;
  color:var(--orange);
  min-width:36px;
}
.reveal-steps h4{ color:#fff; font-size:1.05rem; font-weight:700; margin-bottom:6px; }
.reveal-steps li p{ color:rgba(255,255,255,.68); font-size:.92rem; line-height:1.55; }
.reveal-note{
  margin-top:28px;
  color:rgba(255,255,255,.55);
  font-size:.88rem;
  border-left:2px solid var(--orange);
  padding-left:16px;
}

.reveal-cta{
  padding-top:40px;
  border-top:1px solid var(--line-dark);
}
.reveal-cta-lead{ color:#fff; font-weight:700; font-size:1.15rem; margin-bottom:14px; }
.reveal-cta-note{ color:rgba(255,255,255,.62); font-size:.92rem; line-height:1.6; max-width:52ch; margin-bottom:28px; }
.reveal-cta-note strong{ color:#fff; font-weight:700; }
.reveal-cta-actions{ display:flex; flex-wrap:wrap; gap:16px; }

@media (max-width:600px){
  .reveal{ padding:88px 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--ink); padding:48px var(--pad) 32px; margin-top:80px; border-top:1px solid var(--line-dark); }
.footer-inner{
  max-width:var(--max); margin:0 auto;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
}
.footer-brand{ display:flex; flex-direction:column; gap:2px; }
.footer-note{ color:rgba(255,255,255,.55); font-size:.9rem; }
.footer-copy{ color:rgba(255,255,255,.4); font-size:.85rem; }
