/* ═══════════════════════════════════════════════════════════════════
   OAKMONT PET — BRAND SITE STYLESHEET
   Heritage Craft for the Modern Hound
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --green-deep: #0A3D22;
  --green: #0D4A2A;
  --green-mid: #1A5C35;
  --green-light: #2A6D45;
  --gold: #C9A84C;
  --gold-bright: #D9BC65;
  --gold-light: #E8D5A3;
  --gold-pale: #F5EDD6;
  --cognac: #8B5E2A;
  --cognac-dark: #5C3A1E;
  --cream: #FDFAF3;
  --cream-warm: #F5EDD6;
  --stone: #E8E2D5;
  --charcoal: #1A1A1A;
  --gray: #5A6470;
  --gray-light: #A8AEB5;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Italiana', 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max: 1400px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --section-y: clamp(5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
em { font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════════ */
.announce {
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem var(--pad-x);
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.announce__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.announce__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 74, 42, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s ease;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: block;
  flex-shrink: 0;
}
.nav__logo {
  height: 56px;
  width: auto;
  display: block;
}
.nav__menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav__menu a:hover { color: var(--gold-bright); }
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--green-deep);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pattern overlay */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero__bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(201, 168, 76, 0.03) 49%, rgba(201, 168, 76, 0.03) 51%, transparent 52%);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

.hero__crest {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.2s forwards;
}
.hero__crest-img {
  height: clamp(120px, 18vw, 200px);
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(201, 168, 76, 0.15));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s forwards;
}
.hero__eyebrow .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}
.hero__title-1 { animation-delay: 0.7s; }
.hero__title-2 { animation-delay: 0.85s; }
.hero__title-3 { animation-delay: 1.0s; color: var(--gold-light); font-style: italic; font-weight: 300; }

.hero__lede {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--gold-pale);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.2s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.4s forwards;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.6s forwards;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.hero__meta-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1;
}
.hero__meta-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.hero__meta-sep {
  width: 1px;
  height: 30px;
  background: rgba(201, 168, 76, 0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease-out 2s forwards, bobble 2s ease-in-out 3s infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.4);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--cream);
  border-top: 1px solid rgba(13, 74, 42, 0.1);
  border-bottom: 1px solid rgba(13, 74, 42, 0.1);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: scroll 60s linear infinite;
}
.marquee__item {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--green);
  font-weight: 400;
}
.marquee__star {
  color: var(--gold);
  font-size: 1rem;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION TAG
   ═══════════════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--green);
}
.section-tag--light { color: var(--gold-light); }
.section-tag--centered {
  display: inline-flex;
  justify-content: center;
}
.section-tag__num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
}
.section-tag__line {
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section-tag__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════════════════════ */
.section-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  margin-bottom: 0;
}
.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.section-heading--light {
  color: var(--cream);
}
.section-heading--light em { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════════
   THE BRAND SECTION
   ═══════════════════════════════════════════════════════════════════ */
.brand {
  background: var(--cream);
  padding: var(--section-y) var(--pad-x);
  position: relative;
}
.brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad-x);
  right: var(--pad-x);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.brand__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.brand__lede {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.5;
  color: var(--green-deep);
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.brand__body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.brand__signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13, 74, 42, 0.15);
}
.brand__sig-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.brand__sig-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand__sig-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-deep);
  font-weight: 500;
}
.brand__sig-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════════════════════
   COLLECTION SECTION
   ═══════════════════════════════════════════════════════════════════ */
.collection {
  background: var(--green-deep);
  color: var(--cream);
  padding: var(--section-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.collection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.collection__header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.collection__subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--gold-pale);
  margin-top: 1.5rem;
  font-weight: 300;
}
.collection__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}
.product {
  background: rgba(253, 250, 243, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.75rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.product:hover::before { opacity: 1; }
.product__visual {
  background: var(--cream);
  border-radius: 2px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.product__svg {
  width: 100%;
  height: auto;
  display: block;
}
.product__info {
  position: relative;
  z-index: 1;
}
.product__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.product__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gold-pale);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.product__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.product__price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 500;
}
.product__status {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-weight: 500;
}
.collection__footer {
  max-width: 700px;
  margin: 4rem auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.collection__footer-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════
   THE CRAFT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.craft {
  background: var(--cream);
  padding: var(--section-y) var(--pad-x);
  position: relative;
}
.craft__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.craft__intro {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}
.craft__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}
.craft__card {
  text-align: left;
  padding: 0;
}
.craft__icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  width: 60px;
  height: 60px;
}
.craft__icon svg { width: 100%; height: 100%; }
.craft__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.craft__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 400;
}
.craft__quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(13, 74, 42, 0.15);
  border-bottom: 1px solid rgba(13, 74, 42, 0.15);
  position: relative;
}
.craft__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  opacity: 0.6;
}
.craft__quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.5;
  color: var(--green-deep);
  font-style: italic;
  font-weight: 300;
  margin: 1.5rem 0;
}
.craft__quote-attr {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   WAITLIST SECTION
   ═══════════════════════════════════════════════════════════════════ */
.waitlist {
  background: var(--green);
  color: var(--cream);
  padding: var(--section-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.waitlist__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.waitlist__crest {
  color: var(--gold);
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
}
.waitlist__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 1.5rem 0;
  letter-spacing: -0.01em;
}
.waitlist__heading em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}
.waitlist__body {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--gold-pale);
  margin-bottom: 3rem;
  font-weight: 300;
}
.waitlist__form { margin-top: 2rem; }
.waitlist__row {
  display: flex;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto 1.25rem;
  align-items: stretch;
}
.waitlist__row--secondary {
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}
.waitlist__input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--cream);
  padding: 1.15rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist__input::placeholder { color: rgba(245, 237, 214, 0.5); }
.waitlist__input:focus { border-color: var(--gold); }
.waitlist__alt {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
}
.waitlist__alt:hover { color: var(--gold-bright); }
.waitlist__fineprint {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gold-pale);
  opacity: 0.6;
  margin-top: 2rem;
  letter-spacing: 0.05em;
}
.waitlist__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 1.5rem;
}
.waitlist__success.show { display: flex; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  color: var(--gold-pale);
  padding-top: 5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) 4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer__col--brand .footer__logo {
  height: 90px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer__tag {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer__address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--gold-pale);
  opacity: 0.8;
}
.footer__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 0.75rem; }
.footer__list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-pale);
  transition: color 0.2s;
}
.footer__list a:hover { color: var(--gold); }
.footer__newsletter-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gold-pale);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}
.footer__newsletter {
  display: flex;
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-bottom: 1.5rem;
  position: relative;
}
.footer__newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}
.footer__newsletter input::placeholder { color: rgba(245, 237, 214, 0.4); }
.footer__newsletter button {
  background: var(--gold);
  color: var(--green-deep);
  padding: 0 1.2rem;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.footer__newsletter button:hover { background: var(--gold-bright); }
.footer__newsletter-success {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-style: italic;
}
.footer__social {
  display: flex;
  gap: 1rem;
  color: var(--gold);
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}
.footer__bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.5rem 0;
  background: var(--green-deep);
}
.footer__bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy, .footer__legal {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gold-pale);
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.footer__legal a { transition: color 0.2s; }
.footer__legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .brand__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__meta-sep { display: none; }
  .hero__meta { gap: 2rem; }
  .waitlist__row { flex-direction: column; }
  .waitlist__row--secondary { flex-direction: column; gap: 1rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
