/* =========================================================
   Heritage Standard Co. — Heritage Americana
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette (derived from the badge logo) */
  --black:        #0F0F0F;
  --black-2:      #1A1A1A;
  --charcoal:     #2A2A2A;
  --gold:         #C69D4A;
  --gold-bright:  #D9B266;
  --gold-deep:    #A77F32;
  --cream:        #F4EDE0;
  --cream-2:      #EFE6D2;
  --burgundy:     #5B1A1A;
  --navy:         #1A2942;

  /* Semantic */
  --bg-dark:      var(--black);
  --bg-cream:     var(--cream);
  --text-cream:   var(--cream);
  --text-dark:    var(--charcoal);
  --accent:       var(--gold);

  /* Typography */
  --font-display: "Cinzel", Georgia, serif;
  --font-accent:  "Playfair Display", Georgia, serif;
  --font-body:    "Lora", Georgia, serif;

  /* Type scale */
  --text-xs:   clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --text-sm:   clamp(0.84rem, 0.82rem + 0.15vw, 0.92rem);
  --text-base: clamp(1rem, 0.97rem + 0.18vw, 1.08rem);
  --text-lg:   clamp(1.18rem, 1.1rem + 0.4vw, 1.4rem);
  --text-xl:   clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  --text-2xl:  clamp(2rem, 1.6rem + 1.9vw, 3rem);
  --text-hero: clamp(2.6rem, 1.9rem + 3.4vw, 5rem);

  /* Spacing */
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --maxw: 1200px;
  --radius: 4px;
  --shadow-card: 0 14px 40px rgba(0,0,0,0.12);
  --shadow-card-dark: 0 18px 50px rgba(0,0,0,0.5);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Paper grain texture (cream sections) ---------- */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.grain > * { position: relative; z-index: 1; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); position: relative; }

/* ---------- Eyebrow / small caps label ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow--light { color: var(--gold-bright); }
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}

/* ---------- Headings ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
.section-title {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
  letter-spacing: 0.01em;
}

/* ---------- Ornamental divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-inline: auto;
  max-width: 360px;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), var(--gold) 40%, transparent); }
.ornament svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.ornament--light::before { background: linear-gradient(90deg, transparent, var(--gold-deep) 60%, var(--gold)); }
.ornament--light::after  { background: linear-gradient(90deg, var(--gold), var(--gold-deep) 40%, transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(198,157,74,0.28);
}
.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198,157,74,0.42);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,237,224,0.45);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--outline-dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 0.7rem;
}
.header.scrolled {
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(198,157,74,0.25);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(198,157,74,0.45);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand__badge { transform: scale(1.04); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
  display: none;
}
.brand__name span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 600;
}
@media (min-width: 1280px) {
  .brand__name { display: inline-block; }
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  position: relative;
  padding-block: 0.3em;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 1.25rem; }
.header__phone {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.header__phone svg { width: 15px; height: 15px; }
.header .btn { padding: 0.7em 1.3em; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  color: var(--cream);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.62) 42%, rgba(10,10,10,0.22) 100%),
    url("assets/photos/mobile-cart-black.jpeg");
  background-size: cover;
  background-position: center right;
  padding-top: 90px;
}
.hero__content { max-width: 640px; color: var(--cream); }
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 700;
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(244,237,224,0.92);
  max-width: 540px;
  margin-bottom: var(--space-8);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__services {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: rgba(244,237,224,0.7);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: var(--space-12); }
.section-head p.lead {
  margin-top: var(--space-4);
  color: var(--text-dark);
  opacity: 0.82;
  font-size: var(--text-lg);
}

/* ---------- What We Do — division cards ---------- */
.section--services { background: var(--cream); }
.divisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.division-card {
  background: #FBF7EE;
  border: 1px solid rgba(198,157,74,0.4);
  border-radius: var(--radius);
  padding: var(--space-8);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.division-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.division-card:hover::after { transform: scaleX(1); }
/* vintage corner ornaments */
.division-card .corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  opacity: 0.55;
}
.division-card .corner.tl { top: 10px; left: 10px; border-top: 1.5px solid; border-left: 1.5px solid; }
.division-card .corner.br { bottom: 10px; right: 10px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.division-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(198,157,74,0.12);
  border: 1px solid rgba(198,157,74,0.4);
  margin-bottom: var(--space-4);
}
.division-card__icon svg { width: 24px; height: 24px; color: var(--gold-deep); stroke-width: 1.6; }
.division-card h3 {
  font-size: var(--text-lg);
  color: var(--black-2);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.division-card p { font-size: var(--text-base); opacity: 0.85; margin-bottom: var(--space-4); }
.arrow-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.arrow-link:hover { gap: 0.8em; color: var(--burgundy); }

/* ---------- We Grow With You (dark) ---------- */
.section--grow {
  background: var(--black);
  color: var(--cream);
  text-align: center;
}
.grow__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 1.4;
  max-width: 820px;
  margin: var(--space-6) auto var(--space-16);
  color: var(--cream);
}
.grow__quote .accent { color: var(--gold-bright); }
.grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  text-align: left;
}
.grow-step { position: relative; }
.grow-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.85;
}
.grow-step h3 {
  font-size: var(--text-lg);
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
}
.grow-step p { color: rgba(244,237,224,0.8); }

/* ---------- Featured Work ---------- */
.section--work { background: var(--cream-2); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(42,42,42,0.12);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.work-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--black-2);
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card__body { padding: var(--space-4) var(--space-6) var(--space-6); }
.work-card__tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.4rem;
}
.work-card__body h3 { font-size: var(--text-base); color: var(--black-2); line-height: 1.3; font-weight: 600; }
.work-foot { text-align: center; margin-top: var(--space-12); }
.work-foot .arrow-link { font-size: var(--text-base); }

/* ---------- About / Why Heritage ---------- */
.section--about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, var(--space-20));
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.about-media .frame {
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0.5;
}
.about-media .stamp {
  position: absolute;
  bottom: -22px; right: -14px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: var(--shadow-card-dark);
}
.about-body h2 { font-size: var(--text-2xl); color: var(--black-2); margin-top: var(--space-3); }
.about-body p { margin-top: var(--space-4); font-size: var(--text-base); }
.about-body .pull {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-4);
  margin-top: var(--space-6);
  line-height: 1.5;
}

/* ---------- Testimonials ---------- */
.section--testimonials { background: var(--black-2); color: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.testi-card {
  background: var(--cream);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: var(--space-12) var(--space-8) var(--space-8);
  position: relative;
  box-shadow: var(--shadow-card-dark);
}
.testi-card .quote-mark {
  position: absolute;
  top: 0.2rem; left: 1.4rem;
  font-family: var(--font-accent);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.75;
}
.testi-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.55;
}
.testi-card cite {
  display: block;
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--gold-deep);
}
.testi-card cite span { color: var(--charcoal); opacity: 0.6; font-weight: 400; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border: 1px solid rgba(198,157,74,0.18);
  border-radius: 50%;
}
.cta-banner::before { top: -120px; left: -80px; }
.cta-banner::after { bottom: -140px; right: -90px; width: 340px; height: 340px; }
.cta-banner h2 {
  font-size: var(--text-2xl);
  color: var(--cream);
  margin-top: var(--space-4);
  max-width: 720px;
  margin-inline: auto;
}
.cta-banner h2 em { font-family: var(--font-accent); font-style: italic; color: var(--gold-bright); font-weight: 500; }
.cta-banner p { margin: var(--space-4) auto var(--space-8); max-width: 560px; color: rgba(244,237,224,0.85); font-size: var(--text-lg); }

/* ---------- Footer ---------- */
.footer { background: #0A0A0A; color: rgba(244,237,224,0.78); padding-top: var(--space-20); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
}
.footer__badge { width: 80px; height: 80px; border-radius: 50%; border: 1px solid rgba(198,157,74,0.4); margin-bottom: var(--space-4); }
.footer__tagline { font-family: var(--font-accent); font-style: italic; font-size: var(--text-lg); color: var(--gold-bright); }
.footer__loc { margin-top: var(--space-3); font-size: var(--text-sm); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-display); }
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.footer li { margin-bottom: 0.6rem; font-size: var(--text-sm); }
.footer li a { transition: color 0.3s var(--ease); }
.footer li a:hover { color: var(--gold-bright); }
.footer__contact a { display: flex; align-items: center; gap: 0.6em; }
.footer__contact svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.footer__social { display: flex; gap: 0.8rem; margin-top: var(--space-6); }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(198,157,74,0.4);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid rgba(198,157,74,0.18);
  padding-block: var(--space-6);
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: rgba(244,237,224,0.55);
  font-family: var(--font-display);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream);
  letter-spacing: 0.1em;
}
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu .btn { margin-top: var(--space-4); }

/* ---------- Responsive ---------- */
/* Hide phone earlier than nav to avoid crowding */
@media (max-width: 1140px) {
  .header__phone { display: none; }
}
@media (max-width: 980px) {
  .divisions { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 760px) {
  .grow-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .about-body { order: 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero {
    min-height: 82vh;
    background-image:
      linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 100%),
      url("assets/photos/mobile-cart-black.jpeg");
    background-position: center 30%;
  }
  .brand__name { display: none; }
}
@media (max-width: 520px) {
  .divisions { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- Hero italic subhead ---------- */
.hero__sub--italic {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-top: -0.25rem;
  max-width: 620px;
}
@media (min-width: 768px) {
  .hero__sub--italic { font-size: 1.15rem; }
}

/* ---------- Section supporting subhead ---------- */
.section-sub {
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4a4741;
  max-width: 620px;
  margin: 0.75rem auto 0;
  text-align: center;
}

/* ---------- OUR MISSION section ---------- */
.section--mission {
  background: var(--cream);
  padding: 5rem 0 4.5rem;
  border-top: 1px solid rgba(198, 157, 74, 0.18);
  border-bottom: 1px solid rgba(198, 157, 74, 0.18);
}
.mission {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mission .eyebrow { justify-content: center; }
.mission p {
  font-family: "Lora", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #2a2825;
  margin: 0 0 1.25rem;
}
.mission p:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .section--mission { padding: 6rem 0 5.5rem; }
  .mission p { font-size: 1.2rem; }
}

/* ---------- WHAT WE HELP WITH section ---------- */
.section--help {
  background: #0F0F0F;
  padding: 4.5rem 0;
  position: relative;
}
.section--help::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(198, 157, 74, 0.06), transparent 60%);
  pointer-events: none;
}
.section--help .section-head { text-align: center; margin-bottom: 2rem; position: relative; z-index: 1; }
.help-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .help-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .help-list { grid-template-columns: 1fr 1fr; gap: 1rem 3rem; }
}
.help-list li {
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  color: var(--cream);
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid rgba(198, 157, 74, 0.15);
  position: relative;
}
.help-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-deep);
}

/* ---------- BRAND PROMISE section ---------- */
.section--promise {
  background: linear-gradient(180deg, #0B0B0B 0%, #141414 100%);
  padding: 5rem 0;
  position: relative;
  border-top: 1px solid rgba(198, 157, 74, 0.18);
  border-bottom: 1px solid rgba(198, 157, 74, 0.18);
}
.promise {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}
.promise__lead {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--gold-bright, #D4B168);
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
}
.promise__body {
  font-family: "Lora", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.85);
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .section--promise { padding: 6rem 0; }
  .promise__body { font-size: 1.2rem; }
}

/* ---------- SIX JOURNEY TILES ---------- */
.section--journey {
  background: var(--cream);
  padding: 5rem 0 5.5rem;
}
.tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 720px) {
  .tiles { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (min-width: 1080px) {
  .tiles { grid-template-columns: 1fr 1fr 1fr; }
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid rgba(198, 157, 74, 0.28);
  padding: 2rem 1.75rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tile:hover,
.tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(15, 15, 15, 0.12), 0 2px 8px rgba(198, 157, 74, 0.15);
  border-color: var(--gold);
  outline: none;
}
.tile:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.tile .corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.65;
  transition: opacity 0.3s var(--ease);
}
.tile .corner.tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.tile .corner.br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }
.tile:hover .corner { opacity: 1; }
.tile__icon {
  color: var(--gold-deep, #A87F2E);
  margin-bottom: 0.5rem;
}
.tile__icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin: 0.25rem 0 0;
  line-height: 1.2;
}
.tile__tag {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-style: italic;
  color: var(--gold-deep, #A87F2E);
  font-size: 0.98rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.tile p:not(.tile__tag) {
  font-family: "Lora", Georgia, serif;
  color: #3A3833;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}
.tile .arrow-link {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--gold-deep, #A87F2E);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
}
.tile:hover .arrow-link { color: var(--gold); }

/* ---------- REVIEWS empty-state ---------- */
.section--reviews {
  background: var(--cream);
  padding: 5rem 0;
}
.reviews-empty {
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(198, 157, 74, 0.3);
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
.reviews-empty::before,
.reviews-empty::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
}
.reviews-empty::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.reviews-empty::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.reviews-empty__lead {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #2A2825;
  margin: 0 0 1.25rem;
}
.reviews-empty p:not(.reviews-empty__lead):not(.reviews-empty__cta) {
  font-family: "Lora", Georgia, serif;
  color: #4a4741;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.reviews-empty__cta { margin: 1.5rem 0 0; }
.reviews-empty__cta .arrow-link { color: var(--gold-deep, #A87F2E); }

/* ---------- CTA banner two-button + note ---------- */
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.cta-banner__note {
  margin-top: 2rem;
  font-family: "Lora", Georgia, serif;
  font-size: 0.95rem;
  color: rgba(244, 237, 224, 0.7);
}
.cta-banner__note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 157, 74, 0.4);
}
.cta-banner__note a:hover { color: var(--gold-bright, #D4B168); }

.btn--outline-light {
  color: var(--cream);
  border-color: rgba(244, 237, 224, 0.4);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-bright, #D4B168);
  background: rgba(198, 157, 74, 0.08);
}

/* ============================================================
   DEPARTMENT PAGES
   Shared styles used by:
   business-launch.html, custom-builds.html, mobile-business.html,
   brand-identity.html, selling-spaces.html, business-support.html
   ============================================================ */

/* Page hero (compact — smaller than homepage hero) */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, #0d0906 0%, #1a1410 55%, #221a13 100%);
  color: var(--cream);
  padding: calc(var(--space-16) + 84px) 0 var(--space-16);
  overflow: hidden;
  border-bottom: 1px solid rgba(168, 127, 46, 0.25);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 127, 46, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(168, 127, 46, 0.12), transparent 50%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }

.page-hero__inner {
  max-width: 780px;
}
.page-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
  margin-bottom: var(--space-6);
}
.page-hero__crumbs a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-hero__crumbs a:hover { color: var(--cream); }
.page-hero__crumbs span[aria-hidden="true"] { opacity: 0.5; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}
.page-hero h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}
.page-hero__tag {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gold-bright);
  margin-bottom: var(--space-6);
  max-width: 620px;
  line-height: 1.4;
}
.page-hero__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.85);
  max-width: 640px;
}

/* Two-column intro on wider pages */
.dept-intro {
  padding: var(--space-16) 0;
  background: var(--cream);
}
.dept-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.dept-intro__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(168, 127, 46, 0.35);
  padding-top: 1rem;
}
.dept-intro__body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #2a221b;
  margin-bottom: 1.1rem;
}
.dept-intro__body p:last-child { margin-bottom: 0; }
.dept-intro__list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  gap: 0.75rem;
}
.dept-intro__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #2a221b;
}
.dept-intro__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--gold-deep);
  transform: rotate(45deg);
}

/* Gallery placeholder — honest empty state */
.section--gallery {
  padding: var(--space-16) 0;
  background: var(--cream-2, #f0e5cf);
}
.gallery-empty {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-12) var(--space-6);
  background: var(--cream);
  border: 1px solid rgba(168, 127, 46, 0.35);
  position: relative;
}
.gallery-empty::before,
.gallery-empty::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold-deep);
}
.gallery-empty::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.gallery-empty::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.gallery-empty__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-4);
  color: var(--gold-deep);
}
.gallery-empty__icon svg { width: 100%; height: 100%; }
.gallery-empty h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #1a1410;
  margin-bottom: 0.75rem;
}
.gallery-empty p {
  color: #4a3f34;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 0.75rem;
}

/* Projects placeholder */
.section--projects {
  padding: var(--space-16) 0;
  background: #1a1410;
  color: var(--cream);
}
.section--projects .section-title { color: var(--cream); }
.projects-empty {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.projects-empty p {
  color: rgba(244, 237, 224, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.projects-empty__lead {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-bright);
}

/* Dept contact CTA — a smaller cousin of the homepage cta-banner */
.section--dept-cta {
  background: var(--cream);
  padding: var(--space-16) 0;
  text-align: center;
  border-top: 1px solid rgba(168, 127, 46, 0.25);
}
.dept-cta__inner { max-width: 720px; margin: 0 auto; }
.dept-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1a1410;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.dept-cta h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.dept-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a3128;
  margin-bottom: var(--space-6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.dept-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 720px) {
  .page-hero { padding: calc(var(--space-12) + 76px) 0 var(--space-12); }
  .dept-intro__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .dept-intro__label { border-top: 1px solid rgba(168, 127, 46, 0.35); padding-top: 0.75rem; }
  .gallery-empty { padding: var(--space-8) var(--space-4); }
}

/* Active nav link on department pages */
.nav__link--active { color: var(--gold-bright); }
.nav__link--active::after { width: 100%; }
