@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --forest: #1f3a2f;
  --forest-light: #2c4a3d;
  --forest-dark: #152b22;
  --cream: #e8e2d7;
  --cream-dark: #dbd2c4;
  --parchment: #e0d8c8;
  --gold: #c6a96b;
  --gold-soft: #d8bf8a;
  --gold-deep: #a8883d;
  --espresso: #2c1810;
  --text: #2a2a2a;
  --white: #ffffff;
  --border: #ddd6cb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.10);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: all 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--forest-dark);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 0;
}

/* ─── LOGO LOCKUP ─── */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
  display: block;
}

.logo-lockup:hover .logo-mark {
  opacity: 1;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.lw-main {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.lw-main em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.lw-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(232, 226, 215, 0.38);
  line-height: 1;
}

/* ─── NAV ─── */
.site-nav {
  display: flex;
  align-items: center;
}

.main-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: rgba(232, 226, 215, 0.5);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  padding: 0;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}

/* ─── HAMBURGER ─── */
.menu-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle:hover {
  color: var(--gold);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .site-nav.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--forest-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .site-nav.open .main-nav {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .site-nav.open .main-nav li {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    animation: luxuryFadeDown 0.5s ease forwards;
  }

  .site-nav.open .main-nav li:nth-child(1) { animation-delay: 0.06s; }
  .site-nav.open .main-nav li:nth-child(2) { animation-delay: 0.12s; }
  .site-nav.open .main-nav li:nth-child(3) { animation-delay: 0.18s; }
  .site-nav.open .main-nav li:nth-child(4) { animation-delay: 0.24s; }
  .site-nav.open .main-nav li:nth-child(5) { animation-delay: 0.30s; }

  .site-nav.open .main-nav li:not(:last-child)::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
    margin: 0 auto;
    opacity: 0.4;
  }

  .site-nav.open .main-nav a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-style: italic;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 20px 0;
    text-decoration: none;
  }

  .site-nav.open .main-nav a:hover,
  .site-nav.open .main-nav a:focus {
    color: var(--gold);
  }
}

@keyframes luxuryFadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* HERO */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(31, 58, 47, 0.55), rgba(31, 58, 47, 0.55)),
    url("../Images/hero.jpg") center/cover no-repeat;
}

.hero-content {
  padding: 70px 0;
}

.hero-text {
  max-width: 650px;
  background-color: rgba(245, 241, 235, 0.9);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
  padding: 42px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero h2 {
  color: var(--forest);
  font-size: 2.9rem;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--forest);
  color: var(--cream);
  padding: 13px 24px;
  border: 1px solid var(--forest);
  font-size: 0.98rem;
  letter-spacing: 0.5px;
}

.btn:hover,
.btn:focus {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

/* INTRO / FLOAT SECTION */
.intro {
  padding: 80px 0;
}

.float-image {
  float: left;
  width: 40%;
  margin-right: 5%;
}

.float-image img {
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.intro-text {
  float: left;
  width: 55%;
}

.intro-text h3 {
  color: var(--forest);
  font-size: 2.1rem;
  font-weight: normal;
  margin-bottom: 16px;
}

.intro-text p {
  margin-bottom: 18px;
}

.clear {
  clear: both;
}

/* PAGE CONTENT */
.page-content {
  padding: 80px 0;
}

.page-content section {
  margin-bottom: 50px;
}

.page-content h2 {
  color: var(--forest);
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 16px;
}

.page-content h3 {
  color: var(--forest);
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 14px;
}

.page-content p {
  margin-bottom: 18px;
  max-width: 900px;
}

/* LISTS */
.content-list {
  margin-left: 22px;
  margin-top: 12px;
}

.content-list li {
  margin-bottom: 10px;
}

/* FEATURE GRID / CARDS */
.feature-grid {
  padding: 20px 0 80px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.card {
  flex: 1 1 280px;
  background-color: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card img {
  margin-bottom: 18px;
  border: 1px solid var(--cream-dark);
}

.card h3 {
  color: var(--forest);
  font-size: 1.45rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 12px;
}

.card a {
  display: inline-block;
  color: var(--gold);
  font-weight: bold;
  text-decoration: none;
  margin-top: 8px;
}

.card a:hover,
.card a:focus {
  color: var(--forest);
  text-decoration: underline;
}

/* SAME PAGE LINK */
.same-page-link {
  padding-bottom: 45px;
}

.same-page-link a {
  color: var(--forest);
  text-decoration: none;
  font-weight: bold;
}

.same-page-link a:hover,
.same-page-link a:focus {
  color: var(--gold);
}

/* CONTACT FORM */
.contact-form {
  background-color: var(--white);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
  max-width: 760px;
  padding: 34px;
}

.contact-form label {
  display: block;
  color: var(--forest);
  font-weight: bold;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  background-color: #fcfbf9;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 22px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
}

/* FORM MESSAGE */
.form-message {
  margin-bottom: 20px;
  padding: 15px 18px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
}

.error-message {
  background-color: #fff4f4;
  border: 1px solid #d9a0a0;
  color: #7a1f1f;
}

.error-message ul {
  margin-top: 10px;
  margin-left: 20px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
.site-footer {
  background-color: var(--forest);
  color: var(--cream);
  padding: 34px 0;
  text-align: center;
  margin-top: 30px;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
  text-decoration: underline;
}

/* TABLE STYLE IF YOU ADD ONE LATER */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: var(--white);
}

th,
td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}

th {
  background-color: var(--forest);
  color: var(--cream);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h2 {
    font-size: 2.4rem;
  }

  .intro-text h3,
  .page-content h2 {
    font-size: 2rem;
  }

  .tagline-center {
    font-size: 1.3rem;
    max-width: 420px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .header-layout {
    min-height: auto;
  }

  .tagline-center {
    position: static;
    transform: none;
    font-size: 1.5rem;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .logo-left {
    width: 100px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }


  .main-nav {
    text-align: center;
    margin-top: 10px;
  }

  .main-nav li {
    display: block;
    margin: 10px 0;
  }

  .site-header.nav-collapsed .tagline-center {
    display: none;
  }

  .site-header.nav-collapsed .header-divider {
    display: none;
  }

  .hero {
    min-height: 65vh;
  }

  .hero-text {
    padding: 28px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .float-image,
  .intro-text {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  .float-image {
    margin-bottom: 24px;
  }

  .cards {
    flex-direction: column;
  }

  .page-content {
    padding: 60px 0;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.7rem;
  }

  .page-content h2 {
    font-size: 1.8rem;
  }

  .page-content h3 {
    font-size: 1.35rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
/* HOME PAGE REDESIGN */
.home-hero {
  padding: 70px 0 90px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.home-hero-text h2 {
  font-size: 3.3rem;
  line-height: 1.1;
  color: var(--forest);
  font-weight: normal;
  margin-bottom: 20px;
  max-width: 650px;
}

.hero-kicker,
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero-description {
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--forest);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.text-link:hover,
.text-link:focus {
  color: var(--gold);
}

.home-hero-image img {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.home-intro {
  padding: 10px 0 90px;
}

.intro-panel {
  max-width: 850px;
  text-align: center;
  padding: 45px 30px;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.intro-panel h3 {
  color: var(--forest);
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 14px;
}

.intro-panel p {
  max-width: 700px;
  margin: 0 auto;
}

.home-values {
  padding: 0 0 90px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--cream-dark);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.value-number {
  display: inline-block;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--forest);
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 12px;
}

.featured-coffee {
  padding: 0 0 90px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
}

.featured-image img {
  width: 100%;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.featured-content h3 {
  color: var(--forest);
  font-size: 2.3rem;
  font-weight: normal;
  margin-bottom: 16px;
}

.featured-content p {
  margin-bottom: 18px;
  max-width: 540px;
}

.featured-notes {
  list-style: none;
  margin-bottom: 26px;
  padding: 0;
}

.featured-notes li {
  margin-bottom: 10px;
  color: var(--forest);
  position: relative;
  padding-left: 18px;
}

.featured-notes li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}

.brand-strip {
  padding: 0 0 100px;
}

.brand-strip-content {
  text-align: center;
  max-width: 900px;
}

.brand-strip-content p {
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1.5;
  font-weight: normal;
}

/* HOME RESPONSIVE */
@media (max-width: 900px) {
  .home-hero-grid,
  .featured-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-text h2 {
    font-size: 2.7rem;
  }

  .home-hero-image img {
    margin: 0 auto;
  }

  .brand-strip-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 40px 0 60px;
  }

  .home-hero-grid {
    gap: 35px;
  }

  .home-hero-text h2 {
    font-size: 2.2rem;
  }

  .intro-panel {
    padding: 35px 20px;
  }

  .intro-panel h3,
  .featured-content h3 {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 26px 22px;
  }

  .brand-strip-content p {
    font-size: 1.1rem;
  }
}
/* JS ENHANCED HOME DETAILS */
.rotating-note {
  margin: 18px 0 30px;
  color: var(--forest);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.note-label {
  color: var(--gold);
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
}

#rotatingText {
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: inline-block;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.hero-actions .btn:hover::after {
  left: 140%;
}

.home-stats {
  padding: 0 0 90px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-number {
  font-size: 2.2rem;
  color: var(--forest);
  font-weight: normal;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── ORIGIN PROMISE BAR ─── */
.origin-bar {
  background-color: var(--forest-dark);
  color: var(--gold-soft);
  padding: 11px 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.origin-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.origin-bar-item {
  display: inline-block;
}

.origin-bar-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: var(--gold-deep);
  opacity: 0.45;
  vertical-align: middle;
}

/* ─── HERO REDESIGN ─── */
.hero-ornament-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-soft));
  margin-bottom: 20px;
}

.home-hero-text h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 22px;
  max-width: 580px;
}

.home-hero-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.hero-description {
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
  color: #3a3530;
}

/* ─── HERO IMAGE FRAME & SEAL ─── */
.hero-image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

.hero-image-frame img {
  width: 100%;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
  display: block;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hero-seal {
  position: absolute;
  bottom: 24px;
  right: -22px;
  width: 90px;
  height: 90px;
  background-color: var(--forest-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.seal-line-top,
.seal-line-bot {
  font-family: var(--font-display);
  font-size: 0.48rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  line-height: 1.2;
}

.seal-main {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.seal-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 2px auto;
}

/* ─── ORNAMENT DIVIDER — pure CSS ─── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft));
}

.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-soft));
}

/* Centre diamond — CSS only */
.ornament-divider > span {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ornament-divider--left {
  justify-content: flex-start;
}

.ornament-divider--left::before {
  display: none;
}

/* ─── PROMISE NUMERAL (replaces emoji icons) ─── */
.promise-numeral {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1;
  letter-spacing: 1px;
}

/* ─── VALUE RULE (replaces ornament character) ─── */
.value-rule {
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-soft));
  margin-bottom: 20px;
}

/* ─── QUALITY PROMISE SECTION ─── */
.quality-promise {
  padding: 80px 0 70px;
  background-color: var(--parchment);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.promise-header {
  text-align: center;
  margin-bottom: 50px;
}

.promise-header h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--forest);
  font-weight: 400;
  line-height: 1.25;
  max-width: 600px;
  margin: 0 auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.promise-card {
  text-align: center;
  padding: 36px 28px;
  background-color: var(--cream);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  position: relative;
}

.promise-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold-soft);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.promise-card:hover::after {
  opacity: 1;
  width: 80px;
}


.promise-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.promise-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4540;
}

/* ─── INTRO PANEL UPDATE ─── */
.intro-panel {
  max-width: 820px;
  text-align: center;
  padding: 50px 30px;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.intro-panel h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--forest);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 18px;
}

.intro-panel p {
  max-width: 660px;
  margin: 0 auto 22px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ─── STATS REDESIGN ─── */
.stat-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--cream-dark);
  background-color: rgba(255,255,255,0.5);
  position: relative;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.stat-label {
  font-family: var(--font-display);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.stat-word {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--forest);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-sub {
  font-size: 0.88rem;
  color: #6a6058;
  letter-spacing: 0.3px;
}

.stat-card--center {
  border-left: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold-soft);
}

/* ─── VALUE CARDS UPDATE ─── */
.value-ornament {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 18px;
  display: block;
  opacity: 0.7;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 12px;
}

.value-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-deep);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  font-family: var(--font-display);
}

.value-link:hover {
  color: var(--forest);
}

/* ─── FEATURED COFFEE UPDATE ─── */
.featured-origin-tag {
  font-size: 0.82rem;
  color: var(--gold-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.featured-content h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 10px;
}

/* ─── FOUNDER NOTE ─── */
.founder-note {
  padding: 80px 0 90px;
  background-color: var(--parchment);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.founder-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
}

.founder-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
}

.founder-rule-v {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-bottom: 16px;
}

.founder-body-wrap h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 22px;
  max-width: 580px;
}

.founder-body-wrap p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #3a3530;
  max-width: 600px;
  margin-bottom: 18px;
}

.founder-signature {
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  letter-spacing: 0.3px;
}

/* ─── BRAND STRIP — no box, just typography ─── */
.brand-strip {
  padding: 80px 0 100px;
}

.brand-strip-content {
  text-align: center;
  max-width: 680px;
}

.brand-strip-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}

.brand-strip-rule:last-child {
  margin: 32px auto 0;
}

.brand-strip-quote {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 400;
}

.brand-strip-attr {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── PAGE DIVIDER (between merged sections) ─── */
.page-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
  margin: 60px 0;
}

/* ─── FOOTER UPDATE ─── */
.site-footer {
  background-color: var(--forest-dark);
}

/* ─── SECTION KICKER UPDATE ─── */
.hero-kicker,
.section-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  display: block;
}

/* ─── RESPONSIVE: PROMISE, STATS & FOUNDER ─── */
@media (max-width: 900px) {
  .promise-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .home-hero-text h2 {
    font-size: 2.7rem;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founder-rule-v {
    display: none;
  }
}

@media (max-width: 768px) {
  .origin-bar-sep {
    display: none;
  }

  .origin-bar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .hero-seal {
    right: 8px;
    bottom: 10px;
    width: 76px;
    height: 76px;
  }

  .brand-strip-quote {
    font-size: 1.35rem;
  }

  .founder-body-wrap h3 {
    font-size: 1.6rem;
  }

  .stat-card--center {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--gold-soft);
    border-bottom: 1px solid var(--gold-soft);
  }
}