/* ============================================================
   HPFA.BIZ — Hardwood Burl Wall Art
   Warm Artisan Gallery Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Josefin+Sans:wght@200;300;400;600;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --mahogany:      #1a0c08;
  --dark-wood:     #2c1508;
  --medium-wood:   #3d1f0d;
  --walnut:        #5c3317;
  --amber:         #c87d2f;
  --amber-light:   #e09a50;
  --gold:          #d4aa5a;
  --gold-light:    #e8c87a;
  --honey:         #f0c060;
  --cream:         #f2e8d8;
  --cream-dark:    #d8c8a8;
  --parchment:     #e8dcc8;
  --warm-white:    #faf6f0;
  --text-body:     #c8b89a;
  --text-muted:    #8a7060;
  --bark:          #6b4a2a;
  --moss:          #3a4a2a;
  --sienna:        #8b4513;

  --card-bg:       rgba(44, 21, 8, 0.9);
  --glass:         rgba(200, 125, 47, 0.06);
  --overlay:       rgba(26, 12, 8, 0.85);
  --grain-opacity: 0.04;

  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  background-color: var(--mahogany);
  /* Subtle wood grain via repeating gradient */
  background-image:
    repeating-linear-gradient(
      92deg,
      transparent 0px,
      rgba(255,255,255,0.008) 1px,
      transparent 2px,
      transparent 60px
    ),
    repeating-linear-gradient(
      178deg,
      transparent 0px,
      rgba(0,0,0,0.015) 1px,
      transparent 3px,
      transparent 120px
    );
  color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--amber); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--honey); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.2;
  color: var(--warm-white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; }

.display-italic {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--amber-light);
  font-weight: 400;
}

.overline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(26, 12, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 170, 90, 0.18);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-main {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.nav-logo-main span { color: var(--amber); }

.nav-logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-body);
  padding: 0.45rem 0.8rem;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--cream); background: rgba(212,170,90,0.08); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--mahogany) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px !important;
}
.nav-cta:hover { background: var(--honey) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 1px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Woodgrain texture overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 100% 50%, rgba(61, 31, 13, 0.0) 0%, transparent 60%),
    repeating-linear-gradient(
      88deg,
      transparent 0px,
      rgba(200, 125, 47, 0.025) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      182deg,
      transparent 0px,
      rgba(0,0,0,0.02) 1px,
      transparent 2px,
      transparent 80px
    );
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  background:
    radial-gradient(circle at 40% 60%, rgba(200,125,47,0.35) 0%, transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(90,51,23,0.5) 0%, transparent 50%),
    linear-gradient(135deg, #3d1f0d 0%, #5c3317 40%, #3a1a08 100%);
  overflow: hidden;
}

/* Burl-inspired radial rings */
.hero-right::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at 45% 55%,
      transparent 0px,
      transparent 18px,
      rgba(200,125,47,0.06) 19px,
      rgba(200,125,47,0.06) 20px
    );
  animation: burlRotate 60s linear infinite;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 30%, rgba(26,12,8,0.6) 100%);
}

@keyframes burlRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-art-piece {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.burl-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, rgba(240,192,96,0.6) 0%, transparent 40%),
    radial-gradient(circle at 65% 60%, rgba(200,125,47,0.5) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(91,51,23,0.8) 0%, transparent 70%),
    conic-gradient(from 0deg at 40% 45%,
      #5c3317 0deg,
      #8b4513 30deg,
      #c87d2f 60deg,
      #5c3317 90deg,
      #3d1f0d 120deg,
      #8b4513 150deg,
      #c87d2f 180deg,
      #5c3317 210deg,
      #8b4513 240deg,
      #3d1f0d 270deg,
      #5c3317 300deg,
      #8b4513 330deg,
      #5c3317 360deg
    );
  box-shadow:
    0 0 60px rgba(200,125,47,0.3),
    0 0 120px rgba(200,125,47,0.1),
    inset 0 0 40px rgba(0,0,0,0.4);
  animation: burlPulse 4s ease-in-out infinite alternate;
  margin: 0 auto;
}

@keyframes burlPulse {
  from { box-shadow: 0 0 40px rgba(200,125,47,0.2), 0 0 80px rgba(200,125,47,0.08); }
  to   { box-shadow: 0 0 80px rgba(200,125,47,0.4), 0 0 160px rgba(200,125,47,0.15); }
}

.hero-eyebrow { margin-bottom: 1.5rem; }

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 480px;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.9;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-amber {
  background: var(--amber);
  color: var(--mahogany);
}
.btn-amber:hover {
  background: var(--honey);
  color: var(--mahogany);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,125,47,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(212,170,90,0.4);
  margin-left: 1.2rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212,170,90,0.08);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-wood);
  color: var(--cream);
  border: 1px solid rgba(212,170,90,0.2);
}
.btn-dark:hover {
  background: var(--medium-wood);
  border-color: var(--amber);
  color: var(--honey);
}

/* ---- Page Hero ---- */
.page-hero {
  padding: 160px 2.5rem 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(200,125,47,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 100% at 20% 0%, rgba(91,51,23,0.3) 0%, transparent 50%),
    var(--dark-wood);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      91deg,
      transparent 0px,
      rgba(200,125,47,0.015) 1px,
      transparent 2px,
      transparent 50px
    );
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--gold), transparent);
}

/* ---- Sections ---- */
.section { padding: 7rem 2.5rem; }
.section-warm { background: var(--dark-wood); }
.section-deeper { background: rgba(0,0,0,0.3); }

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

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 { margin: 0.5rem 0 1rem; }
.section-header p { color: var(--text-body); font-size: 1.02rem; line-height: 1.85; }

/* ---- Ruled Divider ---- */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0 1.8rem;
}

.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.rule::after {
  background: linear-gradient(90deg, transparent, var(--amber));
}

.rule-dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  margin: 1rem 0 1.75rem;
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--walnut);
  border: 1.5px solid var(--walnut);
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-visual {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-visual { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 { color: var(--cream); margin-bottom: 0.25rem; font-size: 1rem; }
.gallery-overlay span { color: var(--amber); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; }

/* ---- Specimen Cards ---- */
.specimen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(212,170,90,0.1);
  border: 1px solid rgba(212,170,90,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.specimen-card {
  background: var(--dark-wood);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.specimen-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  transition: width 0.5s ease;
}

.specimen-card:hover { background: var(--medium-wood); }
.specimen-card:hover::before { width: 100%; }

.specimen-swatch {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(212,170,90,0.3);
  position: relative;
  overflow: hidden;
}

.specimen-card h3 { color: var(--cream); margin-bottom: 0.5rem; font-size: 1.1rem; }
.specimen-card p { color: var(--text-body); font-size: 0.9rem; line-height: 1.75; }

.specimen-origin {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  border: 1px solid rgba(200,125,47,0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--gold), var(--amber), transparent);
  opacity: 0.4;
}

.process-step {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200,125,47,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
}

.step-icon {
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-step h3 { color: var(--gold-light); margin-bottom: 0.75rem; font-size: 1.05rem; }
.process-step p { color: var(--text-body); font-size: 0.9rem; }

/* ---- Feature Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.split-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-wood);
}

.split-content h2 { margin: 0.5rem 0 1rem; }
.split-content p { color: var(--text-body); margin-bottom: 1rem; line-height: 1.85; }

/* ---- Info Cards ---- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(212,170,90,0.08);
}

.info-card {
  background: var(--dark-wood);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}

.info-card:hover { background: var(--medium-wood); }

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.info-card h3 { color: var(--gold-light); margin-bottom: 0.75rem; font-size: 1.05rem; }
.info-card p { color: var(--text-body); font-size: 0.9rem; line-height: 1.75; }

/* ---- Detail List ---- */
.detail-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.detail-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212,170,90,0.1);
}

.detail-list li:first-child { border-top: 1px solid rgba(212,170,90,0.1); }

.detail-icon {
  font-size: 1.3rem;
  padding-top: 0.1rem;
}

.detail-list strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.detail-list p {
  color: var(--text-body);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

/* ---- Quote ---- */
.quote-panel {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(200,125,47,0.12) 0%, transparent 70%),
    var(--dark-wood);
  border-left: 3px solid var(--amber);
  padding: 3rem 3.5rem;
  margin: 2rem 0;
  position: relative;
}

.quote-panel::before {
  content: '\201C';
  font-family: 'EB Garamond', serif;
  font-size: 8rem;
  color: rgba(200,125,47,0.12);
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  line-height: 1;
}

.quote-panel blockquote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--parchment);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.quote-panel cite {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-top: 1.25rem;
}

/* ---- Stats Row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(212,170,90,0.15);
  border-bottom: 1px solid rgba(212,170,90,0.15);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(212,170,90,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ---- Accordion (FAQ) ---- */
.accordion { list-style: none; }

.accordion-item {
  border-bottom: 1px solid rgba(212,170,90,0.12);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  text-align: left;
  gap: 1.5rem;
}

.accordion-trigger-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(212,170,90,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
  transition: var(--transition);
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--amber); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-item.open .accordion-body { max-height: 400px; }

.accordion-body p {
  color: var(--text-body);
  padding-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ---- Contact Form ---- */
.contact-form { display: grid; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.field input,
.field textarea,
.field select {
  background: rgba(44, 21, 8, 0.8);
  border: 1px solid rgba(212,170,90,0.2);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--amber);
  background: rgba(61, 31, 13, 0.9);
  box-shadow: 0 0 0 3px rgba(200,125,47,0.1);
}

.field textarea { min-height: 130px; resize: vertical; }

.field select option { background: var(--dark-wood); color: var(--cream); }

/* ---- CTA Banner ---- */
.cta-panel {
  background:
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(200,125,47,0.2) 0%, transparent 65%),
    var(--dark-wood);
  border: 1px solid rgba(212,170,90,0.18);
  border-radius: 3px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--gold), var(--amber), transparent);
}

.cta-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--walnut), var(--amber), var(--walnut), transparent);
}

.cta-panel h2 { margin: 0.75rem 0 1rem; }
.cta-panel p { color: var(--text-body); max-width: 520px; margin: 0 auto 2.5rem; }

/* ---- Testimonials ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid rgba(212,170,90,0.1);
  border-radius: 2px;
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'EB Garamond', serif;
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial p {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--parchment);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.testimonial-author { color: var(--amber); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; }

/* ---- Footer ---- */
footer {
  background: #0d0604;
  padding: 5rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(212,170,90,0.15);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(212,170,90,0.08);
}

.footer-brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.25rem;
}

.footer-brand-name span { color: var(--amber); }
.footer-brand-tagline {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 280px; line-height: 1.8; }

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col ul a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 0.76rem;
  color: #4a3020;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in { animation: fadeIn 1s both; }
.fade-in-up { animation: fadeInUp 0.9s both; }
.delay-1 { animation-delay: 0.18s; }
.delay-2 { animation-delay: 0.36s; }
.delay-3 { animation-delay: 0.54s; }
.delay-4 { animation-delay: 0.72s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- Two Col ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.two-col p { color: var(--text-body); margin-bottom: 1rem; line-height: 1.85; }

/* ---- Tag ---- */
.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mahogany);
  background: var(--amber);
  padding: 0.2rem 0.6rem;
  border-radius: 1px;
  margin-bottom: 0.75rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 2rem; }
  .split { grid-template-columns: 1fr; }
  .split-content { padding: 3rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(26,12,8,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(212,170,90,0.1);
  }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 4.5rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child,
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
  .stats-row { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
}
