/* ============================================
   CORVIN — Main Stylesheet v4
   Aesthetic: Light cream/ivory, deep navy, gold — refined luxury
   ============================================ */

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

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

:root {
  --navy:         #1B2A3B;
  --navy-mid:     #1B2A3B;
  --navy-light:   #243649;
  --ivory:        #F5F0E8;
  --ivory-mid:    #EDE7DB;
  --ivory-dark:   #e0d8cc;
  --gold:         #C9A84C;
  --gold-light:   #d9bc72;
  --gold-dim:     rgba(201,168,76,0.5);
  --charcoal:     #1B2A3B;
  --charcoal-mid: #243649;
  --white:        #FDFAF4;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', 'Helvetica Neue', sans-serif;
  --max-width:    1200px;
  --transition:   0.4s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.centered { text-align: center; }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-headline.centered { text-align: center; }
.section-headline em { font-style: italic; color: var(--gold); }
.section-headline.dark { color: var(--navy); }
.section-headline.dark em { color: var(--gold); }
.section-headline.light { color: var(--ivory); }
.section-headline.light em { color: var(--gold); }
/* Default centered headline in navy sections stays ivory */
.section-navy .section-headline,
.section-dark .section-headline,
.section-charcoal .section-headline { color: var(--ivory); }

.body-text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: rgba(27,42,59,0.55);
  margin-bottom: 1.25rem;
  max-width: 54ch;
  font-weight: 300;
}
.body-text.dark { color: rgba(27,42,59,0.55); }
.body-text.light { color: rgba(245,240,232,0.65); }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* --- DECORATIVE RULE --- */
.rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.8;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ivory);
  border-color: rgba(245,240,232,0.4);
}
.btn-secondary:hover {
  background-color: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn-ghost:hover {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-dark {
  background-color: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn-dark:hover {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-full { width: 100%; text-align: center; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 2rem 0;
  transition: all var(--transition);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Default state: light cream background pages — navy text */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--navy);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 6px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
}
.nav-logo-raven {
  width: 26px;
  height: 26px;
  opacity: 0.85;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27,42,59,0.65);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim) !important;
  padding: 0.6rem 1.4rem;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--navy);
  transition: all var(--transition);
}

/* On scroll: navy background, ivory text */
.nav.scrolled {
  background: rgba(27, 42, 59, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.25rem 0;
  box-shadow: 0 1px 0 rgba(201,168,76,0.1);
}
.nav.scrolled .nav-logo { color: var(--ivory); }
.nav.scrolled .nav-links a { color: rgba(245,240,232,0.7); }
.nav.scrolled .nav-links a:hover { color: var(--ivory); }
.nav.scrolled .nav-hamburger span { background: var(--ivory); }

/* Internal pages start scrolled (already have nav.scrolled class) */

/* --- HERO (index) --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ivory);
  border-bottom: 3px solid var(--navy);
}

.hero-frame {
  position: absolute;
  inset: 3rem;
  border: 1px solid rgba(27,42,59,0.1);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}

.hero-logo-img {
  width: 420px;
  height: auto;
  margin: 0 auto 2.5rem;
  display: block;
  opacity: 0.95;
  border-radius: 12px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 55%, transparent 100%);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(27,42,59,0.45);
  margin-bottom: 3rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(27,42,59,0.28);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* --- PAGE HERO (internal pages) --- */
.page-hero {
  position: relative;
  height: 38vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--ivory);
  border-bottom: 3px solid var(--navy);
}
.page-hero-overlay { display: none; }
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .hero-eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
}
.page-hero-content .hero-headline {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  margin-bottom: 0;
  color: var(--navy);
  text-shadow: none;
}
.page-hero-content .hero-headline em { color: var(--gold); }

/* --- SECTION BLOCKS --- */
.section-light {
  padding: 8rem 0;
  background-color: var(--ivory);
}
.section-navy {
  padding: 8rem 0;
  background-color: var(--navy);
}
.section-dark {
  padding: 8rem 0;
  background-color: var(--navy);
}
.section-charcoal {
  padding: 8rem 0;
  background-color: var(--navy);
}

/* --- POSITIONING STRIP --- */
.positioning {
  background-color: var(--navy);
  padding: 2.25rem 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.positioning-text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.04em;
  text-align: center;
}

/* --- ABOUT / 2-COL GRID --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.two-col.gap-sm { gap: 4rem; }

.image-stack { position: relative; }
.image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--ivory);
}

/* --- EXPERIENCE ARC --- */
.arc-block { padding: 7rem 0; }
.arc-block.light { background: var(--ivory); }
.arc-block.dark { background: var(--navy); }
.arc-block.ivory { background: var(--ivory-mid); padding: 7rem 0; }

.arc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.arc-reverse { direction: rtl; }
.arc-reverse > * { direction: ltr; }

.arc-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--ivory-mid);
}
.arc-img-1 { background-image: url('../images/golf-morning.jpg'); }
.arc-img-2 { background-image: url('../images/golf-course.jpg'); }
.arc-img-3 { background-image: url('../images/golf-landscape.jpg'); }

.arc-time {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.arc-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.arc-block.light .arc-headline { color: var(--navy); }
.arc-block.dark .arc-headline { color: var(--ivory); }
.arc-block.ivory .arc-headline { color: var(--navy); }
.arc-block.light .body-text { color: rgba(27,42,59,0.55); }
.arc-block.dark .body-text { color: rgba(245,240,232,0.65); }
.arc-block.ivory .body-text { color: rgba(27,42,59,0.55); }

/* --- DETAILS GRID --- */
.details-intro { margin-bottom: 4rem; }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}
.detail-rule {
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.detail h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.detail p {
  font-size: 0.85rem;
  color: rgba(27,42,59,0.55);
  line-height: 1.85;
  font-weight: 300;
}

/* --- FULL BLEED SCENIC (now a navy quote block) --- */
.scenic {
  background-color: var(--navy);
  position: relative;
  padding: 5rem 0;
}
.scenic-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
.scenic-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  max-width: 720px;
  line-height: 1.55;
  opacity: 0.82;
}

/* --- DESTINATIONS --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  margin-bottom: 3.5rem;
}
.destination { overflow: hidden; cursor: pointer; }
.destination-image {
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  background-color: rgba(245,240,232,0.12);
  transition: transform 0.7s ease;
}
.destination:hover .destination-image { transform: scale(1.04); }
.dest-1, .dest-2, .dest-3 { background-color: rgba(245,240,232,0.08); }
.destination-info {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(245,240,232,0.12);
}
.destination-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}
.destination-info p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.destinations-more {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.destinations-more p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1.75rem;
}

/* --- VALUES --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,240,232,0.08);
}
.value {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(245,240,232,0.08);
  transition: background var(--transition);
}
.value:last-child { border-right: none; }
.value:hover { background: rgba(245,240,232,0.03); }
.value-rule {
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.value h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.value p {
  font-size: 0.83rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.9;
  font-weight: 300;
}
.values-intro-text {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.4);
  max-width: 560px;
  margin: 0 auto 4rem;
  font-weight: 300;
  line-height: 1.9;
}

/* --- CONTACT / FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  align-items: start;
}
.contact-detail { margin-top: 2.5rem; }
.contact-detail p {
  font-size: 0.83rem;
  color: rgba(27,42,59,0.45);
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.contact-detail a {
  color: var(--gold);
  transition: opacity var(--transition);
}
.contact-detail a:hover { opacity: 0.75; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(27,42,59,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid rgba(27,42,59,0.18);
  background: transparent;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(27,42,59,0.3);
  font-size: 0.85rem;
}
.form-group select option {
  background: var(--white);
  color: var(--navy);
}

/* --- FOOTER --- */
.footer {
  background-color: var(--navy);
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo img.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  opacity: 0.88;
  border-radius: 8px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
}
.footer-logo-raven {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}
.footer-rule {
  width: 1px;
  height: 32px;
  background: var(--gold-dim);
  margin: 0.5rem 0;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.65;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(245,240,232,0.65); }
.footer-copy {
  font-size: 0.65rem;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* --- FADE IN ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.service-card {
  background: rgba(245,240,232,0.04);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border: 1px solid rgba(245,240,232,0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(245,240,232,0.07); }
.service-icon {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.83rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.9;
  font-weight: 300;
}

/* --- HOW IT WORKS STEPS --- */
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.step-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 1.5rem;
  user-select: none;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.step-text {
  font-size: 0.83rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.9;
  font-weight: 300;
}

/* --- MEMBERSHIP TIERS --- */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.tier {
  background: rgba(245,240,232,0.04);
  padding: 4rem 3rem;
  position: relative;
  border: 1px solid rgba(245,240,232,0.06);
}
.tier-featured {
  background: rgba(245,240,232,0.08);
  border-top: 2px solid var(--gold);
}
.tier-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.35rem 0.75rem;
}
.tier-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.tier-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.tier-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--ivory);
}
.tier-period {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  font-weight: 300;
}
.tier-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tier-rule {
  width: 16px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.tier-benefits h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.tier-benefits p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.85;
  font-weight: 300;
}
.tier-cta { display: block; text-align: center; }

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  margin-top: 4rem;
}
.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.faq-item p {
  font-size: 0.83rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.9;
  font-weight: 300;
}

/* --- ABOUT PAGE --- */
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.about-stat {
  padding: 3rem 2.5rem;
  background: rgba(245,240,232,0.04);
  text-align: center;
  border: 1px solid rgba(245,240,232,0.06);
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.about-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

/* --- LIGHT SECTION OVERRIDES --- */
.section-light .section-headline { color: var(--navy); }
.section-light .section-headline em { color: var(--gold); }
.section-light .section-eyebrow { color: var(--gold); }
.section-light .body-text { color: rgba(27,42,59,0.55); }
.section-light .rule { background: var(--gold); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 4rem; }
  .contact-grid { gap: 4rem; }
  .arc-grid { gap: 4rem; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { gap: 2rem; }
  .about-stat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 150;
  }
  .nav.mobile-open .nav-links a {
    font-size: 0.85rem;
    color: var(--ivory);
    letter-spacing: 0.2em;
  }
  .nav.mobile-open .nav-logo { color: var(--ivory); }

  .section-light { padding: 5rem 0; }
  .section-navy { padding: 5rem 0; }
  .section-dark { padding: 5rem 0; }
  .section-charcoal { padding: 5rem 0; }

  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .image-accent { display: none; }

  .arc-block { padding: 4rem 0; }
  .arc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .arc-reverse { direction: ltr; }

  .details-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .destinations-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.08); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .tiers-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .page-hero { height: 34vh; min-height: 280px; }
  .page-hero-content { padding: 0 1.5rem 2.5rem; }
  .about-stat-grid { grid-template-columns: 1fr; }
  .hero-frame { inset: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; max-width: 100%; }
  * { max-width: 100%; }
  .hero-headline { font-size: 3rem; }
  .hero-sub { font-size: 0.95rem; }
  .section-headline { font-size: 2rem; }
  .arc-headline { font-size: 1.6rem; }
  .values-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .nav { padding: 1.25rem 0; }
  .nav-inner { padding: 0 1.25rem; }
  .footer { padding: 3rem 0 2rem; }
  .footer-logo { font-size: 1.4rem; }
  .btn { padding: 0.875rem 2rem; font-size: 0.6rem; }
  .contact-form { padding: 1.5rem; }
  .tier { padding: 2.5rem 1.75rem; }
  .service-card { padding: 2.25rem 1.75rem; }
  .hero-logo-img { width: 280px; }
}
