/* ──────────────────────────────────────
   THE LINKS CLUB — Shared Stylesheet
────────────────────────────────────── */

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

:root {
  --moss:  #1e3018;
  --mid:   #2a3d20;
  --cream: #f2ead8;
  --ink:   #161710;
  --gold:  #c8a46a;
  --r:     2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

/* ── NAV ─────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  border-bottom: 1px solid rgba(200, 164, 106, 0.18);
}

.nav-wordmark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-wordmark-top {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 29px;
  color: var(--cream);
  letter-spacing: -0.3px;
}

.nav-wordmark-top em {
  font-weight: 900;
}

.nav-wordmark-sub {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(242, 234, 216, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--ink);
  padding: 13px 30px;
  border-radius: var(--r);
  letter-spacing: 0.2em;
  font-family: 'Source Serif 4', serif;
}
}

.nav-links .nav-cta a:hover {
  background: #d4b47e;
  color: var(--ink);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: opacity 0.2s;
}

/* ── HERO ─────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--moss);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('brand assets/stock-images/image-1.jpg') center center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* ── IMAGE SHOWCASE ──────────────────── */

.image-showcase {
  height: 520px;
  background: url('brand assets/stock-images/image-3.jpg') center 40%/cover no-repeat;
  position: relative;
}

.image-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22,23,16,0.15) 0%, rgba(22,23,16,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 40px;
}

.image-showcase-caption {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,234,216,0.45);
  font-weight: 600;
}

@media (max-width: 768px) {
  .image-showcase { height: 360px; }
  .image-showcase-overlay { padding: 0 24px 32px; }
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Topographic background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 120% 80% at 50% 50%, rgba(200,164,106,0.04) 0%, transparent 70%);
  pointer-events: none;
}


.hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(45px, 6.5vw, 78px);
  color: var(--cream);
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

/* ── BUTTONS ──────────────────────────── */

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Source Serif 4', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: #d4b47e;
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 234, 216, 0.3);
}

.btn-ghost-light:hover {
  border-color: rgba(242, 234, 216, 0.7);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--moss);
  border: 1px solid rgba(30, 48, 24, 0.3);
}

.btn-ghost-dark:hover {
  border-color: var(--moss);
}

.btn-moss {
  background: var(--moss);
  color: var(--cream);
}

.btn-moss:hover {
  background: #253d1e;
}

/* ── PAGE HEADER ─────────────────────── */

.page-header {
  background: var(--moss);
  padding: 160px 48px 88px;
  text-align: center;
}

.page-header .eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 72px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 15px;
  color: rgba(242, 234, 216, 0.62);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── SECTIONS ────────────────────────── */

.section {
  padding: 100px 48px;
}

.section-cream { background: var(--cream); }
.section-moss  { background: var(--moss); }
.section-ink   { background: var(--ink); }
.section-mid   { background: var(--mid); }

.container {
  max-width: 960px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
}

/* ── TYPOGRAPHY HELPERS ───────────────── */

.eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-moss .section-title,
.section-ink  .section-title,
.section-mid  .section-title {
  color: var(--cream);
}

.section-cream .section-title {
  color: var(--moss);
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  max-width: 580px;
}

.section-moss .section-body,
.section-ink  .section-body,
.section-mid  .section-body {
  color: rgba(242, 234, 216, 0.68);
}

.section-cream .section-body {
  color: rgba(30, 48, 24, 0.75);
}

.rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 28px 0;
}

/* ── FEATURE GRID ────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 3px;
  margin-top: 56px;
}

.feature-card {
  padding: 40px 32px;
  border-radius: var(--r);
}

.section-moss .feature-card  { background: rgba(0,0,0,0.22); }
.section-cream .feature-card { background: rgba(30,48,24,0.06); }
.section-ink .feature-card   { background: rgba(255,255,255,0.04); }

.feature-pin {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-moss .feature-title,
.section-ink  .feature-title { color: var(--cream); }
.section-cream .feature-title { color: var(--moss); }

.feature-desc {
  font-size: 13px;
  line-height: 1.7;
}

.section-moss .feature-desc,
.section-ink  .feature-desc { color: rgba(242,234,216,0.55); }
.section-cream .feature-desc { color: rgba(30,48,24,0.65); }

/* ── STORY SECTION ───────────────────── */

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-text p:last-of-type {
  margin-bottom: 0;
}

/* ── MEMBERSHIP CARDS ────────────────── */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 4px;
  margin-top: 56px;
}

.membership-card {
  padding: 52px 40px;
  border-radius: var(--r);
  background: rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
}

.membership-card.featured {
  background: var(--gold);
}

.membership-tag {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.membership-card.featured .membership-tag {
  color: rgba(22,23,16,0.55);
}

.membership-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 6px;
}

.membership-card.featured .membership-name {
  color: var(--ink);
}

.membership-price {
  font-size: 13px;
  color: rgba(242,234,216,0.45);
  margin-bottom: 28px;
}

.membership-card.featured .membership-price {
  color: rgba(22,23,16,0.55);
}

.membership-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.membership-features li {
  font-size: 13.5px;
  color: rgba(242,234,216,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(242,234,216,0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.membership-card.featured .membership-features li {
  color: rgba(22,23,16,0.85);
  border-bottom-color: rgba(22,23,16,0.12);
}

.membership-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

.membership-card.featured .membership-features li::before {
  color: rgba(22,23,16,0.4);
}

/* ── FAQ ─────────────────────────────── */

.faq-list {
  margin-top: 48px;
  border-top: 1px solid rgba(242,234,216,0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(242,234,216,0.12);
  padding: 28px 0;
}

.faq-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-answer {
  font-size: 14px;
  color: rgba(242,234,216,0.6);
  line-height: 1.75;
  max-width: 640px;
}

/* ── CONTACT LAYOUT ──────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  margin-top: 56px;
}

.info-block {
  margin-bottom: 36px;
}

.info-label {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.info-text {
  font-size: 14.5px;
  color: rgba(242,234,216,0.68);
  line-height: 1.7;
}

.info-text a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,234,216,0.25);
  transition: border-color 0.2s;
}

.info-text a:hover {
  border-color: var(--cream);
}

/* ── FORM ────────────────────────────── */

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 9px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(242,234,216,0.06);
  border: 1px solid rgba(242,234,216,0.14);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(242,234,216,0.28);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(200,164,106,0.55);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-select option {
  background: var(--ink);
  color: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── CTA STRIP ───────────────────────── */

.cta-strip {
  background: var(--gold);
  padding: 80px 48px;
  text-align: center;
}

.cta-strip .section-title {
  color: var(--ink);
  margin-bottom: 12px;
}

.cta-strip .section-body {
  color: rgba(22,23,16,0.7);
  margin: 0 auto 36px;
}

/* ── FOOTER ──────────────────────────── */

footer {
  background: var(--ink);
  padding: 64px 64px 40px;
  border-top: 1px solid rgba(200,164,106,0.12);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 64px;
}

.footer-logo svg {
  display: block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-contact p {
  font-size: 15px;
  color: rgba(242,234,216,0.55);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  text-align: right;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,234,216,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(200,164,106,0.08);
  font-size: 11px;
  color: rgba(242,234,216,0.22);
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────── */

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid rgba(200,164,106,0.15);
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    border-bottom: 1px solid rgba(242,234,216,0.07);
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    border-bottom: none;
  }

  .nav-links .nav-cta a {
    display: inline-block;
    padding: 11px 24px;
  }

  .hero { padding: 120px 24px 72px; }
  .page-header { padding: 128px 24px 72px; }
  .section { padding: 72px 24px; }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  footer { padding: 48px 24px 36px; }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .cta-strip { padding: 64px 24px; }
}

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