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

:root {
    --cream: #FAF8F4;
    --beige: #EDE5D8;
    --gold:  #B8956A;
    --dark:  #1C1712;
    --mid:   #6B5C4E;
    --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* NAVIGATION */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 28px 52px;
    transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}
#navbar.scrolled {
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 52px;
    box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}
.nav-left { display: flex; gap: 40px; list-style: none; }
.nav-left a {
    text-decoration: none; color: var(--white);
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400;
    transition: color 0.3s;
}
#navbar.scrolled .nav-left a { color: var(--dark); }
.nav-left a:hover { color: var(--gold) !important; }
.nav-logo-wrap { text-align: center; }
.nav-logo {
    height: 38px; width: auto; display: inline-block;
    transition: filter 0.5s;
    filter: brightness(0) invert(1);
}
#navbar.scrolled .nav-logo { filter: none; }
.nav-right { display: flex; justify-content: flex-end; }
.nav-cta {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    padding: 10px 24px; border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}
#navbar.scrolled .nav-cta { color: var(--dark); border-color: var(--dark); }
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--white) !important; }

/* HERO */
.hero { height: 100vh; min-height: 680px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { object-position: center 25%; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: var(--white); padding: 0 32px;
}
.hero-eyebrow { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 32px; opacity: 0.85; font-weight: 400; }
.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 9vw, 110px); font-weight: 300; font-style: italic;
    line-height: 1.0; margin-bottom: 40px;
}
.hero-locations { font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; opacity: 0.7; margin-bottom: 56px; }
.hero-locations span { margin: 0 12px; opacity: 0.4; }
.btn-hero {
    display: inline-block; padding: 15px 48px;
    border: 1px solid rgba(255,255,255,0.65);
    color: var(--white); text-decoration: none;
    font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 400;
    transition: all 0.4s;
}
.btn-hero:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.hero-scroll-cue {
    position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.55); font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* MANIFESTO */
.manifesto { background: var(--dark); padding: 72px 48px; text-align: center; }
.manifesto-rule { width: 56px; height: 1px; background: var(--gold); margin: 0 auto 32px; }
.manifesto p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(19px, 2.8vw, 30px); font-weight: 300; font-style: italic;
    line-height: 1.75; color: rgba(250,248,244,0.88); max-width: 740px; margin: 0 auto;
}

/* SHARED */
.section-label { font-size: 9px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 68px); font-weight: 300; line-height: 1.08; }
.section-title em { font-style: italic; color: var(--gold); }
.btn-outline {
    display: inline-block; padding: 14px 44px; border: 1px solid var(--dark);
    color: var(--dark); text-decoration: none; font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 400; transition: all 0.35s;
}
.btn-outline:hover { background: var(--dark); color: var(--cream); }

/* SERVICES */
.services { padding: 104px 52px; background: var(--cream); }
.services-header { text-align: center; max-width: 580px; margin: 0 auto 72px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; max-width: 1440px; margin: 0 auto; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 2/3; }
.service-card img { transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover img { transform: scale(1.07); }
.service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px 28px; color: var(--white);
}
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 6px; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; font-style: italic; margin-bottom: 10px; }
.svc-desc { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); line-height: 2; }

/* PORTFOLIO */
.portfolio-wrap { background: var(--beige); }
.portfolio-header { text-align: center; padding: 96px 52px 64px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 340px; gap: 4px; grid-auto-flow: dense; }
.p-item { overflow: hidden; cursor: pointer; }
.p-item img { transition: transform 0.7s ease; }
.p-item:hover img { transform: scale(1.05); }
.p-tall  { grid-row: span 2; }
.p-wide  { grid-column: span 2; }
.portfolio-footer { text-align: center; padding: 56px; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--cream); }
.about-photo { position: relative; overflow: hidden; min-height: 560px; }
.about-photo img { object-position: center top; }
.about-text-wrap { display: flex; flex-direction: column; justify-content: center; padding: 88px 72px; }
.about-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.2vw, 24px); font-weight: 300; font-style: italic; line-height: 1.75; color: var(--mid); margin: 24px 0 28px; }
.about-body { font-size: 13px; line-height: 2.1; color: var(--mid); margin-bottom: 16px; }
.about-body + .about-body { margin-bottom: 40px; }

/* DESTINATIONS */
.destinations { background: var(--dark); color: var(--cream); padding: 104px 52px; text-align: center; }
.destinations .section-title { color: var(--cream); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 960px; margin: 72px auto 0; }
.dest-item { padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.08); }
.dest-item:last-child { border-right: none; }
.dest-line { width: 1px; height: 56px; background: var(--gold); margin: 0 auto 28px; }
.dest-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 16px; }
.dest-item p { font-size: 10px; letter-spacing: 1.5px; color: rgba(250,248,244,0.45); text-transform: uppercase; line-height: 2.4; }
.dest-note { margin-top: 64px; font-size: 11px; letter-spacing: 2px; color: rgba(250,248,244,0.35); text-transform: uppercase; }
.dest-note em { color: var(--gold); font-style: normal; }

/* INVESTMENT */
.investment { background: var(--beige); padding: 104px 52px; text-align: center; }
.inv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 1060px; margin: 68px auto 0; }
.inv-card { background: var(--cream); padding: 52px 40px; text-align: left; }
.inv-card.hero-card { background: var(--dark); color: var(--cream); }
.inv-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.inv-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; font-style: italic; line-height: 1.2; margin-bottom: 20px; }
.inv-card.hero-card .inv-name { color: var(--cream); }
.inv-price { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--dark); line-height: 1; }
.inv-card.hero-card .inv-price { color: var(--cream); }
.inv-from { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 32px; margin-top: 4px; }
.inv-card.hero-card .inv-from { color: rgba(250,248,244,0.45); }
.inv-list { list-style: none; font-size: 12px; line-height: 2.4; color: var(--mid); }
.inv-card.hero-card .inv-list { color: rgba(250,248,244,0.65); }
.inv-list li::before { content: '— '; color: var(--gold); }
.inv-footer { margin-top: 48px; font-size: 11px; color: var(--mid); letter-spacing: 1px; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); padding: 104px 52px; text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; max-width: 1040px; margin: 64px auto 0; }
.testi-card { background: var(--beige); padding: 48px 44px; text-align: left; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 300; font-style: italic; line-height: 1.7; color: var(--dark); margin-bottom: 28px; }
.testi-author { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

/* CONTACT */
.contact-wrap { background: var(--dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; max-width: 1200px; margin: 0 auto; padding: 104px 52px; }
.contact-info .section-title { color: var(--cream); }
.contact-body { font-size: 13px; line-height: 2.1; color: rgba(250,248,244,0.55); margin: 28px 0 40px; }
.contact-detail { font-size: 11px; letter-spacing: 1.5px; color: rgba(250,248,244,0.38); margin-bottom: 10px; }
.contact-detail a { color: var(--gold); text-decoration: none; transition: opacity 0.3s; }
.contact-detail a:hover { opacity: 0.75; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.fg { display: flex; flex-direction: column; }

.fg { margin-bottom: 28px; }
.fg label { display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,248,244,0.38); margin-bottom: 10px; }
.fg input, .fg select, .fg textarea {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(250,248,244,0.15);
    padding: 10px 0; color: var(--cream);
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300;
    outline: none; transition: border-color 0.35s; -webkit-appearance: none;
}
.fg select option { background: #2a2118; }
.fg textarea { resize: none; height: 72px; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.btn-submit {
    margin-top: 8px; padding: 16px 52px; background: var(--gold);
    color: var(--white); border: none;
    font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; cursor: pointer; transition: background 0.35s;
}
.btn-submit:hover { background: #9e7d55; }

/* FOOTER */
footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 44px 52px; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { height: 30px; width: auto; opacity: 0.45; }
.footer-copy { font-size: 9px; letter-spacing: 1.5px; color: rgba(250,248,244,0.22); text-align: center; line-height: 1.9; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(250,248,244,0.3); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* FADE IN */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.fi.visible { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: 0.1s; }
.fi-d2 { transition-delay: 0.2s; }
.fi-d3 { transition-delay: 0.3s; }
.fi-d4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .inv-grid { grid-template-columns: 1fr; max-width: 480px; }
    .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 900px) {
    .about { grid-template-columns: 1fr; }
    .about-photo { min-height: 420px; max-height: 520px; }
    .about-text-wrap { padding: 64px 40px; }
    .dest-grid { grid-template-columns: 1fr; gap: 40px; }
    .dest-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 40px; }
    .dest-item:last-child { border-bottom: none; padding-bottom: 0; }
    .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    #navbar { padding: 20px 24px; grid-template-columns: 1fr auto; }
    #navbar.scrolled { padding: 14px 24px; }
    .nav-left, .nav-right { display: none; }
    .services { padding: 72px 24px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .p-tall, .p-wide { grid-row: span 1; grid-column: span 1; }
    .about-text-wrap { padding: 52px 24px; }
    .destinations, .investment { padding: 72px 24px; }
    .contact-inner { padding: 72px 24px; gap: 48px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    footer { flex-direction: column; gap: 28px; text-align: center; }
}

/* ── ManyChat CTA ── */
.mc-cta {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 18px; height: 100%;
  padding: 24px 0;
}
.mc-icon { font-size: 3rem; line-height: 1; }
.mc-cta h3 {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 400; color: var(--white);
  margin: 0; line-height: 1.2;
}
.mc-cta > p {
  color: rgba(255,255,255,.72); font-size: .95rem;
  line-height: 1.7; max-width: 380px; margin: 0;
}
.btn-mc {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-family: var(--sans); font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 2px;
  transition: background .25s, transform .2s;
  margin-top: 8px;
}
.btn-mc:hover {
  background: #a6845d;
  transform: translateY(-2px);
}
.mc-sub {
  color: rgba(255,255,255,.38) !important;
  font-size: .78rem !important;
  letter-spacing: .06em;
  margin: 0 !important;
}

/* ── Klaviyo form states ── */
.form-success {
  text-align: center; padding: 64px 32px;
  color: var(--white);
}
.form-success span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 1.6rem;
  margin-bottom: 24px;
}
.form-success h3 {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 400; margin: 0 0 12px; color: var(--white);
}
.form-success p { color: rgba(255,255,255,.7); margin: 0; }
.form-error {
  color: #e07070; font-size: .85rem;
  margin-bottom: 12px; padding: 10px 14px;
  background: rgba(224,112,112,.12);
  border-radius: 2px; border-left: 3px solid #e07070;
}
