/* ===========================================================
   GRANDPATH SUPPLY — DESIGN SYSTEM
   American Western · Earth Tones · Built with Heart
   =========================================================== */

/* --- CSS RESET ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- DESIGN TOKENS ------------------------------------- */
:root {
  /* Earth-tone palette */
  --bark:        #1a120b;   /* deepest text */
  --espresso:    #2a1d12;
  --saddle:      #5c3a21;   /* brand brown */
  --saddle-deep: #3e2818;
  --leather:     #8b5a2b;
  --rust:        #9c5b3f;
  --terracotta:  #b8624d;
  --sandstone:   #c9a875;
  --sand:        #e3cda0;
  --cream:       #f5e8d0;
  --cream-light: #faf2e1;
  --bone:        #fdf8ee;
  --sage:        #7a8b6f;
  --sage-deep:   #5d6e51;
  --sky:         #7997a8;
  --gold:        #c49a4a;
  --clay:        #a0522d;

  /* Semantic */
  --bg:          var(--cream-light);
  --bg-warm:     var(--cream);
  --bg-dark:     var(--espresso);
  --ink:         var(--bark);
  --ink-soft:    #4a3a2b;
  --muted:       #7a6852;
  --line:        #d8c4a4;
  --line-soft:   #ebdcc1;

  /* Type scale (clamp) */
  --fs-display:  clamp(3rem, 7vw + 0.5rem, 7.5rem);
  --fs-h1:       clamp(2.25rem, 4vw + 0.5rem, 4.5rem);
  --fs-h2:       clamp(1.75rem, 2.5vw + 0.5rem, 3rem);
  --fs-h3:       clamp(1.25rem, 1vw + 0.75rem, 1.75rem);
  --fs-h4:       clamp(1.05rem, 0.5vw + 0.75rem, 1.25rem);
  --fs-lead:     clamp(1.05rem, 0.4vw + 0.85rem, 1.35rem);
  --fs-body:     1rem;
  --fs-small:    0.875rem;
  --fs-tag:      0.75rem;

  /* Spacing scale */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.5rem;
  --s-6:  2rem;
  --s-7:  3rem;
  --s-8:  4.5rem;
  --s-9:  6rem;
  --s-10: 9rem;

  /* Layout */
  --container:    1240px;
  --container-pt: 8rem;
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(42, 29, 18, 0.08);
  --shadow:      0 4px 12px rgba(42, 29, 18, 0.10);
  --shadow-lg:   0 20px 40px -12px rgba(42, 29, 18, 0.25);
  --shadow-xl:   0 40px 60px -20px rgba(42, 29, 18, 0.35);
  --shadow-warm: 0 14px 30px -10px rgba(92, 58, 33, 0.30);

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --t-fast:     180ms;
  --t-base:     320ms;
  --t-slow:     600ms;
}

/* --- FONTS ------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&family=Rye&display=swap');

/* --- BODY BASE -------------------------------------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(184, 98, 77, 0.06), transparent),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(139, 90, 43, 0.05), transparent);
  overflow-x: hidden;
}

/* --- TYPOGRAPHY ------------------------------------- */
.display, h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.western {
  font-family: 'Rye', 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

.condensed {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: var(--fs-h4); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0; }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-tag);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--rust);
  display: inline-block;
}

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
}

/* --- LAYOUT ----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 10vw, 9rem) 0;
  position: relative;
}

.section--tight { padding: clamp(3rem, 7vw, 5rem) 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto var(--s-8);
  text-align: center;
}

.section-head .eyebrow { margin-bottom: var(--s-4); }
.section-head h2 { margin-bottom: var(--s-5); }
.section-head p { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); }

.section-head--left {
  margin: 0 0 var(--s-8);
  text-align: left;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

/* --- BUTTONS ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.95rem 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn::after {
  content: '\2192';
  font-family: 'Inter', sans-serif;
  transition: transform var(--t-base) var(--ease);
  margin-left: 0.25rem;
}
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
  background: var(--saddle);
  color: var(--cream-light);
  border-color: var(--saddle);
  box-shadow: var(--shadow-warm);
}
.btn--primary:hover {
  background: var(--bark);
  border-color: var(--bark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-light);
  border-color: rgba(245, 232, 208, 0.5);
}
.btn--ghost:hover {
  background: var(--cream-light);
  color: var(--bark);
}

.btn--rust {
  background: var(--rust);
  color: var(--cream-light);
  border-color: var(--rust);
}
.btn--rust:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--bark);
  border-color: var(--bark);
}
.btn--outline:hover {
  background: var(--bark);
  color: var(--cream-light);
}

/* --- NAVIGATION ------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--s-4) 0;
  transition: background-color var(--t-base) var(--ease),
              padding var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 242, 225, 0.95);
  backdrop-filter: blur(12px);
  padding: var(--s-2) 0;
  box-shadow: 0 6px 20px -8px rgba(42, 29, 18, 0.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
  font-family: 'Rye', serif;
  font-size: 1.45rem;
  color: var(--cream-light);
  letter-spacing: 0.02em;
  transition: color var(--t-base) var(--ease);
}
.brand__mark {
  width: 46px;
  height: 46px;
  flex: none;
  display: block;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__name {
  line-height: 1;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.brand__name small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--sand);
  margin-top: 4px;
  font-weight: normal;
}
.is-scrolled .brand { color: var(--bark); }

.nav__menu {
  display: flex;
  align-items: center;
  /* Preserve space for the phone and quote CTA on compact desktops. */
  gap: clamp(1rem, 1.5vw, var(--s-5));
  min-width: 0;
}
.nav__link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-light);
  position: relative;
  padding: var(--s-2) 0;
  white-space: nowrap;
  transition: color var(--t-base) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width var(--t-base) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--sand); }
.is-scrolled .nav__link { color: var(--ink); }
.is-scrolled .nav__link:hover { color: var(--rust); }

.nav__cta { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }

.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: var(--sand);
  white-space: nowrap;
  transition: color var(--t-base) var(--ease);
}
.nav__phone:hover { color: var(--cream-light); }
.is-scrolled .nav__phone { color: var(--saddle); }
.is-scrolled .nav__phone:hover { color: var(--rust); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream-light);
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease);
}
.is-scrolled .nav__toggle span { background: var(--bark); }
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO ------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s-9);
  padding-bottom: var(--s-8);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(26, 18, 11, 0.55) 0%, rgba(26, 18, 11, 0.7) 100%),
    url('../assets/images/hero-landscape.jpg') center/cover;
  background-color: var(--bark);
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196, 154, 74, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(184, 98, 77, 0.3) 0%, transparent 30%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-8);
  align-items: center;
  width: 100%;
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
  padding: var(--s-2) var(--s-4);
  border: 1px solid rgba(228, 205, 160, 0.35);
  margin-bottom: var(--s-6);
}
.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(184, 98, 77, 0.25);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream-light);
  margin-bottom: var(--s-6);
}
.hero__title em {
  font-family: 'Rye', serif;
  font-style: normal;
  color: var(--terracotta);
  display: inline-block;
  font-size: 1.1em;
  letter-spacing: -0.01em;
}
.hero__title .under {
  position: relative;
  display: inline-block;
}
.hero__title .under::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.05em;
  width: 100%;
  height: 0.18em;
  background: var(--rust);
  z-index: -1;
  opacity: 0.7;
}

.hero__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-lead);
  color: var(--sand);
  line-height: 1.5;
  margin-bottom: var(--s-7);
  max-width: 540px;
}

.hero__cta {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

.hero__signature {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(228, 205, 160, 0.2);
  max-width: 480px;
}
.hero__signature-rating {
  font-family: 'Rye', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero__signature-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.hero__signature-text {
  color: var(--sand);
  font-size: 0.9rem;
  line-height: 1.4;
}
.hero__signature-text strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--cream-light);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 540px;
}

.hero__card {
  position: absolute;
  background: var(--cream-light);
  color: var(--ink);
  padding: var(--s-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.hero__card--stat {
  top: 6%;
  right: 4%;
  background: var(--bark);
  color: var(--cream-light);
  padding: var(--s-5) var(--s-6);
  border-left: 4px solid var(--terracotta);
  max-width: 240px;
}
.hero__card--stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.hero__card--stat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: var(--s-2);
}

.hero__card--quote {
  bottom: 12%;
  left: 0;
  max-width: 320px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  padding: var(--s-6);
}
.hero__card--quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--rust);
  line-height: 1;
}
.hero__card--quote cite {
  display: block;
  margin-top: var(--s-4);
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__frame {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 480px;
  border: 1px solid rgba(228, 205, 160, 0.3);
  padding: 18px;
}
.hero__frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(228, 205, 160, 0.15);
}
.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    url('../assets/images/contact-hero.jpg') center/cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 18, 11, 0.4) 100%);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: var(--sand);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--sand), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: var(--cream-light);
  top: -50%;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* --- PAGE HERO (sub pages) -------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--s-9) + 60px) 0 var(--s-9);
  background: var(--bark);
  color: var(--cream-light);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  background: var(--hero-img) center/cover;
  filter: saturate(0.9);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(26, 18, 11, 0.85) 0%, rgba(92, 58, 33, 0.7) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage), var(--rust));
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-7);
  align-items: end;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1;
  color: var(--cream-light);
  margin-bottom: var(--s-4);
}
.page-hero__title em {
  font-family: 'Rye', serif;
  font-style: normal;
  color: var(--terracotta);
}
.page-hero__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-lead);
  color: var(--sand);
  max-width: 620px;
  line-height: 1.45;
}
.page-hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-3);
  text-align: right;
}
.page-hero__meta-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  padding: var(--s-2) var(--s-4);
  border: 1px solid rgba(228, 205, 160, 0.3);
}

/* --- TRUST STRIP ------------------------------------ */
.trust {
  background: var(--saddle);
  color: var(--cream-light);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}
.trust::before, .trust::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, var(--saddle), transparent);
}
.trust::before { left: 0; }
.trust::after { right: 0; transform: rotate(180deg); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  align-items: center;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  padding: 0 var(--s-4);
  border-right: 1px solid rgba(228, 205, 160, 0.18);
}
.trust__item:last-child { border-right: none; }
.trust__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--sand);
}
.trust__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-light);
  line-height: 1;
}
.trust__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

/* --- ABOUT SPLIT ------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split--reverse > .split__media { order: -1; }
.split__media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--img) center/cover;
  background-color: var(--saddle);
  overflow: visible;
}
.split__photo {
  width: 100%;
  height: 100%;
  background: var(--img) center/cover;
  background-color: var(--saddle);
}
.split__media--card {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--rust);
  color: var(--cream-light);
  padding: var(--s-5) var(--s-6);
  max-width: 240px;
}
.split__media--card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.split__media--card-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: var(--s-2);
  color: var(--cream-light);
}
.split__stamp {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: var(--cream-light);
  border: 2px solid var(--saddle);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Rye', serif;
  font-size: 0.85rem;
  color: var(--saddle);
  line-height: 1.2;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-warm);
}
.split__stamp span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  display: block;
  margin-top: 4px;
  color: var(--rust);
}

.split__eyebrow { margin-bottom: var(--s-4); }
.split__title { margin-bottom: var(--s-5); }
.split__text { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: var(--s-5); }

.split__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-5);
  margin: var(--s-6) 0;
}
.split__list-item {
  display: flex;
  gap: var(--s-3);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.split__list-item::before {
  content: '\2713';
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--cream-light);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- FEATURED BANNER (services showcase) ----------- */
.showcase {
  background: var(--bg-warm);
  position: relative;
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-4);
}
.showcase__tile {
  position: relative;
  overflow: hidden;
  background: var(--bark);
  color: var(--cream-light);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: transform var(--t-base) var(--ease);
}
.showcase__tile:hover { transform: translateY(-4px); }
.showcase__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--img) center/cover;
  opacity: 0.5;
  z-index: 0;
  transition: opacity var(--t-base) var(--ease), transform var(--t-slow) var(--ease);
}
.showcase__tile:hover::before { opacity: 0.7; transform: scale(1.05); }
.showcase__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 18, 11, 0.85) 100%);
  z-index: 1;
}
.showcase__tile > * { position: relative; z-index: 2; }

.showcase__tile--lg { grid-column: span 7; }
.showcase__tile--md { grid-column: span 5; }
.showcase__tile--sm { grid-column: span 4; }
.showcase__tile--xs { grid-column: span 6; }

.showcase__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--sand);
  margin-bottom: var(--s-3);
}
.showcase__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--cream-light);
  margin-bottom: var(--s-3);
  line-height: 1.05;
}
.showcase__desc {
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}
.showcase__more {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: var(--s-5);
}

/* --- FEATURED PRODUCTS ------------------------------ */
.products {
  background: var(--cream);
  position: relative;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-bottom: var(--s-7);
  padding: var(--s-2);
  background: var(--cream-light);
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.product-tab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
  cursor: pointer;
}
.product-tab:hover { color: var(--bark); }
.product-tab.is-active {
  background: var(--saddle);
  color: var(--cream-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-5);
}
.is-hidden { display: none !important; }

.product {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: var(--saddle);
}
.product__media {
  aspect-ratio: 4/3;
  background: var(--img) center/cover;
  background-color: var(--sand);
  position: relative;
  overflow: hidden;
}
.product__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(42, 29, 18, 0.2));
}
.product__tag {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  background: var(--bark);
  color: var(--cream-light);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px var(--s-3);
  z-index: 2;
}
.product__body {
  padding: var(--s-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product__cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: var(--s-2);
}
.product__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.product__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--s-4);
  flex: 1;
}
.product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px dashed var(--line);
}
.product__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bark);
}
.product__price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  letter-spacing: 0;
}
.product__cta {
  color: var(--rust);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- SERVICES LIST ---------------------------------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.service {
  padding: var(--s-7) var(--s-6);
  background: var(--cream-light);
  border-top: 4px solid var(--saddle);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.service:hover {
  background: var(--bark);
  color: var(--cream-light);
  transform: translateY(-4px);
}
.service:hover h3, .service:hover .service__desc { color: var(--sand); }
.service__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--rust);
  color: var(--cream-light);
  margin-bottom: var(--s-5);
  position: relative;
}
.service__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--saddle);
}
.service__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.service__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--s-4);
  transition: color var(--t-base) var(--ease);
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.service__list li {
  font-size: 0.9rem;
  padding-left: var(--s-4);
  position: relative;
  color: var(--ink-soft);
  transition: color var(--t-base) var(--ease);
}
.service__list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: bold;
}
.service:hover .service__list li { color: var(--sand); }

/* --- PROCESS / TIMELINE ----------------------------- */
.process {
  background: var(--bark);
  color: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
}
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-8);
}
.process__head h2 { color: var(--cream-light); }
.process__head h2 em { color: var(--terracotta); font-family: 'Rye', serif; font-style: normal; }
.process__head p { color: var(--sand); font-size: 1.05rem; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(228, 205, 160, 0.3) 0, rgba(228, 205, 160, 0.3) 6px, transparent 6px, transparent 14px);
}
.step {
  position: relative;
  padding-top: 64px;
}
.step__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--rust);
  color: var(--cream-light);
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  border: 2px solid var(--bark);
  outline: 1px solid var(--rust);
  z-index: 2;
}
.step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
  color: var(--cream-light);
}
.step__desc {
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- PROJECT GALLERY -------------------------------- */
.gallery {
  background: var(--bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: var(--s-3);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--saddle);
  cursor: pointer;
}
.gallery__item--a { grid-column: span 5; grid-row: span 2; }
.gallery__item--b { grid-column: span 4; grid-row: span 2; }
.gallery__item--c { grid-column: span 3; }
.gallery__item--d { grid-column: span 4; }
.gallery__item--e { grid-column: span 4; }
.gallery__item--f { grid-column: span 4; }

.gallery__img {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery__item:hover .gallery__img { transform: scale(1.08); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 18, 11, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-5);
  opacity: 0.9;
  transition: opacity var(--t-base) var(--ease);
}
.gallery__overlay-cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gallery__overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream-light);
  line-height: 1.2;
}

/* --- TESTIMONIALS ----------------------------------- */
.testimonials {
  background: var(--bg-warm);
  position: relative;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial {
  background: var(--cream-light);
  padding: var(--s-7) var(--s-6) var(--s-6);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  margin-bottom: var(--s-5);
  position: relative;
  padding-top: var(--s-6);
}
.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 4rem;
  color: var(--rust);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--s-4);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px dashed var(--line);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--saddle) var(--img) center/cover;
  flex: none;
}
.testimonial__author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.testimonial__author-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- CTA BANNER ------------------------------------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(26, 18, 11, 0.85), rgba(92, 58, 33, 0.7)),
    url('../assets/images/stacked-stone-veneer.jpg') center/cover;
  color: var(--cream-light);
  padding: var(--s-10) 0;
  text-align: center;
  position: relative;
}
.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw + 0.5rem, 4rem);
  font-weight: 700;
  color: var(--cream-light);
  margin-bottom: var(--s-5);
  line-height: 1.05;
}
.cta-banner__title em { font-family: 'Rye', serif; font-style: normal; color: var(--terracotta); }
.cta-banner__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-lead);
  color: var(--sand);
  max-width: 580px;
  margin: 0 auto var(--s-7);
  line-height: 1.45;
}
.cta-banner__buttons {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FOOTER ----------------------------------------- */
.footer {
  background: var(--bark);
  color: var(--cream-light);
  padding: var(--s-9) 0 var(--s-5);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--sage), var(--terracotta));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(228, 205, 160, 0.15);
}
.footer__brand .brand { color: var(--cream-light); margin-bottom: var(--s-5); }
.footer__brand p {
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--s-5);
}
.footer__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(228, 205, 160, 0.15);
}
.footer__list { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__list li {
  color: var(--sand);
  font-size: 0.95rem;
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
}
.footer__list a { color: var(--sand); transition: color var(--t-base) var(--ease); }
.footer__list a:hover { color: var(--terracotta); }
.footer__list-icon { color: var(--rust); flex: none; margin-top: 2px; }
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  color: var(--sand);
  font-size: 0.92rem;
  border-bottom: 1px dotted rgba(228, 205, 160, 0.15);
  padding-bottom: var(--s-2);
}
.footer__hours li:last-child { border-bottom: none; }
.footer__hours li span { color: var(--cream-light); font-weight: 500; }

.footer__social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(228, 205, 160, 0.08);
  color: var(--sand);
  border-radius: 4px;
  transition: all var(--t-base) var(--ease);
}
.footer__social a:hover { background: var(--rust); color: var(--cream-light); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer__legal-links { display: flex; gap: var(--s-5); }
.footer__legal-links a { color: var(--muted); transition: color var(--t-base) var(--ease); }
.footer__legal-links a:hover { color: var(--terracotta); }

/* --- ABOUT PAGE: STORY BLOCKS ----------------------- */
.story {
  background: var(--bg);
  position: relative;
}
.story__timeline {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-6);
  align-items: start;
  padding: var(--s-7) 0;
  border-top: 1px solid var(--line);
}
.story__timeline:first-child { border-top: none; }
.story__year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
}
.story__content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.story__content p {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 640px;
}

.values {
  background: var(--bg-warm);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.value {
  padding: var(--s-6);
  background: var(--cream-light);
  border: 1px solid var(--line);
  position: relative;
}
.value__num {
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  color: var(--rust);
  margin-bottom: var(--s-3);
}
.value__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.value__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- TEAM / OWNER PROFILE --------------------------- */
.owner-profile {
  background: var(--bg);
}
.owner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}
.owner__media {
  aspect-ratio: 4/5;
  background: var(--img) center/cover;
  background-color: var(--saddle);
  position: relative;
}
.owner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 18, 11, 0.4));
}
.owner__media--logo {
  background:
    radial-gradient(circle at 50% 45%, rgba(196, 113, 56, 0.18) 0%, transparent 65%),
    linear-gradient(160deg, #2c1d12 0%, #1a120b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
  border: 1px solid rgba(196, 113, 56, 0.35);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}
.owner__media--logo::after { display: none; }
.owner__logo {
  width: 78%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}
.owner__est {
  margin-top: var(--s-5);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--sand);
  text-transform: uppercase;
  opacity: 0.85;
}
.owner__signature {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-3);
  background: var(--cream-light);
  padding: var(--s-2) var(--s-4);
  font-family: 'Rye', serif;
  color: var(--bark);
  font-size: 1.1rem;
  transform: rotate(-2deg);
}
.owner__media--logo .owner__signature { display: none; }
.team-avatar,
.testimonial__avatar--initials {
  background: linear-gradient(135deg, var(--saddle) 0%, var(--rust) 100%);
  color: var(--cream-light);
  font-family: 'Bebas Neue', sans-serif;
  display: grid;
  place-items: center;
  letter-spacing: 0.05em;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--rust);
  margin-bottom: var(--s-4);
  font-size: 1.6rem;
  box-shadow: 0 2px 0 var(--saddle-deep);
}
.testimonial__avatar--initials {
  font-size: 0.95rem;
}
.testimonial__avatar--initials::after { content: attr(data-initials); }
.owner__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
  line-height: 1;
}
.owner__role {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: var(--s-5);
}
.owner__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--s-5);
  padding-left: var(--s-5);
  border-left: 3px solid var(--rust);
}
.owner__bio {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: var(--s-5);
}
.owner__creds {
  display: flex;
  gap: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.owner__cred strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--bark);
  display: block;
}
.owner__cred small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- CONTACT PAGE ----------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.contact-card {
  padding: var(--s-6);
  background: var(--cream-light);
  border-left: 4px solid var(--rust);
  display: flex;
  gap: var(--s-4);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--saddle);
  color: var(--cream-light);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-card__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: var(--s-1);
}
.contact-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}
.contact-card__sub {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 4px;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--rust); }

.map-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-card__frame {
  position: relative;
  width: 100%;
  height: 380px;
  background: var(--sand);
  overflow: hidden;
}
.map-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}
.map-card__body {
  padding: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.map-card__body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

/* --- FORM ------------------------------------------- */
.form {
  background: var(--cream-light);
  padding: var(--s-7);
  border: 1px solid var(--line);
  border-top: 4px solid var(--saddle);
}
.form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.form__lead {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: var(--s-6);
  line-height: 1.6;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.form__field { display: flex; flex-direction: column; gap: var(--s-2); }
.form__field--full { grid-column: 1 / -1; }
.form__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bark);
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bone);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--saddle);
  background: var(--cream-light);
}
.form__textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.form__check input {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--saddle);
}
.form__check a { color: var(--rust); text-decoration: underline; }
.form__status {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: var(--sage);
  color: var(--cream-light);
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}
.form__status.is-visible { display: block; }

/* --- STATS PANEL (about) --------------------------- */
.stats {
  background: var(--saddle);
  color: var(--cream-light);
  padding: var(--s-8) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.stat {
  text-align: center;
  padding: var(--s-3);
  border-right: 1px solid rgba(228, 205, 160, 0.2);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.stat__suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--sand);
  margin-left: 4px;
}
.stat__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: var(--s-2);
}

/* --- FAQ -------------------------------------------- */
.faq {
  background: var(--bg);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq__item {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: var(--s-5) var(--s-6);
  cursor: pointer;
  transition: border-color var(--t-base) var(--ease);
}
.faq__item:hover { border-color: var(--saddle); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  gap: var(--s-3);
}
.faq__plus {
  width: 32px;
  height: 32px;
  background: var(--bark);
  color: var(--cream-light);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 1.2rem;
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.faq__item.is-open .faq__plus {
  transform: rotate(45deg);
  background: var(--rust);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq__item.is-open .faq__answer {
  max-height: 400px;
  padding-top: var(--s-4);
}

/* --- STICKY CONTACT BAR (mobile) ------------------- */
.contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bark);
  display: none;
  z-index: 999;
  border-top: 3px solid var(--rust);
}
.contact-bar a {
  flex: 1;
  text-align: center;
  padding: var(--s-3) var(--s-2);
  color: var(--cream-light);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-right: 1px solid rgba(228, 205, 160, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.contact-bar a:last-child { border-right: none; }
.contact-bar svg { color: var(--terracotta); }

/* --- UTILITIES -------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin: var(--s-7) 0;
  color: var(--rust);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.divider svg { color: var(--rust); }

.text-sand { color: var(--sand); }
.text-rust { color: var(--rust); }
.text-cream { color: var(--cream-light); }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* --- ANIMATIONS ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--right {
  transform: translateX(28px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}

/* --- RESPONSIVE ------------------------------------- */
/* Switch to the compact navigation before desktop links can collide. */
@media (max-width: 1400px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-mobile-open .nav__menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bark);
    padding: var(--s-5);
    gap: var(--s-4);
    border-top: 1px solid rgba(228, 205, 160, 0.15);
  }
  .nav.is-mobile-open .nav__link {
    color: var(--cream-light);
    width: 100%;
    text-align: center;
    padding: var(--s-3) 0;
  }
  .nav.is-mobile-open { padding-bottom: var(--s-5); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item { border-right: none; }
  .trust__item:nth-child(odd) { border-right: 1px solid rgba(228, 205, 160, 0.18); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-7); }
  .process__grid::before { display: none; }
  .split { grid-template-columns: 1fr; gap: var(--s-6); }
  .split--reverse > .split__media { order: 0; }
  .showcase__tile--lg, .showcase__tile--md,
  .showcase__tile--sm, .showcase__tile--xs { grid-column: span 6; }
  .split__media--card { bottom: 20px; left: 20px; }
  .owner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__meta { align-items: flex-start; text-align: left; }
  .value-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(228, 205, 160, 0.2); }
}

@media (max-width: 640px) {
  .nav__cta > .btn { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .form { padding: var(--s-5); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .story__timeline { grid-template-columns: 1fr; gap: var(--s-3); }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--a, .gallery__item--b,
  .gallery__item--c, .gallery__item--d,
  .gallery__item--e, .gallery__item--f {
    grid-column: span 1;
    grid-row: span 1;
  }
  .product-tabs { flex-wrap: wrap; gap: 4px; border-radius: var(--radius-lg); }
  .product-tab { padding: 0.5rem 1rem; font-size: 0.78rem; }
  .services-list { grid-template-columns: 1fr; }
  .contact-bar { display: flex; }
  .footer { padding-bottom: 80px; }
  .hero { min-height: 90vh; padding-top: var(--s-8); }
  .hero__signature { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .section-head--left { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
}

/* --- PRINT ------------------------------------------ */
@media print {
  .nav, .hero, .cta-banner, .footer { display: none; }
}

::selection { background: var(--rust); color: var(--cream-light); }
