/* Storz Christmas Lights — shared stylesheet
   Recreated from the Claude Design prototype bundle (project/*.dc.html) at each
   page's default configuration. Home page uses its own accent tokens (brandRed
   #B8232F, accent #F6E4C8); interior pages use their own hardcoded tokens
   (#8C1521 / #C9A227) — this mirrors the source prototypes, not a bug. */

:root {
  --ink: #1A2821;
  --cream: #FBF3E4;
  --cream-card: #FFFDF7;
  --cream-border: #E4DCCB;
  --cream-border-2: #E4DCC8;
  --muted: #55554C;
  --muted-2: #8A8578;

  /* Home page tokens */
  --home-red: #B8232F;
  --home-gold: #F6E4C8;

  /* Interior page tokens */
  --sub-red: #8C1521;
  --sub-gold: #C9A227;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: #FBF3E4;
  color: var(--ink);
  font-family: Figtree, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

button { font: inherit; }

ul { margin: 0; }

.wrap { max-width: 1200px; margin: 0 auto; }

/* ---------------------------------------------------------------------
   Keyframes
--------------------------------------------------------------------- */
@keyframes storztwinkle { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes storzmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: 0s !important; }
}

/* ---------------------------------------------------------------------
   Scroll reveal (default "Fade up" on the home page)
--------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 760ms cubic-bezier(.22,.7,.2,1), transform 760ms cubic-bezier(.22,.7,.2,1);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* =======================================================================
   HOME PAGE
======================================================================= */
body.home { background: #FFFFFF; color: var(--ink); overflow-x: hidden; }

/* --- nav (icon-rail variant, the default) --- */
.home-nav {
  position: absolute; left: 0; right: 0; top: 0; z-index: 3;
  padding: 20px 0;
  background: linear-gradient(rgba(8,14,24,0.55), rgba(8,14,24,0));
}
.home-nav-inner {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px;
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
}
.home-nav-logo { height: 69px; filter: drop-shadow(0 2px 10px rgba(6,12,22,0.5)); }
.home-nav-links {
  display: flex; gap: 30px; flex-wrap: wrap; align-items: center; justify-content: center;
  font-family: Figtree, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFFFFF; text-shadow: 0 1px 10px rgba(6,12,22,0.6);
}
body.home .home-nav-links a { cursor: pointer; color: #FFFFFF; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 260ms ease, border-color 260ms ease; }
body.home .home-nav-links a:hover { color: var(--home-gold); }
.home-nav-phone {
  display: flex; align-items: center; gap: 18px;
  font-family: 'Google Sans Code', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #FFFDF7;
}

/* --- mobile nav toggle (shared by home + interior headers) --- */
.nav-toggle {
  display: none; flex: none; width: 30px; height: 22px; padding: 0; border: none; background: none; cursor: pointer;
  flex-direction: column; justify-content: space-between; justify-self: end;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: #FFFFFF; border-radius: 1px; transition: transform 220ms ease, opacity 220ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 880px) {
  .home-nav-inner { grid-template-columns: auto auto; }
  .home-nav-links, .home-nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .home-nav.nav-open .home-nav-links,
  .home-nav.nav-open .home-nav-phone {
    display: flex; flex-direction: column; align-items: flex-start; grid-column: 1 / -1;
    width: 100%; gap: 14px; padding: 18px 0 6px; justify-content: flex-start; text-shadow: none;
  }
  .home-nav.nav-open { background: rgba(8,14,24,0.94) !important; padding-bottom: 8px; }
}

/* --- hero --- */
.hero { position: relative; height: 660px; background: #0E1A2B; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%;
  image-rendering: pixelated; will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10,18,32,0.50) 0%, rgba(10,18,32,0) 26%, rgba(10,18,32,0) 46%, rgba(10,18,32,0.72) 82%, rgba(10,18,32,0.86) 100%);
}
.hero-box {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 70px;
  width: max-content; max-width: 94%; text-align: center;
}
.hero-title {
  font-family: 'Instrument Serif', serif; white-space: nowrap;
  font-size: min(90px, 8.6vw); line-height: 1.08; letter-spacing: -0.02em; color: #FFFDF7;
  text-shadow: 0 2px 16px rgba(6,12,22,0.6); margin: 0;
}
.hero-sub {
  font-family: Figtree, sans-serif; font-size: 14.5px; line-height: 1.65; color: #FFFDF7;
  margin-top: 14px; text-shadow: 0 1px 10px rgba(6,12,22,0.6);
}
.hero-btn-row { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 22px; justify-content: center; }

/* --- buttons (home) --- */
.btn {
  cursor: pointer; border: none; display: inline-flex; align-items: center; justify-content: center;
  font-family: Figtree, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 5px;
  transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease, filter 400ms ease;
}
.btn-primary { background: var(--home-red); color: #FFFDF7; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26,40,33,0.28); }
.btn-primary:active { transform: translateY(1px) scale(0.985); filter: brightness(0.96); }

.btn-secondary {
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  font-family: Figtree, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #FFFDF7; border-bottom: 1px solid rgba(255,253,247,0.5); padding-bottom: 4px;
  transition: color 260ms ease, border-color 260ms ease;
}
.btn-secondary:hover { color: var(--home-gold); border-bottom-color: var(--home-gold); }

.nav-cta {
  background: var(--home-red); color: #FFFDF7; padding: 11px 20px; border-radius: 5px; font-weight: 700;
}

/* --- marquee --- */
.marquee { height: 64px; display: flex; align-items: center; overflow: hidden; background: var(--home-red); }
.marquee-inner {
  display: flex; width: max-content; font-family: 'Instrument Serif', serif; font-size: 34px; letter-spacing: 0.02em;
  color: #FFFFFF; animation: storzmarquee 52s linear infinite;
}
.marquee-inner span { padding-right: 40px; white-space: nowrap; flex: none; }

/* --- why section --- */
.why { background: #FFFFFF; padding: 104px 40px; }
.why-grid {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 72px; align-items: center;
}
.why-photo-wrap { position: relative; display: inline-block; justify-self: start; }
.why-photo { width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: cover; object-position: 50% 30%; border-radius: 5px; }
.why-photo-logo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64%;
  filter: drop-shadow(0 4px 18px rgba(6,12,22,0.55));
}
.why-text { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.why-title {
  font-family: 'Instrument Serif', serif; font-size: 60px; font-weight: 700; line-height: 0.98; color: var(--home-red); margin: 0;
}
.why-body { font-size: 15px; line-height: 1.7; display: flex; flex-direction: column; gap: 14px; }
.why-body ul { padding-left: 22px; display: flex; flex-direction: column; gap: 12px; }

/* --- process --- */
.process { background: #1A2821; padding: 104px 40px; }
.process-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.process-motif { font-family: 'Instrument Serif', serif; font-size: 22px; letter-spacing: 0.6em; margin-bottom: 14px; color: var(--home-gold); animation: storztwinkle 2.8s ease-in-out infinite; }
.process-title { font-family: Figtree, sans-serif; font-weight: 800; font-size: 62px; line-height: 1.02; letter-spacing: -0.03em; color: #FFFDF7; margin: 0; }
.process-tag {
  display: inline-block; margin-top: 12px; background: var(--home-red); color: #FFFDF7;
  font-family: 'Instrument Serif', serif; font-size: 50px; line-height: 1.12; padding: 4px 34px; border-radius: 5px; transform: rotate(-1.2deg);
}
.process-sub { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.7; color: rgba(255,253,247,0.92); max-width: 520px; margin: 30px auto 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 138px), 1fr));
  gap: 18px; margin-top: 56px; text-align: left;
}
.process-card {
  background: var(--home-gold); border: 1px solid rgba(255,255,255,0.35); border-radius: 6px;
  padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(10,18,14,0.28); }
.process-card-icon {
  width: 46px; height: 46px; flex: none; border-radius: 999px; border: 1.5px solid #1A2821; color: #1A2821;
  display: grid; place-items: center; font-family: 'Google Sans Code', monospace; font-size: 13px;
}
.process-card-title {
  font-family: Figtree, sans-serif; font-weight: 700; overflow-wrap: anywhere;
  font-size: clamp(15px, 1.6vw, 22px); line-height: 1.1; letter-spacing: -0.01em; color: #1A2821; margin: 0;
}
.process-card-body { font-family: Figtree, sans-serif; font-size: 13.5px; line-height: 1.65; color: #1A2821; margin: 0; }

/* --- services (home) --- */
.services { background: #FFFFFF; padding: 104px 40px; border-top: 1px solid var(--cream-border-2); }
.services-kicker { font-family: Figtree, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--home-red); }
.services-head { font-family: 'Instrument Serif', serif; font-size: 78px; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); max-width: 820px; margin-top: 16px; }
.services-area-intro { font-family: Figtree, sans-serif; font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 760px; margin: 18px 0 0; }
.city-row { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 22px; }
.city-chip {
  display: inline-flex; align-items: center; gap: 8px; font-family: Figtree, sans-serif; font-size: 13.5px; font-weight: 600;
  color: var(--ink); background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: 5px; padding: 8px 14px;
  transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.city-chip:hover { border-color: var(--home-red); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(26,40,33,0.12); }
.city-chip svg { color: var(--home-red); display: block; }
.services-more { margin-top: 36px; }
.services-more-link {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: Figtree, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--home-red); border-bottom: 1px solid rgba(160,6,27,0.4); padding-bottom: 4px;
  transition: color 260ms ease, border-color 260ms ease;
}
.services-more-link:hover { color: #B27F49; border-bottom-color: #B27F49; }

/* --- cta band (home) --- */
.cta-band { background: var(--home-red); padding: 84px 40px; text-align: center; }
.cta-band img { height: 76px; margin: 0 auto; }
.cta-title { font-family: 'Instrument Serif', serif; font-size: 78px; line-height: 1.12; letter-spacing: -0.02em; color: #FFFDF7; margin-top: 26px; }
.cta-body { font-family: Figtree, sans-serif; font-size: 17px; line-height: 1.55; color: rgba(255,253,247,0.9); max-width: 540px; margin: 18px auto 0; }
.cta-band .btn { margin-top: 30px; background: var(--cream); color: var(--ink); }
.cta-band .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26,40,33,0.28); }

/* --- founder --- */
.founder { background: var(--ink); padding: 94px 40px; }
.founder-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 58px; align-items: center; }
.founder-photo { width: 100%; max-width: 340px; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; border-radius: 5px; }
.founder-script { font-family: Caveat, cursive; font-size: 40px; line-height: 1; color: var(--home-gold); }
.founder-name { font-family: Figtree, sans-serif; font-weight: 800; font-size: 54px; line-height: 1.04; letter-spacing: -0.025em; color: #FFFDF7; margin-top: 10px; }
.founder-body { font-family: Figtree, sans-serif; font-size: 15.5px; line-height: 1.85; color: rgba(255,253,247,0.88); max-width: 520px; margin-top: 18px; }
.founder-tag {
  display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap;
  font-family: 'Google Sans Code', monospace; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246,228,200,0.8);
}

/* --- faq (shared look, home uses home tokens) --- */
.faq { padding: 104px 40px; border-top: 1px solid var(--cream-border-2); }
.home .faq { background: #FFFFFF; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-wreath { display: block; width: 132px; height: auto; margin: 0 auto 22px; image-rendering: pixelated; }
.faq-kicker { font-family: Figtree, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A0061B; text-align: center; }
.faq-head { font-family: 'Instrument Serif', serif; font-size: 62px; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); text-align: center; margin: 14px 0 0; }
.home .faq-head { font-size: 78px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.faq-row { background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: 5px; overflow: hidden; transition: border-color 260ms ease, box-shadow 260ms ease; }
.faq-row:hover { border-color: var(--sub-red); box-shadow: 0 8px 22px rgba(26,40,33,0.08); }
.home .faq-row:hover { border-color: var(--home-red); }
.faq-row.is-open { border-color: var(--sub-red); }
.home .faq-row.is-open { border-color: var(--home-red); }
.faq-q {
  width: 100%; text-align: left; background: none; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer; padding: 22px 26px; font-family: Figtree, sans-serif; font-weight: 600; font-size: 19px; line-height: 1.3; color: var(--ink);
}
.faq-sign { flex: none; font-family: 'Google Sans Code', monospace; font-size: 22px; line-height: 1; color: var(--sub-red); }
.home .faq-sign { color: var(--home-red); }
.faq-a { display: none; padding: 0 26px 24px; border-top: 1px solid var(--sub-red); margin-top: 0; padding-top: 20px; font-family: Figtree, sans-serif; font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 760px; }
.home .faq-a { border-top-color: var(--home-red); }
.faq-row.is-open .faq-a { display: block; }

/* =======================================================================
   INTERIOR PAGES (Services / Gallery / Product Guide / Free Quote)
======================================================================= */
body.sub { background: #FFFFFF; color: var(--ink); overflow-x: hidden; }
body.sub input:focus, body.sub select:focus, body.sub textarea:focus { outline: none; border-color: var(--sub-red); }

.sub-header { background: var(--ink); padding: 14px 0; }
.sub-header.overlay { position: absolute; left: 0; right: 0; top: 0; z-index: 3; padding: 14px 0; background: linear-gradient(rgba(8,14,24,0.55), rgba(8,14,24,0)); }
.sub-nav-inner { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px; max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.sub-nav-inner img { height: 69px; display: block; }
.overlay .sub-nav-inner img { filter: drop-shadow(0 2px 10px rgba(6,12,22,0.5)); }
.sub-nav-links {
  display: flex; gap: 30px; flex-wrap: wrap; align-items: center; justify-content: center;
  font-family: Figtree, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #FFFDF7;
}
.overlay .sub-nav-links { text-shadow: 0 1px 10px rgba(6,12,22,0.6); }
.sub-nav-links a { transition: color 240ms ease; }
.sub-nav-links a:hover { color: var(--sub-gold); }
.sub-nav-links a.is-active { color: var(--sub-gold); border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.sub-nav-phone { display: flex; align-items: center; gap: 18px; font-family: 'Google Sans Code', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #FFFDF7; }

@media (max-width: 880px) {
  .sub-nav-inner { grid-template-columns: auto auto; }
  .sub-nav-links, .sub-nav-phone { display: none; }
  .sub-header .nav-toggle { display: flex; }
  .sub-header.nav-open .sub-nav-links,
  .sub-header.nav-open .sub-nav-phone {
    display: flex; flex-direction: column; align-items: flex-start; grid-column: 1 / -1;
    width: 100%; gap: 14px; padding: 18px 0 6px; justify-content: flex-start; text-shadow: none;
  }
  .sub-header.overlay.nav-open { background: rgba(8,14,24,0.94); padding-bottom: 8px; }
}

.sub-footer { background: var(--sub-red); padding: 84px 40px; text-align: center; }
.sub-footer img { height: 76px; margin: 0 auto; }
.sub-footer-tag { font-family: 'Google Sans Code', monospace; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,253,247,0.9); margin-top: 18px; }
.sub-footer-title { font-family: 'Instrument Serif', serif; font-size: 44px; line-height: 1.12; letter-spacing: -0.02em; color: #FFFDF7; margin-top: 26px; }
.sub-footer-body { font-family: Figtree, sans-serif; font-size: 17px; line-height: 1.55; color: rgba(255,253,247,0.9); max-width: 540px; margin: 18px auto 0; }
.sub-footer .btn-cream { display: inline-flex; margin-top: 30px; }

.btn-cream {
  cursor: pointer; align-items: center; justify-content: center; font-family: Figtree, sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; background: var(--cream); color: var(--ink); border-radius: 5px; border: none;
  transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease;
}
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10,10,10,0.3); }

/* --- Services page --- */
.services-hero { position: relative; height: 380px; background: #0E1A2B; overflow: hidden; }
.services-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.services-hero-scrim { position: absolute; inset: 0; background: linear-gradient(rgba(10,18,32,0.5) 0%, rgba(10,18,32,0.25) 40%, rgba(10,18,32,0.82) 100%); }
.services-hero-box { position: absolute; left: 50%; transform: translateX(-50%); bottom: 54px; width: min(900px, 88%); text-align: center; }
.services-hero-kicker { font-family: 'Google Sans Code', monospace; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sub-gold); }
.services-hero-title { font-family: 'Instrument Serif', serif; font-size: 62px; line-height: 1.06; letter-spacing: -0.02em; color: #FFFDF7; margin-top: 12px; text-shadow: 0 2px 16px rgba(6,12,22,0.6); }

.sub-services { background: #FFFFFF; padding: 104px 40px; }
.sub-services-kicker { font-family: Figtree, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sub-red); }
.sub-services-head { font-family: 'Instrument Serif', serif; font-size: 46px; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); max-width: 820px; margin-top: 16px; }
.sub-services-list { margin-top: 44px; }
.sub-service-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 52px; align-items: center; padding: 40px 0; border-top: 1px solid var(--cream-border-2); }
.sub-service-row:first-child { border-top: none; }
.sub-service-row.reverse .sub-service-text { order: -1; }
.sub-service-frame { transition: filter 400ms ease, transform 260ms ease; aspect-ratio: 5/4; border-radius: 5px; background-size: cover; background-position: center 62%; background-repeat: no-repeat; }
.sub-service-frame:hover { filter: brightness(1.12) saturate(1.06); }
.sub-service-kicker { font-family: 'Google Sans Code', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--sub-red); }
.sub-service-title { font-family: Figtree, sans-serif; font-weight: 700; font-size: 28px; line-height: 1.18; letter-spacing: -0.02em; color: var(--ink); margin: 10px 0 0; }
.sub-service-body { font-family: Figtree, sans-serif; font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 520px; margin: 14px 0 0; }

.sub-process { background: var(--ink); padding: 104px 40px; }
.sub-process-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.sub-process-motif { font-family: 'Instrument Serif', serif; font-size: 22px; letter-spacing: 0.6em; color: var(--sub-gold); margin-bottom: 14px; }
.sub-process-title { font-family: Figtree, sans-serif; font-weight: 800; font-size: 76px; line-height: 1.02; letter-spacing: -0.03em; color: #FFFDF7; margin: 0; }
.sub-process-tag { display: inline-block; margin-top: 12px; background: var(--sub-red); color: #FFFDF7; font-family: 'Instrument Serif', serif; font-size: 58px; line-height: 1.12; padding: 4px 34px; border-radius: 5px; transform: rotate(-1.2deg); }
.sub-process-sub { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.7; color: rgba(255,253,247,0.92); max-width: 520px; margin: 30px auto 0; }
.sub-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 138px), 1fr)); gap: 18px; margin-top: 56px; text-align: left; }
.sub-process-card { background: var(--home-gold); border: 1px solid rgba(255,255,255,0.35); border-radius: 6px; padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease; }
.sub-process-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(10,18,14,0.28); }
.sub-process-card-icon { width: 46px; height: 46px; flex: none; border-radius: 999px; border: 1.5px solid var(--ink); color: var(--ink); display: grid; place-items: center; font-family: 'Google Sans Code', monospace; font-size: 13px; }
.sub-process-card-title { font-family: Figtree, sans-serif; font-weight: 700; font-size: clamp(15px, 1.6vw, 22px); line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); overflow-wrap: anywhere; margin: 0; }
.sub-process-card-body { font-family: Figtree, sans-serif; font-size: 13.5px; line-height: 1.65; color: var(--ink); margin: 0; }

.sub .faq { background: var(--cream); border-top: 1px solid var(--cream-border-2); }

/* --- Gallery page --- */
.gallery-hero { background: #FFFFFF; padding: 84px 40px 40px; text-align: center; }
.gallery-hero-inner { max-width: 1200px; margin: 0 auto; }
.gallery-kicker { font-family: 'Google Sans Code', monospace; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sub-red); }
.gallery-title { font-family: 'Instrument Serif', serif; font-size: 76px; line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin-top: 14px; }
.gallery-rule { height: 2px; background: var(--ink); max-width: 620px; margin: 18px auto 0; }
.gallery-lede { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 560px; margin: 20px auto 0; }

.gallery-grid { background: #FFFFFF; padding: 20px 40px 104px; }
.gallery-grid-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.gallery-card { margin: 0; flex: 0 1 360px; min-width: min(100%, 300px); background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: 5px; overflow: hidden; transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,40,33,0.18); }
.gallery-card-img { aspect-ratio: 4 / 3; background-size: cover; background-repeat: no-repeat; transition: background-size 600ms cubic-bezier(.22,.7,.2,1); }
.gallery-card:hover .gallery-card-img { background-size: 112%; }
.gallery-caption { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; font-family: Figtree, sans-serif; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.gallery-caption span:last-child { font-family: 'Google Sans Code', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub-red); }

/* --- Product Guide page --- */
.pg-hero { position: relative; height: 420px; background: #0E1A2B; overflow: hidden; }
.pg-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.pg-hero-scrim { position: absolute; inset: 0; background: linear-gradient(rgba(10,18,32,0.62) 0%, rgba(10,18,32,0.3) 45%, rgba(10,18,32,0.72) 100%); }
.pg-hero-box { position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%); width: min(1000px, 88%); text-align: center; }
.pg-hero-title { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 76px; line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; color: #FFFDF7; text-shadow: 0 2px 18px rgba(6,12,22,0.7); }
.pg-hero-rule { height: 2px; background: #FFFDF7; max-width: 620px; margin: 18px auto 0; }

.pg-featured { background: var(--cream); padding: 0 0 72px; overflow: hidden; }
.pg-marquee { height: 58px; display: flex; align-items: center; overflow: hidden; background: var(--cream); border-bottom: 1px solid #EADFC8; }
.pg-marquee-inner { display: flex; width: max-content; animation: storzmarquee 34s linear infinite; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 30px; color: var(--sub-red); }
.pg-marquee-inner span { padding-right: 36px; white-space: nowrap; flex: none; }
.pg-featured-grid { max-width: 1000px; margin: 0 auto; padding: 56px 40px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 48px; align-items: center; }
.pg-featured-img { position: relative; border-radius: 5px; overflow: hidden; aspect-ratio: 4/5; background-size: cover; background-position: center; background-repeat: no-repeat; }
.pg-featured-img-cap { position: absolute; left: 16px; bottom: 16px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 20px; color: #FFFDF7; text-shadow: 0 2px 10px rgba(6,12,22,0.7); }
.pg-featured-img-cap small { display: block; font-family: Figtree, sans-serif; font-style: normal; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.pg-featured-kicker { font-family: Figtree, sans-serif; font-weight: 800; font-size: 40px; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); text-transform: uppercase; }
.pg-featured-name { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 30px; color: var(--sub-red); margin-top: 8px; }
.pg-featured-body { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 460px; margin-top: 16px; border-bottom: 1px solid #DCD2BB; padding-bottom: 18px; }
.pg-featured-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.pg-band { position: relative; height: 460px; background: #0E1A2B; overflow: hidden; }
.pg-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.pg-band-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,18,32,0.55) 0%, rgba(10,18,32,0.15) 55%, rgba(10,18,32,0.35) 100%); }
.pg-band-card { position: absolute; left: 6%; top: 50%; transform: translateY(-50%); background: var(--cream-card); padding: 26px 30px; border-radius: 3px; max-width: 280px; }
.pg-band-card .l1, .pg-band-card .l3 { font-family: Figtree, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.2; color: var(--ink); }
.pg-band-card .l2 { font-family: Figtree, sans-serif; font-weight: 500; font-size: 34px; line-height: 1.05; color: var(--ink); }
.pg-band-card .l4 { font-family: Figtree, sans-serif; font-weight: 800; font-size: 60px; line-height: 1; letter-spacing: -0.03em; color: var(--sub-red); }


.pg-colors { background: var(--cream); padding: 96px 40px; }
.pg-colors-inner { max-width: 900px; margin: 0 auto; }
.pg-colors-title { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 48px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); text-align: center; }
.pg-colors-lede { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 560px; margin: 16px auto 0; text-align: center; }
.pg-whites-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 44px; align-items: center; margin-top: 52px; }
.pg-whites-grid img { width: 100%; height: auto; border-radius: 6px; background: #0A0A0A; }
.pg-whites-heading { font-family: Figtree, sans-serif; font-weight: 800; font-size: 34px; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); }
.pg-rule-short { height: 2px; background: var(--sub-red); width: 64px; margin-top: 14px; }
.pg-whites-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.pg-white-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--cream-border-2); }
.pg-dot { width: 18px; height: 18px; border-radius: 999px; display: block; }
.pg-white-row .pg-white-name { font-family: Figtree, sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink); }
.pg-white-row .pg-white-body { font-family: Figtree, sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-top: 4px; }

.pg-white-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 24px; margin-top: 40px; }
.pg-white-photo-fig { margin: 0; }
.pg-white-photo-fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; background: #0A0A0A; }
.pg-white-photo-cap { display: flex; align-items: center; gap: 9px; margin-top: 10px; font-family: Figtree, sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.pg-white-photo-cap .pg-dot { width: 14px; height: 14px; box-shadow: 0 0 0 1px rgba(26,40,33,0.15) inset; }

.pg-color-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 44px; align-items: center; margin-top: 64px; }
.pg-color-grid img { width: 100%; max-width: 460px; height: auto; margin: 0 auto; mix-blend-mode: multiply; }
.pg-color-lede { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.75; color: var(--muted); margin-top: 20px; }
.pg-color-dots { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pg-color-dot { width: 22px; height: 22px; border-radius: 999px; display: block; }

.pg-patterns { background: #FFFFFF; padding: 96px 40px; }
.pg-patterns-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pg-patterns-title { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 40px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.pg-patterns-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 32px; margin-top: 44px; }
.pg-pattern-card { background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: 5px; padding: 24px 20px; transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease; }
.pg-pattern-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(26,40,33,0.14); }
.pg-pattern-dots { display: flex; gap: 6px; justify-content: center; }
.pg-pattern-dot { width: 12px; height: 12px; border-radius: 999px; display: block; }
.pg-pattern-name { font-family: Figtree, sans-serif; font-weight: 800; font-size: 24px; line-height: 1.1; text-transform: uppercase; color: var(--ink); margin-top: 18px; }
.pg-pattern-body { font-family: Figtree, sans-serif; font-size: 14px; line-height: 1.65; color: var(--muted); margin-top: 8px; }
.pg-patterns-actions { display: flex; justify-content: center; margin-top: 40px; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-family: Figtree, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; border-radius: 5px;
  background: transparent; color: var(--sub-red); border: 1.5px solid var(--sub-red);
  transition: background-color 260ms ease, color 260ms ease;
}
.btn-outline:hover { background: var(--sub-red); color: #FFFDF7; }

.pg-rooflines { background: #FFFFFF; padding: 0 40px 96px; }
.pg-rooflines-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.pg-rooflines-title { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 48px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.pg-rooflines-lede { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 620px; margin: 16px auto 0; }
.pg-rooflines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 18px; margin-top: 40px; }
.pg-roofline-photo { aspect-ratio: 4/3; border-radius: 5px; background-size: cover; background-repeat: no-repeat; transition: background-size 600ms cubic-bezier(.22,.7,.2,1); }
.pg-roofline-photo:hover { background-size: 110%; }

.pg-yard { background: var(--ink); padding: 96px 40px; }
.pg-yard-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.pg-yard-title { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 48px; letter-spacing: 0.02em; text-transform: uppercase; color: #FFFDF7; }
.pg-yard-lede { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.75; color: rgba(255,253,247,0.88); max-width: 620px; margin: 16px auto 0; }
.pg-yard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 18px; margin-top: 40px; }
.pg-yard-card { background: #22332B; border: 1px solid rgba(246,228,200,0.2); border-radius: 5px; padding: 18px; text-align: left; transition: transform 260ms cubic-bezier(.22,.7,.2,1); }
.pg-yard-card:hover { transform: translateY(-5px); }
.pg-yard-frame { aspect-ratio: 4/3; border-radius: 4px; background: repeating-linear-gradient(45deg, #2B3D33 0 6px, #24342C 6px 12px); border: 1px dashed rgba(246,228,200,0.4); display: grid; place-items: center; font-family: 'Google Sans Code', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(246,228,200,0.7); }
.pg-yard-name { font-family: Figtree, sans-serif; font-weight: 700; font-size: 19px; color: #FFFDF7; margin-top: 16px; }
.pg-yard-body { font-family: Figtree, sans-serif; font-size: 14px; line-height: 1.65; color: rgba(255,253,247,0.84); margin-top: 6px; }

/* --- Free Quote page --- */
.fq-hero { background: #FFFFFF; padding: 84px 40px 104px; }
.fq-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 56px; align-items: start; }
.fq-kicker { font-family: 'Google Sans Code', monospace; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sub-red); }
.fq-title { font-family: 'Instrument Serif', serif; font-size: 52px; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin-top: 14px; }
.fq-lede { font-family: Figtree, sans-serif; font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 460px; margin-top: 18px; }
.fq-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 38px; }
.fq-step { display: flex; gap: 16px; align-items: flex-start; }
.fq-step-n { width: 38px; height: 38px; flex: none; border-radius: 999px; border: 1.5px solid var(--sub-red); color: var(--sub-red); display: grid; place-items: center; font-family: 'Google Sans Code', monospace; font-size: 12px; }
.fq-step-title { font-family: Figtree, sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); }
.fq-step-body { font-family: Figtree, sans-serif; font-size: 14.5px; line-height: 1.65; color: var(--muted); margin-top: 4px; }
.fq-call-card { margin-top: 38px; padding: 22px; background: var(--cream); border-radius: 5px; }
.fq-call-script { font-family: Caveat, cursive; font-size: 30px; color: var(--sub-red); line-height: 1; }
.fq-call-body { font-family: Figtree, sans-serif; font-size: 15px; line-height: 1.7; color: var(--muted); margin-top: 6px; }

.fq-form-card { background: var(--cream-card); border: 1px solid var(--cream-border); border-radius: 5px; padding: 30px; }
.fq-success { display: flex; flex-direction: column; gap: 12px; padding: 30px 6px; text-align: center; }
.fq-success-title { font-family: 'Instrument Serif', serif; font-size: 36px; line-height: 1.12; color: var(--ink); }
.fq-success-body { font-family: Figtree, sans-serif; font-size: 15.5px; line-height: 1.7; color: var(--muted); }

.fq-form { display: flex; flex-direction: column; gap: 18px; }
.fq-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 16px; }
.fq-label { display: flex; flex-direction: column; gap: 8px; font-family: Figtree, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fq-input {
  width: 100%; font-family: Figtree, sans-serif; font-size: 15px; font-weight: 400; color: var(--ink); background: #FFFFFF;
  border: 1px solid var(--cream-border); border-radius: 5px; padding: 12px 14px; transition: border-color 200ms ease;
}
.fq-interests-label { font-family: Figtree, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fq-interests { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.fq-chip {
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-family: Figtree, sans-serif; font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--cream-border); background: #FFFFFF; color: var(--ink);
  transition: all 220ms ease;
}
.fq-chip input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.fq-chip:has(input:checked), .fq-chip.is-checked { border-color: var(--sub-red); background: var(--sub-red); color: #FFFDF7; }
.fq-submit {
  cursor: pointer; text-align: center; border: none; font-family: Figtree, sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 28px; background: var(--sub-red); color: #FFFDF7; border-radius: 5px;
  transition: transform 260ms cubic-bezier(.22,.7,.2,1), box-shadow 260ms ease;
}
.fq-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26,40,33,0.28); }
.fq-submit:active { transform: translateY(1px) scale(0.985); }
.fq-fineprint { font-family: Figtree, sans-serif; font-size: 12.5px; line-height: 1.6; color: var(--muted-2); }

/* =======================================================================
   RESPONSIVE
======================================================================= */
@media (max-width: 680px) {
  .why-title, .home .faq-head { font-size: 42px; }
  .process-title, .sub-process-title { font-size: 40px; }
  .process-tag, .sub-process-tag { font-size: 30px; padding: 4px 20px; }
  .services-head { font-size: 44px; }
  .cta-title, .sub-footer-title { font-size: 34px; }
  .founder-name { font-size: 38px; }
  .gallery-title { font-size: 48px; }
  .pg-hero-title { font-size: 44px; }
  .fq-title { font-size: 36px; }
}
