/* ===================================================================
   Good Hands Property Detailing — stylesheet
   Heritage brand: navy + tan + cream, editorial structure
   =================================================================== */

:root {
  --navy: #20333f;
  --navy-deep: #172631;
  --navy-mid: #33495a;
  --tan: #b8995f;
  --tan-dark: #a3854c;
  --tan-light: #cdb486;
  --cream: #efe8d8;
  --paper: #faf7ee;
  --paper-white: #fffdf8;
  --text: #38362d;
  --muted: #716d61;
  --line: #e2dac6;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 2px 12px rgba(23, 38, 49, 0.07);
  --shadow-md: 0 16px 44px rgba(23, 38, 49, 0.12);
  --shadow-lg: 0 34px 80px rgba(23, 38, 49, 0.24);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --slab: "Zilla Slab", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--tan-dark); text-decoration: none; }
a:hover { color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--slab);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 5.4rem); font-weight: 700; letter-spacing: -0.022em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.32rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  border-top: 2px dotted currentColor;
  opacity: 0.85;
}
.section-head-left .eyebrow::after,
.eyebrow.solo::after { display: none; }

.accent { color: var(--tan-dark); }

.section { padding: clamp(64px, 7.5vw, 104px) 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(36px, 4.5vw, 56px);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head-left { margin-left: 0; text-align: left; }
.section-head-left .eyebrow { justify-content: flex-start; }
.section-lead { color: var(--muted); font-size: 1.09rem; margin-top: 18px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn .ic { width: 18px; height: 18px; }

.btn-primary {
  background: var(--tan);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(184, 153, 95, 0.34);
}
.btn-primary:hover { background: var(--tan-dark); color: var(--navy-deep); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--paper); }

.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255, 255, 255, 0.42); }
.btn-ghost:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }

/* ---- Icons ---- */
.ic {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Logo lockup ---- */
.logo { display: flex; flex-direction: row; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-emblem { height: 48px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.wordmark {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.wordmark-light { color: var(--paper); }
.word-sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.57rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan-dark);
}

/* ---- Photo placeholders ---- */
[data-photo] { position: relative; }
.photo-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 9px 15px;
  border: 1.5px dotted rgba(255, 255, 255, 0.32);
  border-radius: 7px;
}
.photo-hint-corner {
  position: absolute;
  top: 18px; left: 18px;
  font-size: 0.72rem;
  padding: 6px 11px;
}

/* ===================================================================
   Announcement bar
   =================================================================== */
.announce { background: var(--navy-deep); color: var(--paper); font-size: 0.88rem; }
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 26px;
  position: relative;
}
.announce p { color: rgba(250, 247, 238, 0.86); }
.announce strong { color: var(--tan-light); }
.announce-link {
  color: rgba(250, 247, 238, 0.86);
  text-decoration: none;
  text-align: center;
  transition: color 0.18s ease;
}
.announce-link strong { color: var(--tan-light); transition: color 0.18s ease; }
.announce-link:hover { color: var(--paper); }
.announce-link:hover strong { color: var(--paper); }
.announce-close {
  position: absolute;
  right: 18px;
  background: none; border: none;
  color: rgba(250, 247, 238, 0.55);
  font-size: 1.3rem; line-height: 1;
  cursor: pointer; padding: 4px;
}
.announce-close:hover { color: var(--paper); }
.announce.hidden { display: none; }

/* ===================================================================
   Header
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--tan-dark); }
.main-nav .nav-cta { color: var(--navy) !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 25px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   Hero — full-bleed
   =================================================================== */
.hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 42%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 51, 63, 0.97) 2%, rgba(20, 51, 63, 0.62) 42%, rgba(20, 51, 63, 0.34) 100%),
    linear-gradient(to right, rgba(20, 51, 63, 0.72) 0%, rgba(20, 51, 63, 0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 108px;
  padding-bottom: clamp(70px, 9vw, 118px);
}
.hero-content { max-width: 720px; color: var(--paper); }
.hero .eyebrow { color: var(--tan-light); }
.hero h1 { color: var(--paper-white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--tan-light); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(250, 247, 238, 0.85);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-seal {
  position: absolute;
  top: 132px; right: clamp(26px, 7vw, 110px);
  z-index: 2;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--tan);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-12deg);
}
.hero-seal-ring {
  display: grid; place-items: center;
  width: 114px; height: 114px;
  border: 2px dotted var(--navy);
  border-radius: 50%;
}
.hero-seal-text {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.hero-scroll {
  position: absolute;
  right: clamp(26px, 5vw, 64px);
  bottom: 32px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250, 247, 238, 0.6);
}
.hero-scroll:hover { color: var(--tan-light); }
.hero-scroll svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ===================================================================
   Trust strip — overlapping card
   =================================================================== */
.trust-wrap { position: relative; z-index: 6; }
.trust-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: -68px;
  padding: 36px 22px;
}
.trust-item { text-align: center; padding: 4px 16px; }
.trust-item + .trust-item { border-left: 2px dotted var(--line); }
.trust-item strong {
  display: block;
  font-family: var(--slab);
  font-size: 1.95rem; font-weight: 700; line-height: 1;
  color: var(--navy);
}
.trust-item span {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tan-dark);
}

/* ===================================================================
   Services — alternating editorial rows
   =================================================================== */
.services { background: var(--paper); padding-top: clamp(64px, 8vw, 104px); }
.services-head { margin-bottom: clamp(40px, 5vw, 60px); }
.services-head h2 { line-height: 1.04; }

.service-rows { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.service-media {
  position: relative;
  min-height: clamp(320px, 38vw, 480px);
  background: var(--navy);
}
.service-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--paper);
  overflow: hidden;
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
  padding-left: clamp(40px, 4.6vw, 76px);
  padding-right: max(26px, calc(50vw - 590px));
}
.service-row.flip .service-media { order: 2; }
.service-row.flip .service-info {
  order: 1;
  background: var(--cream);
  padding-left: max(26px, calc(50vw - 590px));
  padding-right: clamp(40px, 4.6vw, 76px);
}
.ghost-num {
  position: absolute;
  top: -0.12em;
  right: 0.1em;
  z-index: 0;
  font-family: var(--slab);
  font-weight: 700;
  font-size: clamp(8rem, 15vw, 14rem);
  line-height: 0.8;
  color: rgba(184, 153, 95, 0.16);
  pointer-events: none;
}
.service-info > :not(.ghost-num) { position: relative; z-index: 1; }
.service-info .eyebrow { margin-bottom: 12px; }
.service-info h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  margin-bottom: 14px;
}
.service-info > p { color: var(--muted); font-size: 1.03rem; max-width: 420px; }
.row-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 9px;
  margin: 20px 0 26px;
}
.row-tags li {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--tan-dark);
  border: 1.5px dotted var(--tan);
  border-radius: 999px;
  padding: 6px 15px;
}

/* ===================================================================
   Our Work
   =================================================================== */
.work { background: var(--cream); }

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
  cursor: ew-resize;
}
.ba-fill {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}
.ba-img { position: absolute; inset: 0; background: var(--navy); }
.ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ba-before { clip-path: inset(0 50% 0 0); }
/* deck (flipped) row — favour the lower part of the frame so the deck shows */
.service-row.flip .ba-img img { object-position: center 80%; }
/* gallery tile 1 — nudge the "after" up to line up with the "before" */
.work-gallery .ba-slider:first-child .ba-after img { object-position: center 63%; }
.ba-tag {
  position: absolute;
  top: 16px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper-white);
  background: rgba(23, 38, 49, 0.66);
  padding: 6px 14px;
  border-radius: 5px;
}
.ba-after .ba-tag { right: 16px; }
.ba-before .ba-tag { left: 16px; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 44px; margin-left: -22px;
  display: grid; place-items: center;
  cursor: ew-resize;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--paper-white);
}
.ba-handle-grip {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper-white);
  box-shadow: var(--shadow-md);
}
.ba-handle-grip svg {
  width: 19px; height: 19px;
  fill: none; stroke: var(--navy); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-handle-grip { box-shadow: 0 0 0 4px var(--tan); }

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-gallery .ba-slider { aspect-ratio: 4 / 3; }
.gallery-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.gallery-placeholder-label {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 238, 0.55);
  border: 2px dashed rgba(205, 180, 134, 0.4);
  border-radius: 8px;
  padding: 22px 30px;
}

/* ===================================================================
   Materials — Gator + Cutek
   =================================================================== */
.materials { background: var(--navy); position: relative; overflow: hidden; }
.materials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(184, 153, 95, 0.15), transparent 64%);
}
.materials .container { position: relative; }
.materials .eyebrow { color: var(--tan-light); }
.materials h2 { color: var(--paper-white); }
.materials .section-lead { color: rgba(250, 247, 238, 0.78); }

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.material-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.material-photo { position: relative; aspect-ratio: 16 / 10; }
.material-photo > img:not(.material-product) {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.material-product {
  position: absolute;
  left: 30px;
  bottom: -30px;
  height: 206px;
  width: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.42));
}
/* Cutek can is square; the G2 bag is tall — size the can down so both read equal */
.materials-grid .material-card:last-child .material-product { height: 158px; }
.material-badge {
  position: absolute;
  left: 30px; bottom: -36px;
  display: grid;
  place-items: center;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--tan);
  color: var(--navy);
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  border: 3px dotted var(--navy);
  box-shadow: var(--shadow-md);
}
.material-body { padding: 54px 34px 36px; }
.material-for {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 5px;
}
.material-card h3 { color: var(--paper-white); font-size: 1.55rem; }
.material-body > p { color: rgba(250, 247, 238, 0.78); margin: 10px 0 18px; }
.material-points { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.material-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(250, 247, 238, 0.92);
  font-size: 0.96rem;
}
.material-points .ic { color: var(--tan-light); margin-top: 2px; }

/* ===================================================================
   Process — horizontal stepper
   =================================================================== */
.process { background: var(--paper); border-top: 1px solid rgba(184, 153, 95, 0.22); }
.process-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.process-flow::before {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  top: 23px;
  border-top: 2px dotted var(--tan);
  z-index: 0;
}
.flow-step { text-align: center; position: relative; }
.flow-num {
  position: relative;
  z-index: 1;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--tan-light);
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1;
  padding-bottom: 5px;
  margin: 0 auto 18px;
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--tan);
}
.flow-step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.flow-step p { color: var(--muted); font-size: 0.92rem; }

/* ===================================================================
   Why Good Hands — asymmetric
   =================================================================== */
.why { background: var(--navy); position: relative; }
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 54% 60% at 14% 6%, rgba(184, 153, 95, 0.16), transparent 62%);
}
.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: stretch;
}
.why-photo {
  border-radius: var(--radius);
  background: url("images/why.jpg") center / cover, var(--navy);
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}
.why-main { display: flex; flex-direction: column; justify-content: center; gap: 30px; }
.why-lead .eyebrow { color: var(--tan-light); }
.why-lead h2 { color: var(--paper-white); margin-bottom: 16px; }
.why-lead h2 .accent { color: var(--tan-light); }
.why-lead p { color: rgba(250, 247, 238, 0.78); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.why-item:hover { transform: translateX(5px); border-color: rgba(205, 180, 134, 0.45); }
.why-icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--tan);
  border: 2px dotted var(--navy);
}
.why-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--navy); stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.why-item h3 { color: var(--paper-white); font-size: 1.14rem; margin-bottom: 3px; }
.why-item p { color: rgba(250, 247, 238, 0.7); font-size: 0.93rem; }

/* ===================================================================
   Founders / About
   =================================================================== */
/* About page — values cards */
.who {
  background: var(--cream);
  border-top: 1px solid rgba(184, 153, 95, 0.22);
  border-bottom: 1px solid rgba(184, 153, 95, 0.22);
  padding: clamp(56px, 7vw, 88px) 0;
}
.founders { padding: clamp(56px, 7vw, 88px) 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.value {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(20, 51, 63, 0.08);
}
.value::before {
  content: "";
  position: absolute;
  top: 0; left: 32px;
  width: 38px; height: 3px;
  background: var(--tan);
}
.value-num {
  display: block;
  font-family: var(--slab);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.value h3 {
  color: var(--navy);
  font-size: 1.32rem;
  font-family: var(--slab);
  margin-bottom: 12px;
}
.value p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.founders { background: var(--paper); }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.founder-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.founder-photo {
  aspect-ratio: 4 / 3;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}
.founder-photo-hudson { background-image: url("images/owner.jpg"); background-position: center 30%; }
.founder-photo-griffin { background-image: url("images/founder-griffin.jpg"); background-position: center top; }
.founder-body { padding: 26px 28px 28px; }
.founder-body h3 { color: var(--navy); font-size: 1.55rem; margin-bottom: 4px; }
.founder-role {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px dotted var(--line);
}
.founder-body p:last-child { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.founders-cta { text-align: center; margin-top: 40px; }

/* ===================================================================
   Testimonials
   =================================================================== */
.testimonials { background: var(--cream); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--tan); letter-spacing: 3px; font-size: 1.05rem; }
.review-card blockquote {
  font-family: var(--slab);
  font-size: 1.18rem;
  line-height: 1.48;
  color: var(--navy);
}
.review-card figcaption {
  display: flex; flex-direction: column;
  padding-top: 14px;
  border-top: 2px dotted var(--line);
}
.review-card figcaption strong { color: var(--navy); }
.review-card figcaption span { font-size: 0.85rem; color: var(--muted); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { background: var(--paper); }
.faq-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}
.faq-inner .section-head { margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  font-family: var(--slab);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--slab);
  font-size: 1.6rem; line-height: 1;
  color: var(--tan-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--muted); font-size: 0.97rem; }

/* ===================================================================
   Contact
   =================================================================== */
.contact { background: var(--navy); position: relative; }
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 12% 100%, rgba(51, 73, 90, 0.72), transparent 62%);
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-copy .eyebrow { color: var(--tan-light); }
.contact-copy h2 { color: var(--paper-white); margin-bottom: 16px; }
.contact-copy > p { color: rgba(250, 247, 238, 0.78); margin-bottom: 28px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 13px; color: rgba(250, 247, 238, 0.9); }
.contact-list .ic { color: var(--tan-light); }
.contact-list a { color: rgba(250, 247, 238, 0.9); }
.contact-list a:hover { color: var(--tan-light); }

.quote-form {
  background: var(--paper-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.quote-form h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.5rem; }
/* Jobber embed sits inside the white card with minimal extra padding (Jobber's form has its own) */
.quote-form.jobber-embed { padding: 18px; min-height: 520px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(184, 153, 95, 0.22);
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid { border-color: #c0492f; }
.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--tan);
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(250, 247, 238, 0.66); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 38px;
  padding-top: 48px;
  padding-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; max-width: 270px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 {
  color: var(--tan-light);
  font-family: var(--sans);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a { color: rgba(250, 247, 238, 0.74); font-size: 0.93rem; }
.footer-col a:hover { color: var(--tan-light); }
.footer-contact p { font-size: 0.9rem; }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
}
.footer-social a:hover { background: var(--tan); color: var(--navy); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.83rem;
}

/* ===================================================================
   Scroll-reveal
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll svg { animation: none; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1000px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row.flip .service-media { order: 0; }
  .service-row.flip .service-info { order: 0; }
  .service-media { min-height: clamp(260px, 50vw, 380px); }
  .service-info,
  .service-row.flip .service-info {
    padding: clamp(40px, 7vw, 60px) 26px;
    align-items: flex-start;
  }
  .ghost-num { font-size: clamp(5rem, 16vw, 8rem); }
  .work-gallery { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: 1fr; gap: 22px; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-photo { min-height: 300px; }
  .founders-grid { grid-template-columns: 1fr; gap: 28px; max-width: 460px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 34px; }
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; max-width: 520px; }
  .process-flow::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .announce-inner { padding: 10px 40px; }
  .announce-close { top: 50%; right: 12px; transform: translateY(-50%); }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-white);
    border-bottom: 1px solid var(--line);
    padding: 12px 26px 22px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 12px; text-align: center; }

  .hero { min-height: 72vh; }
  .hero-inner { padding-top: 112px; }
  .hero-seal { width: 96px; height: 96px; top: 104px; right: 20px; }
  .hero-seal-ring { width: 74px; height: 74px; }
  .hero-seal-text { font-size: 0.58rem; line-height: 1.2; letter-spacing: 0.03em; }
  .hero-scroll { display: none; }

  .hero-page { min-height: 60vh; }
  .hero-page .hero-inner { padding-top: 100px; }
  .hero-about { min-height: 56vh; }
  .hero-contact { min-height: 42vh; }
  .hero-contact .hero-inner { padding-top: 96px; padding-bottom: 32px; }

  .trust-card { grid-template-columns: repeat(2, 1fr); gap: 26px 0; padding: 30px 16px; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-item:nth-child(even) { border-left: 2px dotted var(--line); }

  .review-grid { grid-template-columns: 1fr; }
  .work-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .container { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .process-flow { grid-template-columns: 1fr; max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
  .material-body { padding: 50px 24px 32px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-page h1, .hero-about h1 { font-size: 2rem; }
}

/* ===================================================================
   Subpages — shared elements (hero, breadcrumbs, intro, related, CTA)
   =================================================================== */
.hero-page { min-height: 48vh; }
.hero-page .hero-inner { padding-top: 84px; padding-bottom: clamp(46px, 6vw, 68px); }
.hero-page h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 14px; }
.hero-page .hero-sub { font-size: 1.06rem; margin-bottom: 22px; }
.hero-page .hero-actions { gap: 12px; }
.hero-about .hero-inner { padding-top: 82px; padding-bottom: clamp(42px, 5vw, 62px); }
.hero-about h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 14px; }

.breadcrumbs {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 238, 0.65);
  margin-bottom: 22px;
}
.breadcrumbs a { color: rgba(250, 247, 238, 0.85); text-decoration: none; }
.breadcrumbs a:hover { color: var(--tan-light); }
.breadcrumbs > span { color: var(--tan-light); margin-left: 4px; }

/* Subpage 2-col intro */
.sub-intro { background: var(--paper); }
.sub-intro.sub-intro--cream { background: var(--cream); }
.sub-intro-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.sub-intro-inner h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); line-height: 1.16; }
.sub-intro-inner p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }
.sub-intro-inner p strong { color: var(--navy); font-weight: 600; }
.sub-intro-inner p a {
  color: var(--tan-dark);
  text-decoration: underline;
  text-decoration-color: rgba(184, 153, 95, 0.4);
  text-underline-offset: 3px;
}
.sub-intro-inner p a:hover { color: var(--navy); text-decoration-color: var(--navy); }

/* Signs/surfaces 2-col list */
.signs {
  background: var(--cream);
  padding: clamp(64px, 7.5vw, 104px) 0;
  border-bottom: 1px solid rgba(184, 153, 95, 0.22);
}
.signs .section-head { margin-bottom: clamp(28px, 3.6vw, 42px); }
.signs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.sign-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sign-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(20, 51, 63, 0.08);
  border-color: rgba(184, 153, 95, 0.4);
}
.sign-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sign-icon svg {
  width: 22px; height: 22px;
  stroke: var(--tan-dark);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sign-card h3 {
  font-size: 1.02rem;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.sign-card h3 strong { color: var(--navy); font-weight: 600; }

/* Material points (on materials section) */
.material-points-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
  max-width: 880px;
  margin: 0 auto;
}
.material-points-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  color: rgba(250, 247, 238, 0.92);
  font-size: 1rem;
  line-height: 1.55;
  padding: 6px 0;
  align-items: start;
}
.material-points-grid .ic { color: var(--tan-light); margin-top: 3px; }

/* Sealing finishes */
.sealing { background: var(--paper); }
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.finish-card {
  position: relative;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
}
.finish-card::before {
  content: "";
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 3px;
  background: var(--tan);
  border-radius: 0 0 3px 3px;
}
.finish-num {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--tan-dark);
}
.finish-card h3 { color: var(--navy); margin: 10px 0 10px; font-size: 1.36rem; }
.finish-card p { color: var(--muted); font-size: 0.96rem; }

/* Related services */
.related { background: var(--cream); }
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.related-card {
  display: block;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.18s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.related-card h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 8px; }
.related-card p { color: var(--muted); font-size: 0.96rem; }

/* CTA band (sub-page bottom CTA) */
.cta-band { background: var(--navy-deep); text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(184, 153, 95, 0.32); }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 54% 60% at 50% 100%, rgba(184, 153, 95, 0.18), transparent 64%);
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--paper-white); margin-bottom: 12px; }
.cta-band p { color: rgba(250, 247, 238, 0.8); margin-bottom: 22px; font-size: 1rem; }

/* Vertical timeline (used on subpage process sections) */
.timeline {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 0;
  border-left: 2px dotted var(--tan);
}
.timeline-step {
  position: relative;
  display: flex;
  gap: 22px;
  padding-bottom: 28px;
  list-style: none;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--tan-light);
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--tan);
  padding-bottom: 4px;
}
.timeline-body {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  flex: 1;
  margin-top: -2px;
}
.timeline-body h3 { color: var(--navy); margin-bottom: 5px; font-size: 1.2rem; }
.timeline-body p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.timeline-body p strong { color: var(--navy); }

/* Subpage hero seal — re-uses the homepage seal style but positioned top-right of the hero */
.hero-page .hero-seal {
  position: absolute;
  top: clamp(120px, 14vw, 170px);
  right: clamp(26px, 7vw, 100px);
  z-index: 2;
}

/* Subpage trust strip variant — same overlapping card pattern as homepage */
.sub-trust { position: relative; z-index: 6; }
.sub-trust .trust-card { margin-top: -64px; }

/* Product showcase (interlock = Gator, deck = Cutek) */
.product-showcase { background: var(--navy); position: relative; overflow: hidden; }
.product-showcase::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 30% 50%, rgba(184, 153, 95, 0.16), transparent 64%);
}
.product-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.product-photo {
  display: grid; place-items: center;
  aspect-ratio: 5 / 4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
}
.product-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5));
}
.product-text .eyebrow { color: var(--tan-light); }
.product-text h2 { color: var(--paper-white); margin-bottom: 14px; }
.product-text > p { color: rgba(250, 247, 238, 0.82); margin-bottom: 24px; max-width: 480px; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 24px; }
.product-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: rgba(250, 247, 238, 0.92);
  font-size: 1rem;
  line-height: 1.55;
  align-items: start;
}
.product-features .ic { color: var(--tan-light); margin-top: 3px; }

/* Mini gallery for subpages */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.mini-gallery .ba-slider { aspect-ratio: 4 / 3; }

/* Hero photo backgrounds for About + Contact */
.hero-about .hero-media {
  background-image: url("images/toronto-home-ai.jpeg");
  background-position: center bottom;
}
.hero-about { min-height: 44vh; }
.hero-contact .hero-media {
  background-image: url("images/hero.jpg");
  background-position: center 45%;
}
.hero-contact { min-height: auto; align-items: stretch; }
.hero-contact .hero-inner { padding-top: 96px; padding-bottom: clamp(56px, 6vw, 84px); }
.hero-contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.hero-contact .hero-content { align-self: start; }
.hero-form {
  background: var(--paper-white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 3;
}
.hero-form.jobber-embed { min-height: 540px; padding: 14px; }

/* Below-fold contact info section */
.contact-info { background: var(--paper); padding: clamp(56px, 7vw, 88px) 0; border-top: 1px solid rgba(184, 153, 95, 0.22); }
.contact-info-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 10px; color: var(--navy); }
.contact-info-head p { color: var(--muted); }
.contact-info .contact-list li { color: var(--text); }
.contact-info .contact-list .ic { color: var(--tan-dark); }
.contact-info .contact-list a { color: var(--navy); font-weight: 600; }
.contact-info .contact-list a:hover { color: var(--tan-dark); }

@media (max-width: 900px) {
  .hero-contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-contact-inner .hero-content { align-self: start; }
  .contact-info-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Responsive */
@media (max-width: 1000px) {
  .sub-intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .signs-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .material-points-grid { grid-template-columns: 1fr; }
  .finish-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .related-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .product-inner { grid-template-columns: 1fr; gap: 32px; }
  .mini-gallery { grid-template-columns: 1fr; max-width: 460px; margin: 30px auto 0; }
  .hero-page .hero-seal { width: 96px; height: 96px; top: 100px; right: 18px; }
  .values-grid { grid-template-columns: 1fr; max-width: 520px; gap: 18px; }
}
