/* ============================================================
   THE TIMEKEEPER ATELIER — styles.css
   Loveland Brand Design · June 2026
   Conversion-optimized rebuild
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=IM+Fell+English+SC&family=IM+Fell+English:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --deep-charcoal: #2a2a2a;
  --jewel-gold:    #d4a574;
  --jewel-green:   #1F352A;
  --green-deep:    #182a21;
  --ink-mid:       #243d31;
  --cream:         #f5f3f0;
  --barn-red:      #8B3A1D;
  --atelier-navy:  #1C2D4C;

  --cream-mid:     #edeae5;
  --cream-dark:    #e3ded7;
  --gold-muted:    #b8895a;
  --text-light:    #5c5750;
  --text-mid:      #3d3a36;
  --rule:          #d5d0c8;
  --rule-dark:     rgba(245,243,240,.1);

  --font-display:  'Gilda Display', Georgia, serif;
  --font-sub:      'IM Fell English SC', Georgia, serif;
  --font-italic:   'IM Fell English', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --radius:        3px;
  --trans:         200ms ease;
  --trans-slow:    500ms ease;

  --max-w:         1240px;
  --max-w-text:    680px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-mid);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.container-narrow {
  width: 100%;
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

/* ── SECTION — generous vertical rhythm (was undefined) ───── */
.section {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  position: relative;
}
.section + .section { /* avoid doubled seams between same-type bands */ }

/* ── TWO-COLUMN GRID (was undefined) ─────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── LEAD paragraph (was undefined) ──────────────────────── */
.lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.8;
  color: var(--text-light);
}


/* ── TYPE ───────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--deep-charcoal); }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--jewel-gold);
  display: block;
  margin-bottom: .85rem;
}
.eyebrow-light { color: rgba(245,243,240,.55); }
.eyebrow-dark  { color: var(--gold-muted); }

p { line-height: 1.8; }
p + p { margin-top: .9rem; }

.rule-gold {
  width: 36px;
  height: 2px;
  background: var(--jewel-gold);
  margin-bottom: 1.5rem;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--jewel-gold);
  color: var(--deep-charcoal);
  border: 2px solid var(--jewel-gold);
}
.btn-primary:hover { background: #c4956a; border-color: #c4956a; }

.btn-primary-lg {
  padding: 1.1rem 2.5rem;
  font-size: .85rem;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,243,240,.35);
}
.btn-outline:hover { border-color: var(--jewel-gold); color: var(--jewel-gold); }

.btn-outline-dark {
  background: transparent;
  color: var(--deep-charcoal);
  border: 1.5px solid var(--deep-charcoal);
}
.btn-outline-dark:hover { background: var(--deep-charcoal); color: var(--cream); }

.btn-ghost {
  padding: 0;
  color: var(--jewel-gold);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: 0;
}
.btn-ghost::after {
  content: '→';
  transition: transform var(--trans);
  display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost:hover { transform: none; }

/* ── NAV ────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
.site-nav.scrolled,
.site-nav.light-bg {
  background: var(--deep-charcoal);
  padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.15;
}
.nav-wordmark span {
  display: block;
  font-family: var(--font-sub);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--jewel-gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: .1rem;
}
.nav-links > li > a {
  font-family: var(--font-sub);
  font-size: .82rem;
  letter-spacing: .12em;
  color: rgba(245,243,240,.6);
  padding: .5rem .85rem;
  transition: color var(--trans);
  display: block;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--jewel-gold); }
.nav-cta {
  margin-left: .75rem;
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: none;
  color: var(--jewel-gold);
  background: transparent;
  border: 1px solid rgba(200,150,74,.4);
  padding: .65rem 1.4rem;
  border-radius: 0;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--jewel-gold);
  color: var(--deep-charcoal);
  border-color: var(--jewel-gold);
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-width: 190px;
  padding: .4rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(245,243,240,.65);
  transition: color var(--trans), background var(--trans);
}
.nav-dropdown-menu a:hover { color: var(--jewel-gold); background: rgba(255,255,255,.04); }

/* Rich Services dropdown with descriptions */
.nav-dropdown-trigger {
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: rgba(245,243,240,.7);
  padding: .5rem .7rem;
  display: flex; align-items: center; gap: .4rem;
  transition: color var(--trans);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger:hover { color: var(--jewel-gold); }
.nav-dropdown-trigger .caret { font-size: .78rem; transition: transform .25s; }
.nav-dropdown:hover .nav-dropdown-trigger .caret { transform: rotate(180deg); }
.nav-dropdown-menu.rich { min-width: 290px; padding: .5rem; left: 0; transform: translateY(-6px); transition: opacity .2s, transform .2s; }
.nav-dropdown:hover .nav-dropdown-menu.rich { transform: translateY(0); }
.nav-dropdown-menu.rich a {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .75rem .9rem;
  text-transform: none; letter-spacing: 0;
}
.nav-dropdown-menu.rich a strong {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; color: var(--cream);
}
.nav-dropdown-menu.rich a em {
  font-family: var(--font-italic);
  font-style: italic; font-size: .8rem; color: rgba(245,243,240,.5);
}
.nav-dropdown-menu.rich a:hover strong { color: var(--jewel-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep-charcoal);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu a:hover { color: var(--jewel-gold); }
.mobile-menu .mobile-cta { margin-top: 2rem; }

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  background: var(--ink);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 30% 40%, rgba(20,14,8,.45) 0%, rgba(13,10,7,.82) 100%),
    linear-gradient(to bottom, rgba(13,10,7,.55), rgba(13,10,7,.85));
}
.page-header .container { position: relative; z-index: 2; }
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(212,165,116,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 { color: var(--cream); }
.page-header .ph-lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(245,243,240,.78);
  max-width: 52ch;
  margin-top: 1.1rem;
  line-height: 1.8;
}
.page-header-lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(245,243,240,.78);
  max-width: 54ch;
  margin-top: 1.1rem;
  line-height: 1.8;
}
.page-header-eyebrow {
  font-family: var(--font-sub);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jewel-gold);
  display: block;
  margin-bottom: .5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(245,243,240,.35);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(245,243,240,.35); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--jewel-gold); }
.breadcrumb-sep { opacity: .4; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--deep-charcoal);
  padding: 4rem 0 2rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-dark);
}
.footer-brand-mark { width: clamp(190px,20vw,260px); height: auto; margin-bottom: 1.5rem; opacity: .95; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .2rem;
}
.footer-brand-tagline {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--jewel-gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: .83rem;
  color: rgba(245,243,240,.4);
  line-height: 1.7;
  max-width: 28ch;
}
.footer-col-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--jewel-gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .95rem; color: rgba(245,243,240,.45); transition: color var(--trans); }
.footer-links a:hover { color: var(--cream); }
.footer-contact-item { margin-bottom: .75rem; }
.footer-contact-label {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(245,243,240,.3);
  margin-bottom: .2rem;
}
.footer-contact-value { font-size: .95rem; color: rgba(245,243,240,.5); line-height: 1.5; }
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal { font-size: .86rem; color: rgba(245,243,240,.22); }
.footer-lbd   { font-size: .86rem; color: rgba(245,243,240,.22); }

/* ── STICKY CTA ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--deep-charcoal);
  border-top: 2px solid var(--jewel-gold);
  padding: .85rem 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta-text {
  font-size: .88rem;
  color: rgba(245,243,240,.65);
}
.sticky-cta-text strong { color: var(--cream); }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  transition: color var(--trans);
}
.faq-question:hover { color: var(--atelier-navy); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid rgba(42,42,42,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
  font-size: 14px;
  color: rgba(42,42,42,.4);
}
.faq-question.open .faq-icon {
  background: var(--atelier-navy);
  border-color: var(--atelier-navy);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.35rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 64ch;
}
.faq-answer.open { display: block; }

/* ── MISC COMPONENTS ────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}
.highlight-box {
  border-left: 3px solid var(--jewel-gold);
  background: rgba(212,165,116,.07);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.highlight-box p { font-size: .9rem; color: var(--deep-charcoal); }

/* ── FORM ELEMENTS ──────────────────────────────────────── */
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--deep-charcoal);
  margin-bottom: .5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--deep-charcoal);
  background: white;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--atelier-navy);
  box-shadow: 0 0 0 3px rgba(28,45,76,.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .9rem; color: var(--text-light); margin-top: .4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--rule);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  background: white;
}
.upload-zone:hover {
  border-color: var(--jewel-gold);
  background: rgba(212,165,116,.04);
}
.upload-zone.dragover {
  border-color: var(--jewel-gold);
  background: rgba(212,165,116,.08);
}
.upload-zone input[type="file"] { display: none; }
.upload-icon {
  width: 40px; height: 40px;
  margin: 0 auto .75rem;
  color: var(--jewel-gold);
  opacity: .7;
}
.upload-zone p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.upload-zone strong { color: var(--deep-charcoal); }
.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.upload-preview {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--rule);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta-text { display: none; }
}
@media (max-width: 480px) {
  .sticky-cta-inner { justify-content: center; }
}


/* ── PHOTO BAND (work imagery on all pages) ───────────────── */
.photo-band {
  background: var(--jewel-green);
  padding: clamp(4.5rem,7vw,6.5rem) 0;
}
.photo-band-head {
  max-width: var(--max-w);
  margin: 0 auto clamp(2rem,4vw,3rem);
  padding: 0 clamp(1.25rem,5vw,3rem);
  text-align: center;
}
.photo-band-eyebrow {
  font-family: var(--font-sub);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jewel-gold);
  display: block;
  margin-bottom: .75rem;
}
.photo-band-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,3vw,2.4rem);
  color: var(--cream);
  font-weight: 400;
}
.photo-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.photo-grid figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.photo-grid figure:hover img { transform: scale(1.05); }
.photo-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem .9rem .8rem;
  background: linear-gradient(to top, rgba(31,53,42,.92), transparent);
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--cream);
  opacity: 0;
  transition: opacity .3s;
}
.photo-grid figure:hover figcaption { opacity: 1; }
@media (max-width: 760px) {
  .photo-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 460px) {
  .photo-grid { grid-template-columns: 1fr; }
}


/* ── IMAGE FEATURE (editorial image woven into body) ──────── */
.img-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.img-feature.flip .img-feature-media { order: 2; }
.img-feature-media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.img-feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.img-feature:hover .img-feature-media img { transform: scale(1.04); }
.img-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem,7vw,6.5rem) clamp(3rem,5vw,5.5rem);
}
.img-feature-text .eyebrow { margin-bottom: 1rem; }
.img-feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem,3vw,2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.img-feature-text p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 42ch;
}
/* light variant (on cream) vs dark variants (on green/charcoal/red) */
.img-feature.on-dark .img-feature-text h2 { color: var(--cream); }
.img-feature.on-dark .img-feature-text p { color: rgba(245,243,240,.6); }
.img-feature.on-dark .eyebrow { color: var(--jewel-gold); }
.img-feature.on-light .img-feature-text h2 { color: var(--deep-charcoal); }
.img-feature.on-light .img-feature-text p { color: var(--text-light); }
@media (max-width: 820px) {
  .img-feature { grid-template-columns: 1fr; }
  .img-feature.flip .img-feature-media { order: 0; }
  .img-feature-media { min-height: 300px; }
}


/* ── CANONICAL FOOTER (matches homepage exactly) ─────────── */
.site-footer { background: #2a2a2a; border-top: 1px solid rgba(200,150,74,.12); padding: 4.5rem 0 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,3.5rem); }
.rule-orn { display: flex; align-items: center; gap: 0; width: 100%; margin: 0; opacity: .35; }
.rule-orn::before, .rule-orn::after { content: ''; flex: 1; height: 1px; background: var(--jewel-gold); }
.rule-orn-center { padding: 0 1rem; font-family: var(--font-sub); font-size: .74rem; letter-spacing: .3em; color: var(--jewel-gold); text-transform: uppercase; white-space: nowrap; }
.footer-main { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(200,150,74,.1); }
.footer-brand img { width: clamp(190px,20vw,240px); height: auto; margin-bottom: 1.25rem; opacity: .95; }
.footer-brand p { font-family: var(--font-italic); font-style: italic; font-size: .9rem; color: rgba(242,237,228,.42); line-height: 1.7; max-width: 30ch; }
.footer-col-title { font-family: var(--font-sub); font-size: .74rem; letter-spacing: .2em; color: var(--gold-muted); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; list-style: none; }
.footer-links a { font-family: var(--font-italic); font-style: italic; font-size: .92rem; color: rgba(242,237,228,.45); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact-label { font-family: var(--font-sub); font-size: .72rem; letter-spacing: .14em; color: rgba(242,237,228,.28); display: block; margin-bottom: .25rem; }
.footer-contact-val { font-family: var(--font-italic); font-style: italic; font-size: .9rem; color: rgba(242,237,228,.45); margin-bottom: .85rem; line-height: 1.5; }
.footer-bottom { padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-family: var(--font-sub); font-size: .72rem; letter-spacing: .08em; color: rgba(242,237,228,.25); }
@media (max-width: 820px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px) { .footer-main { grid-template-columns: 1fr; } }
