/* ==========================================================================
   Brower Road Sugarhouse - shared stylesheet
   Design system extracted from the Wix source (tokens, chrome, motion).
   Page subagents may only APPEND rules below, each under a banner comment
   whose text is "page:" followed by the page slug. Do not edit this section.
   Google fonts are loaded per page via a <link> tag in each page head.
   ========================================================================== */

:root {
  --cream: #f1eee8;
  --cream-2: #e9e5dc;
  --white: #ffffff;
  --brown: #6a3a12;
  --brown-dark: #552e0d;
  --gold: #d3a01c;
  --gold-soft: #e0a52e;
  --heading: #46300f;
  --eyebrow: #c8951e;
  --text: #454545;
  --muted: #6b6b6b;
  --dark-band: #141210;
  --footer: #5c4a0e;
  --footer-line: rgba(255, 255, 255, 0.18);
  --footer-bottom: #d3a01c;
  --border: #d8d2c7;
  --serif: "Merriweather", Georgia, "Times New Roman", serif;
  --sans: "Mulish", "Segoe UI", Helvetica, Arial, sans-serif;
  --maxw: 1180px;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brown); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--heading);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brown);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --- buttons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  padding: 13px 26px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.btn-brown { background: var(--brown); color: #fff; }
.btn-brown:hover { background: var(--brown-dark); color: #fff; }
.btn-gold { background: var(--gold); color: #3a2708; }
.btn-gold:hover { background: var(--gold-soft); color: #3a2708; }
.btn-block { display: block; width: 100%; }

/* --- header / nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 108px;
}
.brand img { height: 103px; width: auto; }
.brand { display: inline-flex; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--brown);
  cursor: pointer;
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--serif);
  font-size: .92rem;
  color: #3b3b3b;
  font-weight: 700;
  padding: 6px 2px;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--gold); text-decoration: none; }
.main-nav a.active { color: var(--gold); }
.main-nav .nav-shop a,
.main-nav .nav-shop a:hover {
  color: #fff;
  background: var(--brown);
  padding: 10px 24px;
  border-radius: 40px;
}
.main-nav .nav-shop a:hover { background: var(--brown-dark); }

/* --- section scaffolding ------------------------------------------------- */
.section { padding: 84px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--dark-band); color: #efe7db; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .78rem;
  color: var(--eyebrow);
  margin: 0 0 10px;
}
.leaf-deco {
  width: 46px;
  height: auto;
  margin: 0 auto 14px;
}
.sec-title { font-size: 2.1rem; color: var(--heading); margin: 0 0 14px; }
.sec-sub { color: var(--text); margin: 0; }

/* --- split (image + text) ----------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split__body .eyebrow { text-align: left; }
.split__body h2 { font-size: 2rem; }

/* --- full-bleed band photo ---------------------------------------------- */
.band {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* --- full-bleed autoplaying video band --------------------------------- */
.video-band {
  position: relative;
  width: 100%;
  height: 555px;
  overflow: hidden;
  background: var(--dark-band);
}
.video-band__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media (max-width: 900px) { .video-band { height: 420px; } }
@media (max-width: 600px) { .video-band { height: 300px; } }

/* --- footer -------------------------------------------------------------- */
.site-footer {
  background: var(--footer);
  color: #efe6cf;
}
.site-footer a { color: #efe6cf; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding: 64px 0 44px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .f-house {
  width: 44px; height: 44px; flex: 0 0 auto;
}
.footer-logo .f-name { font-family: var(--serif); line-height: 1.1; }
.footer-logo .f-name b { display: block; color: #fff; font-size: 1.25rem; }
.footer-logo .f-name span { color: var(--gold-soft); font-size: .92rem; }
.footer-col h4 {
  font-family: var(--serif);
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.footer-col h4 + .rule { width: 40px; height: 2px; background: var(--gold-soft); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-row svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 4px; fill: var(--gold-soft); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--footer-line);
  display: inline-flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: rgba(255,255,255,.1); }
.social-row svg { width: 18px; height: 18px; fill: #fff; }
.footer-badge { margin-top: 14px; }
.footer-badge img { width: 74px; height: 74px; }
.subscribe input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 4px;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: .9rem;
}
.subscribe .btn { display: block; width: 100%; border-radius: 4px; }
.footer-bottom {
  background: var(--footer-bottom);
  color: #4a3708;
  text-align: center;
  padding: 12px 0;
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }

/* off-screen honeypot for spam protection (visible layout untouched) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- motion -------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes leafBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* On-load entrance: animation always runs and fill-mode:both leaves the
   element visible at its end state, so content is never hidden if anything
   fails. No static opacity:0 rule exists anywhere in this file. */
.animate { animation: fadeUp .8s ease both; }
.animate-d1 { animation: fadeUp .8s ease .12s both; }
.animate-d2 { animation: fadeUp .8s ease .24s both; }
.animate-d3 { animation: fadeUp .8s ease .36s both; }
.leaf-deco { animation: leafBob 4.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split__media img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-header .container { min-height: 88px; }
  .brand img { height: 72px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 2px; padding: 0 24px; }
  .main-nav li { width: 100%; }
  .main-nav .nav-shop { margin-top: 8px; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .sec-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* page: home ============================================================== */
.hero-home {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 9s ease both;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,14,8,.72) 0%, rgba(20,14,8,.5) 45%, rgba(20,14,8,.15) 100%);
  z-index: 1;
}
.hero-home .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 90px; }
.hero-home h1 {
  color: #fff;
  font-size: 2.9rem;
  max-width: 620px;
  margin: 0 0 18px;
}
.hero-home p { color: #f3ece1; font-size: 1.12rem; max-width: 520px; margin: 0 0 28px; }
.hero-home .hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; width: 100%; display: block; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prod-card {
  border: 2px dashed var(--brown);
  border-radius: 8px;
  padding: 22px 20px;
  background: transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.prod-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.6); box-shadow: var(--shadow); }
.prod-card h3 { font-size: 1.15rem; color: var(--brown); margin: 0 0 8px; }
.prod-card p { font-size: .92rem; color: var(--text); margin: 0 0 12px; }
.prod-card a.read { font-family: var(--serif); font-weight: 700; color: var(--brown); font-size: .85rem; }
.center-cta { text-align: center; margin-top: 46px; }

.grades-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grades-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 62px 20px; padding-top: 42px; }
.grade-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 58px 20px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.grade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.grade-card .g-icon {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 84px;
  display: block;
}
.grade-card h3 { font-size: 1.02rem; color: var(--brown); margin: 0 0 8px; }
.grade-card p { font-size: .88rem; margin: 0; }
.grades-img img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }

.trust-list { margin-top: 8px; }
.trust-item { margin-bottom: 16px; }
.trust-item .trust-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.trust-item .trust-label { font-size: .92rem; color: var(--text); }
.trust-item .trust-pct { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: .95rem; }
.trust-track { height: 8px; background: #e4ddd0; border-radius: 6px; overflow: hidden; }
.trust-fill { height: 100%; background: var(--gold); border-radius: 6px; }

.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tcard {
  background: var(--gold);
  color: #4a3708;
  border-radius: 10px;
  padding: 26px 24px 30px;
  position: relative;
  text-align: center;
}
.tcard::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--gold);
}
.tcard p.quote { color: #fff; font-size: .96rem; margin: 0 0 16px; }
.tcard .tname { font-family: var(--serif); font-weight: 700; color: #4a3708; font-size: .95rem; }
.tcard .qmark { font-family: var(--serif); font-size: 2.4rem; line-height: 0; color: #4a3708; opacity: .5; }

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .grades-wrap { grid-template-columns: 1fr; gap: 30px; }
  .tgrid { grid-template-columns: 1fr; }
  .hero-home h1 { font-size: 2.2rem; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
  .grades-grid { grid-template-columns: 1fr; }
}

/* page: interior-shared =================================================== */
.hero-interior {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-interior__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-interior::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 6, .78);
  z-index: 1;
}
/* video hero — the source darkens it only half as much as the photo heroes */
.hero-interior--video { background: #111; min-height: 500px; }
.hero-interior--video::after { background: rgba(17, 17, 17, .5); }
.hero-interior .container { position: relative; z-index: 2; padding: 60px 24px; }
.hero-interior h1 { color: #fff; font-size: 2.7rem; margin: 0 0 14px; }
.hero-interior p { color: #f0e9dd; font-size: 1.08rem; max-width: 620px; margin: 0 auto; }

/* page: about ============================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 20px;
}
.step { text-align: center; position: relative; }
.step__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(211,160,28,.14);
}
.step__icon img { width: 42px; height: 42px; display: block; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 39px;
  left: calc(50% + 55px);
  width: calc(100% - 110px);
  border-top: 3px dotted var(--gold);
  z-index: 0;
}
.step h3 { font-size: 1.1rem; color: var(--brown); margin: 0 0 8px; }
.step p { font-size: .9rem; margin: 0; }

.cta-band { text-align: center; }
.cta-band--photo { position: relative; background: #111; overflow: hidden; }
.cta-band--photo .cta-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .47;
  z-index: 0;
}
.cta-band--photo .container { position: relative; z-index: 1; }
.cta-band .leaf-deco { margin-bottom: 16px; }
.cta-band h2 { font-size: 2.1rem; max-width: 760px; margin: 0 auto 14px; }
.cta-band p { max-width: 640px; margin: 0 auto 26px; color: #e9e0d2; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .hero-interior h1 { font-size: 2rem; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* page: products ========================================================= */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pcard__img { width: 100%; height: 210px; object-fit: cover; }
.pcard__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.pcard__body h3 { font-size: 1.25rem; color: #2f2415; margin: 0 0 10px; }
.pcard__body p { font-size: .92rem; margin: 0 0 12px; }
.pcard__body .btn { margin-top: auto; align-self: flex-start; }
.prose-center { max-width: 820px; margin: 0 auto; text-align: center; }
.prose-center p { color: var(--text); }

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

/* page: maple-weekend ==================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
  max-width: 960px;
  margin: 0 auto;
}
.feat { text-align: center; }
.feat__icon { margin-bottom: 10px; height: 52px; display: flex; align-items: flex-end; justify-content: center; }
.feat__icon img { max-width: 52px; max-height: 52px; width: auto; height: auto; display: block; }
.feat h3 { font-size: 1.12rem; color: var(--brown); margin: 0 0 10px; }
.feat p { font-size: .92rem; margin: 0; }
.feat--offset { max-width: 640px; margin: 34px auto 0; grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .feat-grid, .feat--offset { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feat-grid, .feat--offset { grid-template-columns: 1fr; }
}

/* page: contact ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .eyebrow { text-align: left; }
.contact-info > h2 { font-size: 2rem; margin: 0 0 16px; }
.contact-line { display: flex; gap: 18px; align-items: center; margin: 26px 0; }
.contact-line .ci-icon {
  width: 58px; height: 58px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(211,160,28,.14);
}
.contact-line .ci-icon svg { width: 24px; height: 24px; fill: var(--gold-soft); }
.contact-line h3 { font-size: 1.15rem; color: #2f2415; margin: 0 0 2px; }
.contact-line p { margin: 0; }

.contact-card {
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  padding: 40px 38px 44px;
}
.contact-card h2 { color: #fff; font-size: 2.3rem; margin: 0 0 16px; }
.contact-card > p { color: #fff8ec; margin: 0 0 22px; }
.contact-card label { display: block; color: #fff; font-size: .9rem; margin: 16px 0 6px; }
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.75);
  background: transparent;
  color: #fff;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .95rem;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: rgba(255,255,255,.7); }
.contact-card textarea { min-height: 120px; resize: vertical; }
.contact-card .btn { margin-top: 22px; }

#contact-map {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  margin-top: 8px;
  z-index: 0;
}
.map-band { background: var(--cream-2); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-card h2 { font-size: 1.9rem; }
}
