/* ============================================================
   SIGNATURE WINES by Alchemy Drinks
   Master Stylesheet
   ============================================================ */

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

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Gold palette */
  --gold: #C4A265;
  --gold-dark: #A8885A;
  --gold-light: #D4B978;
  --gold-muted: rgba(196, 162, 101, 0.15);

  /* Dark palette */
  --black: #0D0B09;
  --rich-black: #15120F;
  --charcoal: #1E1A16;
  --dark-grey: #2C2723;
  --mid-grey: #3D3732;

  /* Light palette */
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --off-white: #E8E2D8;

  /* Text colors */
  --text-light: #DDD9D3;
  --text-light-muted: #ADA8A2;
  --text-dark: #3A3530;
  --text-dark-muted: #6B6460;

  /* Dividers */
  --divider-dark: rgba(255,255,255,0.1);
  --divider-light: rgba(0,0,0,0.08);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad: 6.5rem 3.5rem;
  --section-pad-mobile: 4rem 1.5rem;
  --content-max: 1200px;
  --content-narrow: 800px;
}

/* ---------- BASE TYPOGRAPHY ---------- */
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ---------- UTILITY CLASSES ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.accent-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.body-text {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}
.body-text + .body-text { margin-top: 1rem; }

.pull-quote {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--gold);
  margin: 2.2rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid var(--divider-light);
  border-bottom: 1px solid var(--divider-light);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  transition: all 0.35s;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  transition: all 0.35s;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--charcoal);
  color: #fff;
  text-decoration: none;
  transition: all 0.35s;
}
.btn-dark:hover { background: var(--mid-grey); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
  text-decoration: none;
  transition: all 0.35s;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

.arrow { font-size: 1.1em; transition: transform 0.3s; }
.btn-primary:hover .arrow,
.btn-gold:hover .arrow,
.btn-dark:hover .arrow,
.btn-outline:hover .arrow { transform: translateX(3px); }

/* ---------- NAVIGATION ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}
nav.nav-solid {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
nav.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0.9rem 3.5rem;
}

/* Logo */
.nav-logo img {
  height: 48px;
  width: auto;
  transition: opacity 0.3s;
}
nav:not(.nav-solid) .logo-light { display: block; }
nav:not(.nav-solid) .logo-dark { display: none; }
nav:not(.nav-solid).scrolled .logo-light { display: none; }
nav:not(.nav-solid).scrolled .logo-dark { display: block; }
nav.nav-solid .logo-light { display: none; }
nav.nav-solid .logo-dark { display: block; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* Transparent nav (default) */
nav:not(.nav-solid) .nav-links a { color: rgba(255,255,255,0.78); }
nav:not(.nav-solid) .nav-links a:hover { color: #fff; }
nav:not(.nav-solid).scrolled .nav-links a { color: var(--text-dark); }
nav:not(.nav-solid).scrolled .nav-links a:hover { color: var(--gold); }

/* Solid nav */
nav.nav-solid .nav-links a { color: var(--text-dark); }
nav.nav-solid .nav-links a:hover { color: var(--gold); }

/* Active state */
.nav-links a.active { color: var(--gold) !important; }

/* Nav phone */
.nav-phone {
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 0;
  transition: all 0.3s !important;
}
nav:not(.nav-solid) .nav-phone { border-color: rgba(255,255,255,0.2) !important; }
nav:not(.nav-solid) .nav-phone:hover { border-color: rgba(255,255,255,0.5) !important; }
nav:not(.nav-solid).scrolled .nav-phone,
nav.nav-solid .nav-phone {
  border-color: var(--text-dark-muted) !important;
  color: var(--text-dark) !important;
}
nav:not(.nav-solid).scrolled .nav-phone:hover,
nav.nav-solid .nav-phone:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* Nav CTA */
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ---------- HAMBURGER ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  transition: all 0.3s;
}
nav:not(.nav-solid) .nav-burger span { background: #fff; }
nav:not(.nav-solid).scrolled .nav-burger span { background: var(--text-dark); }
nav.nav-solid .nav-burger span { background: var(--text-dark); }

.nav-burger.open span { background: #fff !important; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rich-black);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-menu.open { display: flex; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}
.mobile-menu-inner a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.mobile-menu-inner a:hover,
.mobile-menu-inner a.active { color: var(--gold); }

.mobile-menu-phone {
  font-family: var(--sans) !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu-cta {
  font-family: var(--sans) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.8rem 2.2rem;
  margin-top: 0.5rem;
}

/* ---------- HOMEPAGE HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,11,9,0.65) 0%,
    rgba(13,11,9,0.15) 45%,
    rgba(13,11,9,0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem 0;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

/* ---------- PAGE HERO (INTERIOR) ---------- */
.page-hero {
  padding: 10rem 3.5rem 4rem;
  text-align: center;
}
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Dark hero variant */
.page-hero--dark { background: var(--rich-black); }
.page-hero--dark .page-hero-eyebrow { color: var(--gold); }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark .page-hero-sub { color: var(--text-light-muted); }

/* Cream hero variant */
.page-hero--cream { background: var(--cream); }
.page-hero--cream .page-hero-eyebrow { color: var(--gold); }
.page-hero--cream h1 { color: var(--text-dark); }
.page-hero--cream .page-hero-sub { color: var(--text-dark-muted); }

/* ---------- CONTENT SECTIONS ---------- */

/* --- Dark section --- */
.section-dark {
  background: var(--rich-black);
  padding: var(--section-pad);
  color: var(--text-light);
}
.section-dark .section-heading { color: #fff; }
.section-dark .body-text { color: var(--text-light); }
.section-dark .accent-line { background: var(--gold); }
.section-dark .eyebrow { color: var(--gold); }

/* --- Cream section --- */
.section-cream {
  background: var(--cream);
  padding: var(--section-pad);
  color: var(--text-dark);
}
.section-cream .section-heading { color: var(--text-dark); }
.section-cream .body-text { color: var(--text-dark); }

/* --- White section --- */
.section-white {
  background: var(--warm-white);
  padding: var(--section-pad);
  color: var(--text-dark);
}
.section-white .section-heading { color: var(--text-dark); }
.section-white .body-text { color: var(--text-dark); }

/* --- Charcoal section --- */
.section-charcoal {
  background: var(--charcoal);
  padding: var(--section-pad);
  color: var(--text-light);
}
.section-charcoal .section-heading { color: #fff; }
.section-charcoal .body-text { color: var(--text-light); }
.section-charcoal .eyebrow { color: var(--gold); }

/* Content containers */
.content-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.content-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

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

/* ---------- HOMEPAGE: INTRO SECTION ---------- */
.intro-section { padding: var(--section-pad); background: var(--cream); }
.intro-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text .section-heading { color: var(--text-dark); }
.intro-text .body-text { color: var(--text-dark); }
.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-image-border {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-dark);
  pointer-events: none;
  opacity: 0.4;
}

/* ---------- HOMEPAGE: PILLARS / FEATURES ---------- */
.pillars-section { padding: var(--section-pad); background: var(--rich-black); }
.pillars-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.pillars-header .section-heading { color: #fff; }
.pillars-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--divider-dark);
  transition: border-color 0.4s;
}
.pillar-card:hover { border-color: var(--gold-dark); }
.pillar-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* ---------- HOMEPAGE: BROCHURE SECTION ---------- */
.brochure-section { padding: var(--section-pad); background: var(--warm-white); }
.brochure-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brochure-image {
  aspect-ratio: 3/4;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--divider-light);
  overflow: hidden;
}
.brochure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure-text .section-heading { color: var(--text-dark); }
.brochure-text .body-text { color: var(--text-dark); }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--charcoal);
  padding: 5.5rem 3.5rem;
}
.cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
.cta-headline em {
  font-style: italic;
  color: var(--gold);
}
.cta-right {
  text-align: right;
  max-width: 520px;
}
.cta-right p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ---------- ABOUT PAGE ---------- */
.about-story {
  padding: var(--section-pad);
  background: var(--cream);
}
.about-story-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}
.about-story-inner .body-text {
  text-align: left;
}

.about-values { padding: var(--section-pad); background: var(--rich-black); }
.about-values-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.about-values-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-values-header .section-heading { color: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value-item {
  padding: 2.5rem;
  border: 1px solid var(--divider-dark);
}
.value-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-item p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.about-partnership { padding: var(--section-pad); background: var(--warm-white); }
.about-partnership-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-partnership-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}
.about-partnership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- WINES PAGE ---------- */
.wines-intro {
  padding: var(--section-pad);
  background: var(--cream);
}
.wines-intro-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}
.wines-intro-inner .body-text { text-align: left; }

.wines-brochures { padding: var(--section-pad); background: var(--rich-black); }
.wines-brochures-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.wines-brochures-header {
  text-align: center;
  margin-bottom: 4rem;
}
.wines-brochures-header .section-heading { color: #fff; }

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.brochure-card {
  background: var(--charcoal);
  border: 1px solid var(--divider-dark);
  overflow: hidden;
  transition: border-color 0.4s;
}
.brochure-card:hover { border-color: var(--gold-dark); }
.brochure-card-image {
  aspect-ratio: 3/4;
  background: var(--dark-grey);
  overflow: hidden;
}
.brochure-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.brochure-card:hover .brochure-card-image img { transform: scale(1.03); }
.brochure-card-body {
  padding: 1.8rem;
}
.brochure-card-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.brochure-card-body p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.brochure-card-body .btn-gold {
  font-size: 0.6rem;
  padding: 0.7rem 1.6rem;
}

/* Wines services strip */
.wines-services { padding: var(--section-pad); background: var(--warm-white); }
.wines-services-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.wines-services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.service-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.1rem;
}
.service-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.service-item p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.65;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid-section { padding: var(--section-pad); background: var(--cream); }
.contact-grid-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.contact-detail {
  margin-bottom: 2rem;
}
.contact-detail h3 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-detail p,
.contact-detail a {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--gold); }

/* Contact form */
.contact-form h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--off-white);
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  padding: 5rem 3.5rem 2rem;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--divider-dark);
}
.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-light-muted);
}
.footer-bottom a {
  color: var(--text-light-muted);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border: 1px solid var(--divider-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  z-index: 90;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 404 PAGE ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--rich-black);
  text-align: center;
  padding: 2rem;
}
.error-page h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
.error-page p {
  font-size: 1rem;
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
}

/* ---------- PRIVACY / COOKIE POLICY ---------- */
.policy-content {
  padding: var(--section-pad);
  background: var(--warm-white);
}
.policy-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.policy-inner h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
}
.policy-inner h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 2rem 0 0.5rem;
}
.policy-inner p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy-inner ul {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}
.policy-inner ul li {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.policy-inner a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.policy-inner a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .two-col,
  .intro-inner,
  .brochure-inner,
  .about-partnership-inner,
  .contact-grid-inner { gap: 3rem; }

  .pillars-grid { gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem 1.5rem;
  }

  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }

  .page-hero { padding: 8rem 1.5rem 3rem; }

  .two-col,
  .intro-inner,
  .brochure-inner,
  .about-partnership-inner,
  .contact-grid-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .brochure-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .values-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-right { text-align: center; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .section-heading { font-size: 1.8rem; }
  .cta-headline { font-size: 1.8rem; }
  .nav-logo img { height: 36px; }
}

.form-success,
.form-error {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem 1.4rem;
  margin-bottom: 1.8rem;
  border-left: 2px solid;
}
.form-success {
  color: var(--sage);
  border-color: var(--sage);
  background: rgba(94, 107, 90, 0.06);
}
.form-error {
  color: #9A3B2E;
  border-color: #9A3B2E;
  background: rgba(154, 59, 46, 0.06);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
