/* ═══════════════════════════════════════════════════════════
   Portugal Portfolio — Shared Stylesheet
   Design system: luxury, editorial, warm, evocative
   Fonts: Cormorant Garamond (headings) + Jost (body)
   ═══════════════════════════════════════════════════════════ */

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: #f5f0e8;
  color: #1e2b3a;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --navy:      #0d1b2a;
  --navy-90:   rgba(13,27,42,0.9);
  --navy-lt:   #152332;
  --cream:     #f5f0e8;
  --cream-dk:  #ede7db;
  --gold:      #b8932a;
  --gold-lt:   #d4aa4a;
  --gold-pale: #f0e4c4;
  --stone:     #e8e2d8;
  --ink:       #1e2b3a;
  --muted:     #7a7060;
  --white:     #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius:    4px;
  --radius-lg: 8px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --trans:     0.3s var(--ease);
  --trans-slow:0.6s var(--ease);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label-white { color: rgba(212,170,74,0.85); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(3.5rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.h-white { color: var(--white); }
.h-navy  { color: var(--navy); }

em { font-style: italic; color: var(--gold-lt); }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}
.lead-wide { max-width: 720px; }
.lead-center { margin: 0 auto; text-align: center; }
.lead-white { color: rgba(255,255,255,0.72); }

.small { font-size: 0.8rem; color: var(--muted); }
.caption {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── DECORATIVE RULES ────────────────────────────────────── */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
}
.rule-center { margin: 18px auto; }
.rule-white  { background: rgba(212,170,74,0.6); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 14px; flex-shrink: 0; transition: transform var(--trans); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,147,42,0.35);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--stone);
}
.btn-ghost-dark:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.72rem; }
.btn-lg { padding: 16px 40px; font-size: 0.82rem; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
.nav-transparent { /* default — over hero images */ }
.nav-solid {
  background: var(--navy);
}
.nav.is-scrolled {
  background: var(--navy-90);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-brand span { color: var(--gold-lt); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-center > li { position: relative; }
.nav-center a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.78);
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-center a:hover { color: var(--white); }
.nav-center .chevron {
  font-size: 0.55rem;
  opacity: 0.5;
  transition: transform var(--trans);
}
.nav-center li:hover .chevron { transform: rotate(180deg); }

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 10px 0;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: var(--shadow-lg);
  /* invisible padding bridge prevents gap between trigger and dropdown */
  margin-top: 0;
  padding-top: 20px;
  top: calc(100% - 10px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.nav-center li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65) !important;
  letter-spacing: 0.04em;
  transition: all var(--trans);
}
.nav-dropdown a:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.05);
  padding-left: 26px;
}

.nav-cta { font-size: 0.72rem; padding: 9px 22px; }

/* Mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--navy);
  padding: 24px clamp(20px,5vw,40px) 40px;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mobile-cta { margin-top: 24px; width: 100%; text-align: center; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: 72px; /* nav height */
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.55) 0%,
    rgba(13,27,42,0.4) 60%,
    rgba(13,27,42,0.65) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(48px,8vw,96px) clamp(20px,6vw,80px);
  max-width: 760px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-content .lead { color: rgba(255,255,255,0.75); margin: 0 auto; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 60px);
}
.section-sm { padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 60px); }

.section-navy  { background: var(--navy); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-cream-dk { background: var(--cream-dk); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }

.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }
.text-center .rule { margin: 18px auto; }

.max-560 { max-width: 560px; }
.max-720 { max-width: 720px; margin: 0 auto; }

/* ── SPLIT LAYOUT (image + text side by side) ────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.split:hover .split-image img { transform: scale(1.03); }
.split-content h2 { margin-bottom: 12px; }
.split-content .lead { margin-bottom: 24px; }

/* ── VENUE ITEMS (large alternating layout) ──────────────── */
.venue-items { display: flex; flex-direction: column; gap: clamp(60px,8vw,100px); }
.venue-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.venue-item.flip { direction: rtl; }
.venue-item.flip > * { direction: ltr; }
.venue-item-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.venue-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.venue-item:hover .venue-item-img img { transform: scale(1.04); }
.venue-item-body .v-location {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.venue-item-body h3 { color: var(--navy); margin-bottom: 14px; }
.venue-item-body .lead { margin-bottom: 20px; }
.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.venue-meta-pair { }
.venue-meta-pair dt {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.venue-meta-pair dd { font-size: 0.85rem; color: var(--navy); }

/* ── CARD GRIDS ──────────────────────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Venue card */
.vcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.vcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.vcard:hover img { transform: scale(1.06); }
.vcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.1) 55%);
}
.vcard-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.vcard-loc {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 5px;
}
.vcard h4 { color: var(--white); font-size: 1.25rem; margin-bottom: 5px; }
.vcard p { font-size: 0.75rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: 10px; }
.vcard-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.vcard-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 20px;
}

/* Person card (chef) */
.person-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(48px,6vw,80px);
  border-bottom: 1px solid var(--stone);
}
.person-item:last-child { border-bottom: none; padding-bottom: 0; }
.person-item.flip { grid-template-columns: 1fr 420px; }
.person-item.flip .person-img { order: 2; }
.person-item.flip .person-body { order: 1; }
.person-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.person-item:hover .person-img img { transform: scale(1.03); }
.person-role {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.person-body h3 { color: var(--navy); margin-bottom: 16px; }
.person-body .lead { margin-bottom: 20px; }
.person-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.person-style {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--stone);
}
.person-style strong { color: var(--navy); font-weight: 500; }

/* Entertainment item */
.ent-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
  padding-bottom: clamp(48px,6vw,72px);
  border-bottom: 1px solid var(--stone);
}
.ent-item:last-child { border-bottom: none; padding-bottom: 0; }
.ent-item.flip { direction: rtl; }
.ent-item.flip > * { direction: ltr; }
.ent-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ent-img img { width:100%; height:100%; object-fit:cover; transition:transform var(--trans-slow); }
.ent-item:hover .ent-img img { transform: scale(1.04); }
.ent-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ent-body h3 { color: var(--navy); margin-bottom: 12px; }
.ent-body .lead { margin-bottom: 16px; }
.ent-features {
  margin-bottom: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--stone);
}
.ent-features li {
  font-size: 0.83rem;
  color: var(--muted);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.ent-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.2;
}
.ent-bestfor {
  font-size: 0.78rem;
  color: var(--navy);
}
.ent-bestfor b { font-weight: 500; }

/* Group card */
.gcard {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
}
.gcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.gcard-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.gcard-img img { width:100%;height:100%;object-fit:cover; transition:transform var(--trans-slow); }
.gcard:hover .gcard-img img { transform: scale(1.05); }
.gcard-body { padding: 28px; }
.gcard-tag { font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.gcard h3 { color:var(--navy); font-size:1.6rem; margin-bottom:10px; }
.gcard .lead { font-size:0.87rem; margin-bottom:20px; }

/* Experience item */
.exp-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
  padding-bottom: clamp(48px,6vw,72px);
  border-bottom: 1px solid var(--stone);
}
.exp-item:last-child { border-bottom:none; padding-bottom:0; }
.exp-item.flip { direction:rtl; }
.exp-item.flip > * { direction:ltr; }
.exp-img { border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3; }
.exp-img img { width:100%;height:100%;object-fit:cover; transition:transform var(--trans-slow); }
.exp-item:hover .exp-img img { transform:scale(1.04); }
.exp-body h3 { color:var(--navy); margin-bottom:12px; }
.exp-body .lead { margin-bottom:16px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testi-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 18px;
}
.testi-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { font-size:0.82rem; font-weight:500; color:var(--white); }
.testi-event { font-size:0.72rem; color:var(--gold-lt); margin-top:3px; }

/* ── SERVICE TILES (homepage) ────────────────────────────── */
.services-row {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
  margin-top: 48px;
}
.stile {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--trans);
  cursor: pointer;
}
.stile:hover {
  border-color: var(--gold-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stile-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.stile-icon svg { width: 20px; color: var(--gold); }
.stile h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: 6px; }
.stile p  { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 10px;
}
.step-card h4 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.step-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── HOST CARDS ──────────────────────────────────────────── */
.host-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 40px;
}
.hcard {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 28px;
}
.hcard-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.hcard-icon svg { width: 22px; color: var(--gold); }
.hcard h4 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
.hcard p  { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* ── LANGUAGE TAGS ───────────────────────────────────────── */
.lang-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.lang-tag {
  padding: 6px 16px;
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--navy);
}

/* ── JOURNAL ─────────────────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.jcard { cursor: pointer; }
.jcard-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 16px;
}
.jcard-img img { width:100%;height:100%;object-fit:cover; transition:transform var(--trans-slow); }
.jcard:hover .jcard-img img { transform: scale(1.05); }
.jcard-tag { font-size:0.62rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.jcard-meta { font-size:0.72rem; color:var(--muted); margin-bottom:8px; }
.jcard h3 { color:var(--navy); font-size:1.5rem; margin-bottom:8px; line-height:1.3; }
.jcard p  { font-size:0.83rem; color:var(--muted); line-height:1.7; }
.jcard-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size:0.75rem;
  color:var(--gold);
  margin-top:12px;
  transition: gap var(--trans);
}
.jcard:hover .jcard-read { gap: 10px; }

/* ── QUOTE FORM ──────────────────────────────────────────── */
.qform {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(32px,5vw,56px);
  max-width: 740px;
  margin: 0 auto;
}
.qform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.qform-field { margin-bottom: 20px; }
.qform-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.qform-field input,
.qform-field select,
.qform-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  appearance: none;
  -webkit-appearance: none;
}
.qform-field input:focus,
.qform-field select:focus,
.qform-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.qform-field textarea { min-height: 120px; resize: vertical; }

/* ── ALSO PART SECTION ───────────────────────────────────── */
.also-part {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: 56px;
  border-top: 1px solid var(--stone);
}
.also-link { text-align: center; }
.also-link-cap { font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); margin-bottom:5px; }
.also-link a { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--navy); transition:color var(--trans); }
.also-link a:hover { color: var(--gold); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,60px);
  text-align: center;
  background: var(--cream-dk);
  border-top: 1px solid var(--stone);
}
.cta-band h2 { color: var(--navy); margin: 12px 0 16px; }
.cta-band .lead { margin: 0 auto 32px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: clamp(48px,7vw,80px) clamp(20px,5vw,60px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold-lt); }
.footer-brand-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-nav-links li { margin-bottom: 10px; }
.footer-nav-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-nav-links a:hover { color: var(--white); }
.footer-contact-line {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact-line a { color: rgba(255,255,255,0.55); transition: color var(--trans); }
.footer-contact-line a:hover { color: var(--white); }
.footer-socials { display:flex; gap:16px; margin-top:18px; }
.footer-social {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  transition: color var(--trans);
}
.footer-social:hover { color: var(--gold-lt); }
.footer-bottom {
  padding-top: 24px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-row { grid-template-columns: repeat(3,1fr); }
  .person-item  { grid-template-columns: 320px 1fr; }
  .person-item.flip { grid-template-columns: 1fr 320px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .venue-item, .venue-item.flip,
  .ent-item, .ent-item.flip,
  .exp-item, .exp-item.flip,
  .split, .split-reverse { grid-template-columns: 1fr; direction: ltr; }
  .person-item, .person-item.flip { grid-template-columns: 1fr; }
  .person-item.flip .person-img,
  .person-item.flip .person-body { order: unset; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .journal-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-center, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .host-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .qform-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .also-part { gap: 24px; }
}
@media (max-width: 480px) {
  .services-row { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){.hero-subtext{display:none !important;}}
