/*
Theme Name:        Cafetal Coffee Import
Theme URI:         https://cafetalcoffeeimport.com
Description:       Custom theme for Cafetal Coffee Import — Danish green coffee importer with full supply chain control from Caldas, Colombia.
Version:           1.0.0
Author:            Cafetal Coffee Import
Author URI:        https://cafetalcoffeeimport.com
Text Domain:       cafetal
Requires at least: 6.3
Tested up to:      6.7
Requires PHP:      8.1
License:           Private
*/

/* ═══════════════════════════════════════
   GOOGLE FONTS IMPORT
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════ */
:root {
  --c-teal:        #0F6E56;
  --c-teal-mid:    #1D9E75;
  --c-teal-light:  #E1F5EE;
  --c-teal-pale:   #F0FAF6;
  --c-ink:         #1A1A1A;
  --c-stone:       #5F5E5A;
  --c-stone-light: #9E9C97;
  --c-sand:        #F5F3EE;
  --c-sand-mid:    #EDEAE3;
  --c-white:       #FFFFFF;
  --c-amber:       #EF9F27;
  --c-border:      rgba(26,26,26,0.10);
  --c-border-mid:  rgba(26,26,26,0.18);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --r-sm:  2px;
  --r-md:  6px;
  --r-lg:  12px;

  --max-w:       1200px;
  --max-w-text:  680px;
  --gap:         clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 10vw, 8rem);
}

/* ═══════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-ink);
  background: var(--c-white);
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-teal); text-decoration: none; }
a:hover { color: var(--c-teal-mid); }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-family: var(--f-body); font-weight: 500; line-height: 1.4; }
h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-stone); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--c-stone);
}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container--narrow { max-width: 800px; }

.section {
  padding-block: var(--section-pad);
}

.section--sand  { background: var(--c-sand);       }
.section--teal  { background: var(--c-teal);        }
.section--pale  { background: var(--c-teal-pale);   }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}

.site-header.hero-mode { color: white; }
.site-header.hero-mode .site-logo,
.site-header.hero-mode .nav-link { color: white; }
.site-header.hero-mode.scrolled .site-logo,
.site-header.hero-mode.scrolled .nav-link { color: var(--c-ink); }
.site-header.hero-mode .btn-nav { border-color: rgba(255,255,255,0.6); color: white; }
.site-header.hero-mode.scrolled .btn-nav { border-color: var(--c-border-mid); color: var(--c-teal); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.site-logo span { display: block; font-size: 0.6rem; font-family: var(--f-body); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-stone); margin-top: 1px; }

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-stone);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--c-teal); background: var(--c-teal-pale); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-teal);
  border: 1px solid var(--c-border-mid);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--c-teal); color: white; border-color: var(--c-teal); }
.btn-nav::after { content: '→'; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.25s;
  display: block;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .nav-link { font-size: 1.5rem; font-family: var(--f-display); font-weight: 400; color: var(--c-ink); }
  .btn-nav { font-size: 1rem; color: var(--c-teal); }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 2.25rem;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-teal);
  color: white;
  border-color: var(--c-teal);
}
.btn--primary:hover {
  background: #0c5c48;
  color: white;
  border-color: #0c5c48;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,110,86,0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--c-teal);
  border-color: rgba(15,110,86,0.4);
}
.btn--ghost:hover {
  background: var(--c-teal-pale);
  color: var(--c-teal);
}

.btn--white {
  background: white;
  color: var(--c-teal);
  border-color: white;
}
.btn--white:hover {
  background: var(--c-teal-light);
  color: var(--c-teal);
}

.btn--ghost-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

.btn::after { content: '→'; font-style: normal; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
  background: var(--c-teal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/themes/cafetal/assets/hero-farm.jpg');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,50,38,0.15) 0%,
    rgba(10,50,38,0.45) 50%,
    rgba(10,50,38,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.5);
  display: block;
}

.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.75rem;
}

.hero__h1 em {
  font-style: italic;
  color: #9FE1CB;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust-item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--c-teal);
  display: block;
}

/* ═══════════════════════════════════════
   STATS / METRIC CARDS
   ═══════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 3rem;
}

.stat-card {
  background: var(--c-white);
  padding: 1.75rem 1.5rem;
}
.section--sand .stat-card { background: var(--c-sand); }

.stat-card__num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--c-teal);
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--c-stone);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   INTRO SPLIT
   ═══════════════════════════════════════ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
@media (max-width: 768px) { .intro-split { grid-template-columns: 1fr; } }

.intro-split__text h2 { margin-bottom: 1.5rem; }
.intro-split__text p  { color: var(--c-stone); max-width: 480px; }

.intro-split__visual {
  position: relative;
}
.intro-split__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.intro-split__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--c-teal);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 160px;
  box-shadow: 0 8px 24px rgba(15,110,86,0.3);
}
.intro-split__badge strong { display: block; font-family: var(--f-display); font-size: 1.75rem; font-weight: 300; margin-bottom: 0.25rem; }

@media (max-width: 768px) { .intro-split__badge { left: 1rem; bottom: 1rem; } }

/* ═══════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.product-card--specialty {
  border-color: rgba(15,110,86,0.25);
  background: var(--c-teal-pale);
}

.product-card__tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-stone-light);
  margin-bottom: 0.75rem;
}
.product-card--specialty .product-card__tier { color: var(--c-teal); }

.product-card__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-card__origin {
  font-size: 0.8125rem;
  color: var(--c-stone);
  margin-bottom: 1.25rem;
}

.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}
.product-card__spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-stone);
}
.product-card__spec strong { color: var(--c-ink); font-weight: 500; }

.product-card__limited {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--c-teal);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-sm);
}

/* ═══════════════════════════════════════
   QUOTE / FOUNDER
   ═══════════════════════════════════════ */
.founder-section {
  background: var(--c-ink);
  color: white;
  padding-block: var(--section-pad);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 768px) { .founder-inner { grid-template-columns: 1fr; } }

.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
  opacity: 0.85;
}

.founder-quote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 300;
  line-height: 1.35;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.founder-quote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: var(--c-teal-mid);
  margin-bottom: 0.5rem;
}

.founder-attr {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 3rem;
}
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: white;
  padding: 2.5rem 2rem;
  position: relative;
}

.step__num {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--c-teal-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 0.6rem;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--c-stone);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  background: var(--c-teal);
  color: white;
  text-align: center;
  padding-block: var(--section-pad);
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.cta-section .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.55);
  padding-block: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════ */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: var(--c-sand);
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
.page-hero .lead { margin-top: 1.25rem; max-width: 600px; }

/* ═══════════════════════════════════════
   SPEC TABLE
   ═══════════════════════════════════════ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.spec-table tr { border-bottom: 1px solid var(--c-border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.625rem 0; line-height: 1.5; }
.spec-table td:first-child {
  width: 140px;
  font-weight: 500;
  color: var(--c-stone);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.contact-form .wpcf7-form-control-wrap,
.contact-form .wpcf7-text,
.contact-form .wpcf7-textarea {
  display: block;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-ink);
  background: white;
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(15,110,86,0.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-stone);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.contact-form .form-field { margin-bottom: 1.25rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.contact-form .wpcf7-submit,
.contact-form input[type="submit"] {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-teal);
  color: white;
  border: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 2.25rem;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.contact-form .wpcf7-submit:hover { background: #0c5c48; transform: translateY(-1px); }

/* ═══════════════════════════════════════
   CONTACT INFO CARD
   ═══════════════════════════════════════ */
.contact-card {
  background: var(--c-teal-pale);
  border: 1px solid rgba(15,110,86,0.15);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.contact-card__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(15,110,86,0.1);
  font-size: 0.9rem;
}
.contact-card__row:last-child { border-bottom: none; }
.contact-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-teal);
  margin-top: 1px;
}
.contact-card__label { font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--c-stone); margin-bottom: 0.2rem; }
.contact-card__value { color: var(--c-ink); }

/* ═══════════════════════════════════════
   FARM / ORIGIN PAGE
   ═══════════════════════════════════════ */
.origin-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.origin-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.origin-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,50,38,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.origin-banner__data {
  color: white;
}
.origin-banner__data h3 {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
}
.origin-banner__data p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap);
  align-items: start;
}
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; } }

.about-photo {
  position: sticky;
  top: 6rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--c-stone); margin-bottom: 1.25rem; }
.about-content p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════ */
.text-center { text-align: center; }
.text-teal    { color: var(--c-teal); }
.text-stone   { color: var(--c-stone); }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }
.mb-lg  { margin-bottom: 3rem; }

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════
   WORDPRESS CORE OVERRIDE
   ═══════════════════════════════════════ */
.wp-block-group { margin: 0; }
.entry-content > * { max-width: 100%; }
