/* Graphic Project 808 — one-page site
   Warm, local Kalihi print shop feel. Not a template look. */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Pacifico&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --cream: #FDF8EE;
  --cream-deep: #F8EEDD;
  --paper: #FFFCF6;
  --ink: #2B241D;
  --ink-soft: #5A4F42;
  --sunset: #DE7038;
  --sunset-dark: #B94F1F;
  --ocean: #1E6B68;
  --ocean-dark: #16504E;
  --gold: #E4A93B;
  --line: #E7D8BF;
  --shadow: 0 10px 30px rgba(43,36,29,0.08);
  --radius: 18px;
  --max: 1440px;

  /* New brand palette (blue/yellow, from the logo) — rolling out section by section */
  --navy: #1B2A57;
  --navy-deep: #101a3a;
  --navy-soft: #57628a;
  --yellow: #F5DE1B;
  --yellow-dark: #d9c300;
  --offwhite: #FBF3E6;
  --navy-line: #E7D8BF;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  overflow-x: hidden;
  background: var(--offwhite);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3{
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
}
p{ margin: 0 0 1em; color: var(--navy-soft); }
a{ color: var(--navy); }
img{ max-width:100%; display:block; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 64px; }

@media (max-width: 900px){ .wrap{ padding: 0 32px; } }
@media (max-width: 640px){ .wrap{ padding: 0 24px; } }
.visually-hidden{ position:absolute; width:1px;height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:.5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration:none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--yellow); color: var(--navy-deep); box-shadow: 0 8px 20px rgba(27,42,87,.18); }
.btn-primary:hover{ background: var(--yellow-dark); }
.btn-secondary{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-secondary:hover{ background: var(--navy); color: #fff; }
.btn-light{ background: var(--paper); color: var(--ocean-dark); }

/* Header */
.site-header{
  position: sticky; top:0; z-index: 50;
}
.header-top{
  background: var(--paper);
  border-bottom: 1px solid var(--navy-line);
}
.header-top .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.header-sub{ background: var(--navy); }
.header-sub-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 9px; padding-bottom: 9px;
}
.header-sub a{
  display:flex; align-items:center; gap:8px;
  color:#fff; text-decoration:none; font-weight:600; font-size:.85rem;
}
.header-sub a:hover{ color: var(--yellow); }
.header-sub span{ color: rgba(255,255,255,.7); font-size:.85rem; font-weight:600; }

.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Archivo Black', sans-serif; font-weight:400; font-size:1.1rem;
  color: var(--navy); text-decoration:none;
}
.brand .mark{
  width:38px; height:38px; border-radius:50%;
  object-fit: cover; flex: none;
}

.nav-links{
  display:flex; align-items:center; gap: 28px; list-style:none; margin:0; padding:0;
}
.nav-links a{
  color: var(--navy); text-decoration:none; font-weight:600; font-size:.95rem;
}
.nav-links a:hover{ color: var(--yellow-dark); }
.header-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; border-radius:2px; }

@media (max-width: 860px){
  .nav-links{
    position:fixed; inset: var(--header-h, 66px) 0 0 0; background: #fff;
    flex-direction:column; align-items:flex-start; gap:0;
    padding: 10px 24px 24px; border-top:1px solid var(--navy-line);
    transform: translateY(-8px); opacity:0; pointer-events:none;
    transition: all .2s ease;
    z-index: 60; box-shadow: var(--shadow);
  }
  .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-links li{ width:100%; border-bottom:1px solid var(--navy-line); }
  .nav-links a{ display:block; padding: 14px 0; }
  .nav-toggle{ display:block; }
}

@media (max-width: 640px){
  .header-top .wrap{ padding-top: 12px; padding-bottom: 12px; }
  .header-sub-inner{ padding-top:7px; padding-bottom:7px; }
  .header-sub a, .header-sub span{ font-size:.72rem; }
  .brand{ font-size: 1rem; gap:8px; }
  .brand .mark{ width:32px; height:32px; }
  .header-cta{ gap:10px; }
  .header-cta .btn-primary{ display:none; }
}

/* Hero */
/* Grain / paper texture overlay */
.grain{ position:relative; }
.grain::before{
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero{
  position:relative;
  padding: 72px 0;
  overflow:hidden;
  background: var(--offwhite);
}
.hero .wrap{ position:relative; z-index:1; display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:center; }
.hero-copy{ max-width: 640px; }
.eyebrow{
  display:inline-block; font-weight:700; text-transform:uppercase;
  font-size:.78rem; letter-spacing:.12em; color: var(--sunset);
  margin-bottom:16px;
}
.hero h1{ font-size: clamp(1.8rem, 3.4vw, 2.7rem); max-width: 15ch; margin-top:0; color: var(--navy); }
.hero h1 .accent{
  font-family: 'Pacifico', cursive; font-size: 1.2em; font-weight:400;
  position:relative; display:inline-block; line-height:1; padding:0 4px;
}
.hero h1 .accent::after{
  content:''; position:absolute; left:-4%; right:-4%; bottom:-.12em; height:.3em;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 24' preserveAspectRatio='none'%3E%3Cpath d='M3 14 C 40 4, 80 20, 120 10 S 200 4, 240 14 S 280 20, 297 10' fill='none' stroke='%23D8622C' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-size:100% 100%;
}
.hero .lede{ font-size:1.1rem; max-width: 46ch; color: var(--navy-soft); }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:26px; }
.reviews-banner{
  display:inline-flex; align-items:center; gap:10px; margin-top:20px;
  background: var(--navy); color:#fff; padding:10px 18px; border-radius:999px;
  font-size:.9rem; font-weight:600; text-decoration:none;
}
.reviews-banner:hover{ background: var(--navy-deep); }
.reviews-banner-logo{ width:18px; height:18px; flex:none; }
.reviews-banner-stars{ color: var(--gold); letter-spacing:2px; font-size:1rem; }

/* Hero photo card (original layout, restored) */
.hero-art{ position:relative; }
.hero-card{
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; border:1px solid var(--navy-line);
  transform: rotate(2deg);
}
.hero-card .swatch-row{ display:flex; gap:8px; margin-bottom:14px; }
.hero-card .swatch{ width:26px; height:26px; border-radius:8px; }
.hero-photo{
  aspect-ratio: 4/3; border-radius: 12px;
  overflow: hidden;
}
.hero-photo img{ width:100%; height:100%; object-fit: cover; display:block; }
.hero-sticker{
  position:absolute; bottom:-18px; left:-18px;
  background: var(--navy); color: var(--yellow); border-radius:999px;
  width:104px; height:104px; display:flex; align-items:center; justify-content:center;
  text-align:center; font-family:'Pacifico', cursive; font-size:.95rem; line-height:1.3;
  transform: rotate(-8deg); box-shadow: var(--shadow);
  padding: 6px;
}

@media (max-width: 900px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ max-width: 420px; margin:0 auto; }
}

/* Standalone photo section, right after the hero */
/* Section shell */
section{ padding: 84px 0; }
.section-head{ max-width: 640px; margin: 0 auto 44px; text-align:center; }
.section-head .kicker{ color: var(--sunset); font-weight:700; text-transform:uppercase; font-size:.78rem; letter-spacing:.12em; display:block; margin-bottom:8px; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* Wavy section dividers */
.wave{
  position:absolute; left:0; right:0; bottom:-1px; height:44px; z-index:2; pointer-events:none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 26 Q 300 2 600 26 T 1200 26 V44 H0 Z'/%3E%3C/svg%3E") center/100% 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 26 Q 300 2 600 26 T 1200 26 V44 H0 Z'/%3E%3C/svg%3E") center/100% 100%;
}
.wave--offwhite{ background: var(--offwhite); }
.wave--paper{ background: var(--paper); }
.wave--white{ background: #fff; }
.wave--navy{ background: var(--navy); }

/* Milestones — journey */
.milestones{ background: var(--paper); position:relative; }
.milestones .wrap{ position:relative; z-index:1; }
.milestones::after{
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.14; z-index:0;
  background-image:
    radial-gradient(var(--navy) 1px, transparent 1px),
    radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 20px 20px, 34px 34px;
  background-position: 0 0, 12px 16px;
}
.journey-path{ position:relative; max-width:640px; margin:0 auto; }
.journey-path > svg{ position:absolute; left:0; top:0; width:100%; height:100%; overflow:visible; }
.journey-line{ fill:none; stroke:var(--gold); stroke-width:3; stroke-linecap:round; stroke-dasharray:8 10; }
.journey-line--mobile{ display:none; }
.journey-stop{
  position:relative; width:78%; margin-bottom:64px;
  opacity:0; transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.journey-stop.in-view{ opacity:1; transform:none; }
.journey-stop:nth-child(even){ margin-left:22%; }
.journey-stop:last-child{ margin-bottom:0; }
.journey-path::before{
  content:''; position:absolute; left:50%; top:15%; width:min(560px, 90vw); height:min(560px, 90vw);
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity:.22; filter: blur(70px); transform: translateX(-50%); pointer-events:none;
}
.journey-card{
  position:relative;
  background:var(--offwhite); border:1px solid var(--navy-line); border-radius:var(--radius);
  padding:22px; display:flex; gap:18px; align-items:center;
  box-shadow: 0 20px 44px rgba(43,36,29,.20);
}
.journey-stop:nth-child(odd) .journey-card{ transform: rotate(-1deg); }
.journey-stop:nth-child(even) .journey-card{ transform: rotate(1deg); }
.journey-icon{
  width:64px; height:64px; border-radius:50%; background:var(--navy); color:var(--yellow);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.journey-icon svg{ display:block; width:28px; height:28px; margin:auto; }
.journey-card h3{ font-family:'Pacifico',cursive; font-weight:400; font-size:1.4rem; margin-bottom:4px; color:var(--sunset-dark); }
.journey-card p{ margin:0; font-size:.92rem; }

@media (max-width:700px){
  .journey-stop, .journey-stop:nth-child(even){ width:auto; margin-left:34px; margin-right:0; }
  .journey-card{ flex-direction:column; align-items:flex-start; text-align:left; }
  .journey-line--desktop{ display:none; }
  .journey-line--mobile{ display:block; }
}

/* How it works */
.how{ background: var(--offwhite); position:relative; }
.how-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; position:relative; }
.how-grid::before{
  content:''; position:absolute; top:34px; left:16%; right:16%; height:0;
  border-top:3px dashed var(--gold);
}
.how-step{
  text-align:center; padding:0 20px; position:relative;
  opacity:0; transform:translateY(24px);
  transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.how-step.in-view{ opacity:1; transform:none; }
.how-grid .how-step:nth-child(2){ transition-delay:.08s; }
.how-grid .how-step:nth-child(3){ transition-delay:.16s; }
.how-num{
  width:68px; height:68px; margin:0 auto 20px; border-radius:50%; background:var(--navy); color:var(--yellow);
  display:flex; align-items:center; justify-content:center; font-family:'Archivo Black',sans-serif; font-size:1.3rem;
  position:relative; z-index:1; box-shadow:0 0 0 6px var(--offwhite);
}
.how-step h3{ font-size:1.15rem; margin-bottom:8px; }
.how-step p{ font-size:.9rem; max-width:30ch; margin:0 auto; }

@media (max-width:800px){
  .how-grid{ grid-template-columns:1fr; gap:44px; }
  .how-grid::before{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  .journey-stop, .how-step{ opacity:1; transform:none; transition:none; }
}

/* Services */
.services{ background: #fff; position:relative; }
.service-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
.service-card{
  background: var(--offwhite); border:1px solid var(--navy-line); border-radius: var(--radius);
  padding: 0; overflow:hidden; transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.service-photo{ aspect-ratio: 1/1; }
.service-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.service-body{ padding: 24px 26px 28px; }
.service-card h3{ font-size:1.25rem; margin-bottom:8px; }
.service-card ul{ margin:14px 0 0; padding-left: 18px; color: var(--navy-soft); font-size:.92rem; }
.service-card li{ margin-bottom:4px; }

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

/* Pro Club & Shaka Wear blanks */
.pro-shop{ background: var(--paper); position:relative; }
.pro-shop-copy{ max-width: 640px; margin: 0 auto; text-align:center; }

.pro-shop-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:28px; margin-top:48px; }
.pro-shop-item{
  margin:0; position:relative; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow);
}
.pro-shop-item img{ width:100%; height:100%; object-fit:cover; display:block; }
.pro-shop-item figcaption{
  position:absolute; left:0; right:0; bottom:0; z-index:1; padding:14px 16px;
  background: linear-gradient(transparent, rgba(16,26,58,.82) 60%);
  color:#fff; font-family:'Archivo Black', sans-serif; font-weight:400; font-size:1rem;
}

@media (max-width: 520px){ .pro-shop-grid{ gap:12px; } }

/* Gallery */
.gallery{ position:relative; }
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.gallery-item{
  aspect-ratio: 1/1; border-radius: 14px;
  background: repeating-linear-gradient(135deg, var(--navy-line), var(--navy-line) 12px, var(--offwhite) 12px, var(--offwhite) 24px);
  border: 1px dashed var(--navy-line);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  color: var(--navy-soft); font-size:.85rem; padding: 16px; gap:6px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gallery-item:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--yellow-dark);
}
.gallery-item svg{ width:30px; height:30px; color: var(--navy); }
.gallery-item strong{ font-family:'Archivo Black', sans-serif; font-weight:400; color:var(--navy); font-size:.85rem; }
.gallery-item p{ margin:0; font-size:.78rem; color: var(--navy-soft); max-width:20ch; }

.gallery-item--photo{
  padding:0; border-style:solid; background:none; position:relative; overflow:hidden;
  justify-content:flex-end;
}
.gallery-item--photo img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.gallery-item-caption{
  position:relative; z-index:1; width:100%; padding:14px 16px;
  background: linear-gradient(transparent, rgba(16,26,58,.82) 60%);
  text-align:left;
}
.gallery-item-caption strong{ color:#fff; font-family:'Archivo Black', sans-serif; font-weight:400; font-size:.85rem; }
.gallery-item-caption p{ margin:2px 0 0; color: rgba(255,255,255,.85); max-width:none; font-size:.78rem; }
.gallery-note{ text-align:center; color: var(--navy-soft); font-size:.9rem; margin-top: 24px; }

@media (max-width: 860px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .gallery-grid{ grid-template-columns: 1fr 1fr; gap:12px; } }

/* Follow along (social / recent work) */
.follow{ background: var(--paper); position:relative; }
.follow-widget{ max-width:960px; margin:0 auto 36px; }
.follow-actions{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-bottom:40px; }
.follow-actions .btn svg{ width:18px; height:18px; }

/* About */
.about{ background: var(--navy); color:#fff; position:relative; }
.about .wrap{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:center; }
.about-copy, .about-photo{ min-width:0; }
.about h2{ color:#fff; }
.about p{ color: rgba(255,255,255,.85); }
.about-copy .kicker{
  color: var(--yellow); font-weight:700; text-transform:uppercase;
  font-size:.78rem; letter-spacing:.12em; display:block; margin-bottom:10px;
}
.about-photo{
  aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.about-photo img{ width:100%; height:100%; object-fit: cover; display:block; }
.about-list{ list-style:none; margin: 22px 0 0; padding:0; display:grid; gap:12px; }
.about-list li{ display:flex; gap:10px; align-items:flex-start; color:#fff; font-weight:500; }
.about-list svg{ flex:none; width:20px; height:20px; color: var(--yellow); margin-top:2px; }

@media (max-width: 900px){ .about .wrap{ grid-template-columns:1fr; } .about-photo{ order:-1; max-width:420px; margin:0 auto; } }

/* Why locals choose us */
.why{ background: var(--paper); position:relative; }
.why-strip{
  background: var(--offwhite); border:1px solid var(--navy-line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding:40px 32px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
}
.why-item{ text-align:center; }
.why-icon{
  width:56px; height:56px; margin:0 auto 16px; border-radius:50%;
  background: var(--navy); color: var(--yellow);
  display:flex; align-items:center; justify-content:center;
}
.why-icon svg{ display:block; width:24px; height:24px; margin:auto; }
.why-item h3{ font-family:'Inter',sans-serif; font-weight:700; font-size:1rem; margin-bottom:6px; color: var(--navy); }
.why-item p{ margin:0; font-size:.85rem; }

@media (max-width:700px){ .why-strip{ grid-template-columns:repeat(2,1fr); padding:32px 22px; } }

/* Testimonials */
.testimonials{ background:#fff; position:relative; }
.testimonial-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
}
.testimonial-card{
  background: var(--offwhite); border:1px solid var(--navy-line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding:28px 26px;
  display:flex; flex-direction:column; gap:14px;
}
.testimonial-stars{ color: var(--gold); font-size:1.05rem; letter-spacing:3px; }
.testimonial-quote{ margin:0; font-size:.95rem; color: var(--navy-soft); flex:1; }
.testimonial-author{ margin:0; font-weight:700; font-size:.85rem; color: var(--navy); }
.testimonial-link{
  display:block; width:fit-content; margin:32px auto 0;
  font-weight:700; font-size:.92rem; color: var(--navy); text-decoration:underline;
}

@media (max-width:620px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* FAQ */
.faq{ background: var(--paper); position:relative; }
.faq-list{
  max-width:820px; margin:0 auto;
  background: var(--offwhite); border:1px solid var(--navy-line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow:hidden;
}
.faq-item{ border-bottom:1px solid var(--navy-line); }
.faq-item:last-child{ border-bottom:0; }
.faq-item h3{ margin:0; font-family:'Inter',sans-serif; font-weight:400; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:0; cursor:pointer; text-align:left;
  padding:22px 26px; font-family:'Inter',sans-serif; font-weight:600; font-size:1rem; color: var(--navy);
}
.faq-q:hover{ background: rgba(245,222,27,.10); }
.faq-q:focus-visible{ outline:2px solid var(--yellow-dark); outline-offset:-2px; }
.faq-chevron{ flex:none; width:20px; height:20px; color: var(--sunset-dark); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .faq-chevron{ transform: rotate(180deg); }
.faq-a{
  overflow:hidden; max-height:0; padding:0 26px;
  transition: max-height .3s ease, padding .3s ease;
  font-size:.95rem; color: var(--navy-soft);
}
.faq-a[data-open="true"]{ max-height:400px; padding:0 26px 24px; }

/* Hours & location + Contact form, combined */
.hours{ background: var(--offwhite); }
.contact-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap:48px; align-items:start; }
.hours-col h3{ font-size:1.3rem; margin-bottom:18px; }
.hours-table{ width:100%; border-collapse: collapse; margin-bottom:22px; }
.hours-table td{ padding: 10px 0; border-bottom: 1px solid var(--navy-line); font-size:.95rem; color: var(--navy-soft); }
.hours-table td:first-child{ font-weight:600; color: var(--navy); }
.hours-table td:last-child{ text-align:right; }
.hours-table tr.today{ background: rgba(245,222,27,.14); }
.hours-table tr.today td{ color: var(--navy); font-weight:700; }
.hours-table tr.today td:last-child{ position:relative; }
.hours-table tr.today td:last-child::after{
  content:''; position:absolute; left:0; right:0; bottom:3px; height:.3em; z-index:-1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 24' preserveAspectRatio='none'%3E%3Cpath d='M3 14 C 40 4, 80 20, 120 10 S 200 4, 240 14 S 280 20, 297 10' fill='none' stroke='%23F5DE1B' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-size:100% 100%;
}
.addr-card{ background: var(--paper); border:1px solid var(--navy-line); border-radius: var(--radius); padding:22px; }
.addr-card p{ margin:0 0 4px; color: var(--navy); font-weight:600; }

@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }

/* Quote form */
.quote-form{
  background: #fff; border:1px solid var(--navy-line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); display:grid; gap:16px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-weight:600; font-size:.88rem; color: var(--navy); }
.field-optional{ font-weight:500; color: var(--navy-soft); text-transform:none; letter-spacing:normal; }
.field input, .field select, .field textarea{
  border:1px solid var(--navy-line); border-radius:10px; padding:12px 14px;
  font-family:'Inter'; font-size:.95rem; background:#fff; color: var(--navy);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--yellow-dark); outline-offset:1px; }
.field textarea{ resize: vertical; min-height:100px; }
.quote-form .btn-primary{ justify-self:start; }
.form-note{ font-size:.8rem; color: var(--navy-soft); }
.form-success{
  display:none; text-align:center; padding: 40px 20px;
  background:#fff; border:1px solid var(--navy-line); border-radius: var(--radius);
}
.form-success.show{ display:block; }
.form-success svg{ width:48px; height:48px; color: var(--navy); margin:0 auto 14px; }

@media (max-width: 620px){ .form-row{ grid-template-columns:1fr; } .quote-form{ padding:24px; } }

/* Footer */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 40px 0 26px; font-size:.88rem; }
.site-footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.site-footer .brand{ color:#fff; }
.footer-credit{
  max-width: var(--max); margin: 22px auto 0; padding: 18px 64px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center; font-size: .78rem; color: rgba(255,255,255,.45);
}
.footer-credit a{ color: rgba(255,255,255,.7); font-weight:600; text-decoration:underline; }
@media (max-width: 900px){ .footer-credit{ padding-left:32px; padding-right:32px; } }
@media (max-width: 640px){ .footer-credit{ padding-left:24px; padding-right:24px; } }
.site-footer .brand .mark{ box-shadow: 0 0 0 2px rgba(255,255,255,.25); }
.site-footer a{ color: rgba(255,255,255,.75); }
.footer-links{ list-style:none; display:flex; gap:20px; margin:0; padding:0; }

/* Sticky mobile call/quote bar */
.mobile-cta-bar{ display:none; }
@media (max-width: 640px){
  body{ padding-bottom: 78px; }
  .mobile-cta-bar{
    display:flex; gap:10px;
    position:fixed; left:0; right:0; bottom:0; z-index:55;
    background:#fff; border-top:1px solid var(--navy-line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(16,26,58,.12);
  }
  .mobile-cta-bar .btn{ flex:1; justify-content:center; padding:12px 16px; font-size:.92rem; }
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--navy); color:#fff; padding:10px 16px; border-radius:8px; z-index:100;
}
.skip-link:focus{ left:16px; top:16px; }

/* Scroll-reveal: JS adds .in-view when an element scrolls into place */
.section-head, .service-card, .gallery-item, .about-copy, .about-photo,
.pro-shop-copy, .pro-shop-item,
.quote-form, .addr-card, .hours-table, .faq-list, .why-strip, .follow-widget, .testimonial-grid{
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.section-head.in-view, .service-card.in-view, .gallery-item.in-view, .about-copy.in-view, .about-photo.in-view,
.pro-shop-copy.in-view, .pro-shop-item.in-view,
.quote-form.in-view, .addr-card.in-view, .hours-table.in-view, .faq-list.in-view, .why-strip.in-view, .follow-widget.in-view, .testimonial-grid.in-view{
  opacity: 1; transform: none;
}
.service-grid .service-card:nth-child(2){ transition-delay:.08s; }
.service-grid .service-card:nth-child(3){ transition-delay:.16s; }
.gallery-grid .gallery-item:nth-child(2){ transition-delay:.06s; }
.gallery-grid .gallery-item:nth-child(3){ transition-delay:.12s; }
.gallery-grid .gallery-item:nth-child(4){ transition-delay:.18s; }
.gallery-grid .gallery-item:nth-child(5){ transition-delay:.24s; }
.gallery-grid .gallery-item:nth-child(6){ transition-delay:.3s; }

/* Subtle parallax on the hero photo card */
.hero-card{ will-change: transform; }
.hero-sticker{ will-change: transform; }

@media (prefers-reduced-motion: reduce){
  .section-head, .service-card, .gallery-item, .about-copy, .about-photo,
  .pro-shop-copy, .pro-shop-item,
  .quote-form, .addr-card, .hours-table, .faq-list, .why-strip, .follow-widget, .testimonial-grid{
    opacity:1; transform:none; transition:none;
  }
}
