/* ===========================================================
   Ascend Vacation Group — warm & friendly identity
   =========================================================== */

:root {
  /* Palette — muted from AVG logo (green arrow / blue wave / orange sun) */
  --sand:        #FBF8F2;   /* page base, warm off-white */
  --sand-deep:   #F0EDE4;   /* alt section / cards */
  --cream-line:  #E4DFD2;   /* hairlines on sand */
  --pine:        #2C6E4F;   /* deep muted green, trust anchor (from logo green, deepened) */
  --pine-soft:   #3C8A63;
  --pine-tint:   #E2EFE8;   /* pale green wash */
  --sky:         #3A93C9;   /* muted logo blue, secondary accent */
  --sky-deep:    #2A7AAC;
  --sky-tint:    #E2EFF6;
  --apricot:     #EE9438;   /* logo orange — CTA / "book" actions */
  --apricot-deep:#D9742A;
  --ink:         #243029;   /* primary text */
  --ink-soft:    #54625A;   /* secondary text */
  --white:       #FFFFFF;

  /* Type */
  --display: "Lora", Georgia, "Times New Roman", serif;
  --body:    "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Shape & depth */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(35,48,41,.06);
  --shadow-md: 0 10px 30px rgba(35,48,41,.10);
  --shadow-lg: 0 24px 60px rgba(35,48,41,.16);

  /* Layout */
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 110px); }
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine-soft);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--apricot);
  border-radius: 2px;
}
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-inline: auto; }

h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 1.02rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--apricot); color: #3a2410; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--apricot-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-ghost:hover { background: var(--pine); color: #fff; transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--pine); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-line);
}
.site-header .wrap { max-width: 1500px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 76px; position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; line-height: 1.05; color: var(--pine); white-space: nowrap; flex: none; }
.brand .mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .mark svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 1px; }
.nav-links a {
  font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); white-space: nowrap;
  padding: 8px 9px; border-radius: var(--r-pill); transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--pine); background: var(--pine-tint); }
.nav-links a.active { color: var(--pine); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex: none; }
.nav-cta .btn { padding: 10px 16px; font-size: 0.9rem; white-space: nowrap; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--pine); }
.menu-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 92px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--pine); }
.hero .lede { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--apricot); }

.hero-media { position: relative; }
.hero-photo {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: var(--pine-tint);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 30px;
  background: var(--white); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 13px; max-width: 250px;
}
.hero-badge .num { font-family: var(--display); font-size: 1.7rem; color: var(--pine); line-height: 1; }
.hero-badge .lbl { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; line-height: 1.3; }
.hero-badge .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--apricot); display: grid; place-items: center; flex: none; }
.hero-badge .ico svg { width: 22px; height: 22px; }

/* soft horizon motif */
.horizon { position: absolute; inset: 0; pointer-events: none; opacity: .5; }

/* ---------- Stats strip ---------- */
.stats { background: var(--pine); color: #eaf3f0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-block: 46px; }
.stat .num { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1; }
.stat .lbl { font-size: 0.9rem; color: #bcd6cf; margin-top: 8px; }
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.13); padding-right: 30px; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--sky-tint); display: grid; place-items: center; margin-bottom: 18px; }
.card .ico svg { width: 26px; height: 26px; color: var(--sky-deep); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--sand-deep); border-radius: var(--r-lg); }
.step .n {
  counter-increment: step; font-family: var(--display); font-size: 1rem; font-weight: 600;
  width: 40px; height: 40px; border-radius: 50%; background: var(--apricot); color: #3a2410;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step .n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Split / about band ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-body h2 { margin-bottom: 16px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-soft); }
.checklist .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--pine-tint); display: grid; place-items: center; margin-top: 2px; }
.checklist .tick svg { width: 14px; height: 14px; color: var(--pine); }
.checklist strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--pine); color: #eaf3f0; border-radius: var(--r-lg); padding: clamp(36px, 6vw, 64px); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 14px; max-width: 18ch; }
.cta-band p { color: #c2dad3; max-width: 52ch; margin-bottom: 26px; }
.cta-band .btn-primary { font-size: 1.08rem; padding: 16px 32px; }
.cta-band .sun {
  position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240,145,62,.5), transparent 65%); border-radius: 50%;
}

/* ---------- Form page ---------- */
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.book-aside { position: sticky; top: 100px; }
.book-aside .card-quiet { background: var(--sand-deep); border-radius: var(--r-lg); padding: 28px; margin-top: 22px; }
.form-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 40px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--apricot-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--cream-line); border-radius: var(--r-sm);
  background: var(--sand); transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pine-soft); box-shadow: 0 0 0 3px var(--pine-tint); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.86rem; color: var(--ink-soft); margin-top: 4px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success .ico { width: 64px; height: 64px; border-radius: 50%; background: var(--pine-tint); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ico svg { width: 34px; height: 34px; color: var(--pine); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; margin-top: 40px; }
.faq-item { border: 1px solid var(--cream-line); border-radius: var(--r-md); background: var(--white); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { flex: none; transition: transform .25s; color: var(--pine); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.contact-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-card .ico { width: 50px; height: 50px; border-radius: 13px; background: var(--apricot); display: grid; place-items: center; margin-bottom: 16px; }
.contact-card .ico svg { width: 24px; height: 24px; color: #fff; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--ink-soft); }
.contact-card a:hover { color: var(--pine); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c3cdc7; padding-block: 56px 30px; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 1.2rem; color: #fff; margin-bottom: 14px; }
.footer-brand .mark { width: 40px; height: 40px; display: grid; place-items: center; }
.footer-brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand .mark svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-family: var(--body); font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: #aab6b0; padding: 5px 0; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-about { color: #9aa6a0; font-size: 0.92rem; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .15s; }
.socials a:hover { background: var(--pine-soft); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.footer-bbb { margin-top: 18px; }
.footer-bbb img { border-radius: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: #8c9892; }
.footer-bottom a:hover { color: #fff; }

/* ---------- TripDrop banner ---------- */
.tripdrop {
  background: linear-gradient(120deg, var(--apricot) 0%, var(--apricot-deep) 100%);
  color: #3a2410;
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tripdrop::after {
  content: ""; position: absolute; right: -40px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.18); pointer-events: none;
}
.tripdrop .td-copy { position: relative; z-index: 1; max-width: 60ch; }
.tripdrop .eyebrow { color: #6b3a12; }
.tripdrop .eyebrow::before { background: #6b3a12; }
.tripdrop h2 { color: #3a2410; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.tripdrop p { color: #5a3a1c; margin: 0; font-weight: 500; }
.tripdrop .btn { position: relative; z-index: 1; flex: none; }
.tripdrop .btn-dark { background: var(--ink); color: #fff; }
.tripdrop .btn-dark:hover { background: #0f1813; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Legal / long-form pages ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal .updated { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--cream-line); }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.18rem; margin: 26px 0 10px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul.bullets { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal ul.bullets li { color: var(--ink-soft); margin-bottom: 9px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--pine); text-decoration: underline; font-weight: 600; }
.legal .callout { background: var(--sand-deep); border-radius: var(--r-md); padding: 22px 26px; margin: 20px 0; }
.legal .callout p:last-child { margin-bottom: 0; }

/* ---------- Member hub ---------- */
.hub-card {
  max-width: 760px; margin: 48px auto 0;
  background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 52px); text-align: center;
}
.hub-card .ico { width: 68px; height: 68px; border-radius: 18px; background: var(--sky-tint); display: grid; place-items: center; margin: 0 auto 22px; }
.hub-card .ico svg { width: 34px; height: 34px; color: var(--sky-deep); }
.hub-card h2 { margin-bottom: 14px; }
.hub-card p { color: var(--ink-soft); max-width: 56ch; margin-inline: auto; margin-bottom: 14px; }
.hub-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.hub-divider { display: flex; align-items: center; gap: 16px; max-width: 480px; margin: 36px auto 0; color: var(--ink-soft); font-size: 0.9rem; }
.hub-divider::before, .hub-divider::after { content: ""; flex: 1; height: 1px; background: var(--cream-line); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.blog-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .thumb { aspect-ratio: 16/10; background: var(--pine-tint); position: relative; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .pad { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .cat { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine-soft); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.22rem; margin-bottom: 8px; line-height: 1.25; }
.blog-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 16px; flex: 1; }
.blog-card .meta { font-size: 0.84rem; color: var(--ink-soft); }
.blog-card a.read { color: var(--pine); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.blog-card a.stretch { position: absolute; inset: 0; z-index: 1; }
.blog-card { position: relative; }
/* Article */
.article { max-width: 740px; margin-inline: auto; }
.article .cat { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine-soft); margin-bottom: 12px; }
.article .meta { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--cream-line); }
.article h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.article p { color: var(--ink); font-size: 1.08rem; line-height: 1.7; margin-bottom: 20px; }
.article ul { margin-bottom: 20px; }
.article ul li { color: var(--ink); margin-bottom: 10px; line-height: 1.6; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- What to expect timeline ---------- */
.expect-steps { max-width: 760px; margin: 48px auto 0; }
.expect-step { display: flex; gap: 22px; position: relative; padding-bottom: 36px; }
.expect-step:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 52px; bottom: 0; width: 2px; background: var(--cream-line); }
.expect-step .num { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--pine); color: #fff; font-family: var(--display); font-size: 1.2rem; display: grid; place-items: center; z-index: 1; }
.expect-step .body h3 { font-size: 1.25rem; margin-bottom: 7px; }
.expect-step .body p { color: var(--ink-soft); margin: 0; }
.expect-promise { max-width: 760px; margin: 8px auto 0; background: var(--pine-tint); border-radius: var(--r-lg); padding: 28px 32px; display: flex; gap: 18px; align-items: flex-start; }
.expect-promise .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--pine); display: grid; place-items: center; }
.expect-promise .ico svg { width: 24px; height: 24px; color: #fff; }
.expect-promise h3 { font-size: 1.15rem; margin-bottom: 6px; }
.expect-promise p { color: var(--ink-soft); margin: 0; }

/* ---------- The Ascend Difference ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.diff-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 30px 28px; }
.diff-card .ico { width: 50px; height: 50px; border-radius: 13px; background: var(--pine-tint); display: grid; place-items: center; margin-bottom: 16px; }
.diff-card .ico svg { width: 25px; height: 25px; color: var(--pine); }
.diff-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.diff-card p { color: var(--ink-soft); margin: 0; }
.diff-contrast { max-width: 820px; margin: 48px auto 0; }
.diff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.diff-then, .diff-now { border-radius: var(--r-md); padding: 20px 24px; }
.diff-then { background: var(--sand-deep); }
.diff-now { background: var(--pine-tint); }
.diff-then .lbl, .diff-now .lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.diff-then .lbl { color: var(--ink-soft); }
.diff-now .lbl { color: var(--pine); }
.diff-then p, .diff-now p { margin: 0; color: var(--ink); font-size: 0.97rem; }

/* ---------- Owner message ---------- */
.letter { max-width: 760px; margin-inline: auto; }
.letter p { color: var(--ink); font-size: 1.1rem; line-height: 1.7; margin-bottom: 20px; }
.letter .signoff { margin-top: 36px; }
.letter .signoff .name { font-family: var(--display); font-size: 1.5rem; color: var(--pine); }
.letter .signoff .title { color: var(--ink-soft); font-size: 0.95rem; margin-top: 2px; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.quote-card {
  background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: 34px 32px; display: flex; flex-direction: column;
}
.quote-card .qmark { font-family: var(--display); font-size: 3rem; line-height: 0.6; color: var(--apricot); margin-bottom: 10px; }
.quote-card p { color: var(--ink); font-size: 1.12rem; line-height: 1.55; font-family: var(--display); font-weight: 400; margin-bottom: 20px; flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--pine-tint); display: grid; place-items: center; flex: none; font-family: var(--display); font-weight: 600; color: var(--pine); }
.quote-card .who strong { display: block; color: var(--ink); font-size: 0.98rem; }
.quote-card .who span { color: var(--ink-soft); font-size: 0.86rem; }
.quote-stars { color: var(--apricot); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }

/* ---------- Winner highlight ---------- */
.winner {
  background: linear-gradient(120deg, var(--pine) 0%, var(--pine-soft) 100%);
  color: #eaf3f0; border-radius: var(--r-lg); padding: clamp(32px,5vw,52px);
  position: relative; overflow: hidden;
}
.winner .conf { position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(240,145,62,.45), transparent 65%); border-radius: 50%; pointer-events: none; }
.winner .tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); color: #fff; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 16px; }
.winner h2 { color: #fff; margin-bottom: 12px; max-width: 20ch; position: relative; }
.winner p { color: #c2dad3; max-width: 56ch; margin-bottom: 22px; position: relative; }
.winner .btn { position: relative; }

/* ---------- Trust badge strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 0; background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 8px;
}
.trust-item { display: flex; align-items: center; gap: 12px; padding: 12px 26px; flex: 1 1 auto; justify-content: center; min-width: 240px; }
.trust-item:not(:last-child) { border-right: 1px solid var(--cream-line); }
.trust-item .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--pine-tint); display: grid; place-items: center; flex: none; }
.trust-item .ico svg { width: 21px; height: 21px; color: var(--pine); }
.trust-item .txt strong { display: block; font-family: var(--display); font-size: 1rem; color: var(--ink); line-height: 1.15; }
.trust-item .txt span { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 760px) {
  .trust-item { flex-basis: 100%; border-right: 0 !important; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--cream-line); }
}

/* ---------- Careers ---------- */
.careers-intro { max-width: 720px; }
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.value-pill { background: var(--sand-deep); border-radius: var(--r-md); padding: 22px 24px; }
.value-pill h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value-pill p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }
.job-card {
  background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px); margin-bottom: 28px;
}
.job-head { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.job-card h2 { font-size: 1.65rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.job-tag { background: var(--pine-tint); color: var(--pine); font-weight: 600; font-size: 0.82rem; padding: 6px 13px; border-radius: var(--r-pill); }
.job-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; background: var(--sand-deep); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 22px; }
.job-meta .m strong { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pine-soft); margin-bottom: 3px; }
.job-meta .m span { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.job-card h4 { font-family: var(--display); font-size: 1.15rem; margin: 24px 0 12px; color: var(--ink); }
.job-card p { color: var(--ink-soft); }
.job-card ul.job-list { margin: 0 0 8px; }
.job-card ul.job-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); margin-bottom: 11px; }
.job-card ul.job-list .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--pine-tint); display: grid; place-items: center; margin-top: 2px; }
.job-card ul.job-list .tick svg { width: 13px; height: 13px; color: var(--pine); }
.job-card ul.job-list strong { color: var(--ink); }
.job-apply { background: var(--pine-tint); border-radius: var(--r-md); padding: 22px 24px; margin-top: 26px; }
.job-apply h4 { margin-top: 0; }
.job-apply p { margin-bottom: 14px; }

/* ---------- Thank you page ---------- */
.thanks { max-width: 720px; margin-inline: auto; text-align: center; }
.thanks .check-badge {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--pine-tint); display: grid; place-items: center;
  position: relative;
}
.thanks .check-badge::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid var(--pine-tint);
}
.thanks .check-badge svg { width: 48px; height: 48px; color: var(--pine); }
.thanks h1 { margin-bottom: 16px; }
.thanks .lede { margin-inline: auto; margin-bottom: 36px; }
.thanks-steps {
  text-align: left; background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 40px); margin-bottom: 36px;
}
.thanks-steps h2 { font-size: 1.3rem; margin-bottom: 22px; text-align: center; }
.thanks-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.thanks-step:last-child { margin-bottom: 0; }
.thanks-step .num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--apricot); color: #3a2410; font-family: var(--display);
  font-weight: 600; display: grid; place-items: center; font-size: 1rem;
}
.thanks-step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.thanks-step p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.thanks-tip { font-size: 0.92rem; color: var(--ink-soft); margin-top: 28px; }
.thanks-tip strong { color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews-embed { margin-top: 40px; }

/* ---------- Certificates ---------- */
.cert-intro { max-width: 760px; }
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.cert-card {
  background: var(--white); border: 1px solid var(--cream-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card .badge {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  background: var(--pine-tint); color: var(--pine); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.cert-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.cert-card .nights { color: var(--apricot-deep); font-weight: 700; font-size: 0.92rem; margin-bottom: 14px; }
.cert-card .desc { color: var(--ink-soft); margin-bottom: 16px; }
.cert-card ul.incl { margin-bottom: 16px; }
.cert-card ul.incl li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); margin-bottom: 9px; font-size: 0.97rem; }
.cert-card ul.incl .tick { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--sky-tint); display: grid; place-items: center; margin-top: 2px; }
.cert-card ul.incl .tick svg { width: 12px; height: 12px; color: var(--sky-deep); }
.cert-card .choose { background: var(--sand-deep); border-radius: var(--r-md); padding: 14px 16px; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 16px; }
.cert-card .choose strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cert-card .fineprint { font-size: 0.85rem; color: var(--ink-soft); border-top: 1px solid var(--cream-line); padding-top: 14px; margin-top: auto; margin-bottom: 16px; }
.cert-card .fineprint strong { color: var(--ink); }
.cert-card .btn { align-self: flex-start; }
.cert-disclaimer { max-width: 760px; margin: 48px auto 0; padding: 24px 28px; background: var(--sand-deep); border-radius: var(--r-md); font-size: 0.9rem; color: var(--ink-soft); }
.cert-disclaimer strong { color: var(--ink); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--sand-deep); padding-block: clamp(48px, 7vw, 84px); border-bottom: 1px solid var(--cream-line); }
.page-hero .lede { margin-top: 16px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1420px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; order: 3; }
  .nav-cta { display: none; }
  .nav { gap: 10px; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sand); border-bottom: 1px solid var(--cream-line);
    padding: 14px var(--gutter) 22px; gap: 4px; box-shadow: var(--shadow-md);
    z-index: 60; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open a { padding: 14px 14px; border-bottom: 1px solid var(--cream-line); }
  .nav-links.open a:last-child { border-bottom: 0; }
  .nav-links.open .mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; padding: 0 14px; }
  .nav-links.open .mobile-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat:nth-child(2)::after, .stat:nth-child(2) { border-right: 0; }
  .stat { border-right: 0 !important; padding-right: 0 !important; }
  .cards, .steps, .contact-grid { grid-template-columns: 1fr; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .book-grid { grid-template-columns: 1fr; }
  .book-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge { left: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
