/* ==========================================================================
   Travel by Tarryn: styles
   --------------------------------------------------------------------------
   THEME: to re-theme the site, edit the custom properties below.
   All colours and fonts used on the page come from these variables.
   Contrast notes (WCAG AA): --ink and --teal on --sand/--cream are > 7:1;
   white on --accent is ~5:1; --accent-text on --sand is > 4.5:1.
   ========================================================================== */
:root {
  /* Colours */
  --sand:        #f7f1e7;   /* page background (warm sand/cream) */
  --cream:       #fffaf3;   /* cards, form surfaces */
  --sand-deep:   #efe4d3;   /* alternate section background */
  --ink:         #17324d;   /* main text (deep navy) */
  --ink-soft:    #45586b;   /* secondary text */
  --teal:        #1f5f5f;   /* headings / accents (deep teal) */
  --teal-soft:   #d6e7e4;   /* icon backgrounds */
  --accent:      #b5523b;   /* buttons (terracotta) */
  --accent-hover:#9a4330;
  --accent-soft: #f3d5c8;   /* soft coral tint */
  --accent-text: #a1452f;   /* small accent text (eyebrows) */
  --line:        #e2d5c1;   /* borders */
  --muted:       #5b6b7a;   /* small print */

  /* Photo overlays (keep text over photos readable) */
  --hero-overlay: linear-gradient(90deg, rgba(14,34,52,.9) 0%, rgba(14,34,52,.82) 42%, rgba(14,34,52,.45) 66%, rgba(14,34,52,.1) 100%);
  --hero-overlay-mobile: linear-gradient(180deg, rgba(14,34,52,.35) 0%, rgba(14,34,52,.8) 40%, rgba(14,34,52,.92) 100%);
  --how-bg-veil: rgba(239,228,211,.93);

  /* Fonts */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Shape & spacing */
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(23,50,77,.05), 0 8px 24px rgba(23,50,77,.06);
  --container: 1120px;
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
}

/* Self-hosted font (SIL Open Font License), latin subset, variable weight */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--font-display); color: var(--teal); line-height: 1.15; margin: 0 0 .6em; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); letter-spacing: -.01em; color: var(--ink); }
h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--teal); text-underline-offset: .18em; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: -3rem; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { top: 1rem; color: #fff; }

.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: .75rem; }
.section { padding-block: var(--section-pad); }
.section-alt { background: var(--sand-deep); }
.section-how { background: linear-gradient(var(--how-bg-veil), var(--how-bg-veil)), url("/assets/img/bg-map-1400.webp") center / cover no-repeat, var(--sand-deep); }
.section-tight { padding-top: 1rem; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2rem; }
.section-head h2 { margin: 0; }
.section-intro { max-width: 40rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.small { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font: inherit; font-weight: 600; text-decoration: none;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: background-color .2s, color .2s, transform .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost { border-color: var(--teal); color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-light { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.btn-light:hover { background: #fff; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,241,231,.92);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; flex-wrap: wrap; }
.wordmark { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -.01em; white-space: nowrap; }
.wordmark span { font-style: italic; font-weight: 400; color: var(--accent-text); }
.nav-list { display: flex; gap: .25rem 1.4rem; list-style: none; margin: 0; padding: 0; align-items: center; flex-wrap: wrap; }
.nav-list a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .98rem; padding: .35rem 0; }
.nav-list a:hover { color: var(--accent-hover); }
.nav-list .nav-cta { background: var(--accent); color: #fff; padding: .45rem 1.1rem; border-radius: 999px; }
.nav-list .nav-cta:hover { background: var(--accent-hover); color: #fff; }

@media (max-width: 360px) { .nav-list { gap: .2rem .45rem; } .nav-list a { font-size: .8rem; } }
@media (max-width: 640px) {
  .header-inner { justify-content: center; padding-block: .6rem; gap: .35rem; }
  .wordmark { font-size: 1.35rem; }
  .nav-list { justify-content: center; gap: .2rem .55rem; }
  .nav-list a { font-size: .86rem; }
  .nav-list .nav-cta { padding: .25rem .75rem; }
}

/* ---------- Hero (photo with overlay) ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff;
  min-height: clamp(34rem, 82vh, 46rem); display: flex; align-items: center; padding-block: 4rem; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: var(--hero-overlay); }
.hero-copy { max-width: 36rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.hero .lede { font-size: 1.2rem; color: #f3f6f8; max-width: 34rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.eyebrow-light { color: #ffd9c9; }
@media (max-width: 720px) {
  .hero { min-height: 36rem; align-items: flex-end; padding-block: 3rem 2.5rem; }
  .hero-overlay { background: var(--hero-overlay-mobile); }
}

/* ---------- Cards ---------- */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card-img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; background: var(--sand-deep); }
.card-body { padding: 1.4rem 1.6rem 1.7rem; }
.card-body p { color: var(--ink-soft); margin: 0; }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.step { background: var(--cream); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--line); }
.step p { color: var(--ink-soft); margin: 0; }
.step-num { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 1rem; }

/* ---------- About ---------- */
.about { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 820px) { .about { grid-template-columns: .8fr 1.2fr; gap: 4rem; } }
.about-photo { margin: 0; max-width: 380px; width: 100%; margin-inline: auto; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 200px 200px var(--radius) var(--radius); box-shadow: var(--shadow); background: var(--sand-deep); }

/* ---------- Enquiry ---------- */
.enquire { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .enquire { grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; } }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .5rem; }
.enquiry-form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2.25rem); box-shadow: var(--shadow); }
.enquiry-noscript h3 { margin-bottom: .5rem; }
.form-hint { margin: .75rem 0 0; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); background: var(--teal-soft); border: 1px solid #a9cbc6; color: var(--ink); }
.form-status p { margin: 0 0 .4rem; }
.form-status p:last-child { margin: 0; }
.field.check label a { font-weight: 600; }
.field { display: grid; gap: .35rem; margin-bottom: 1.1rem; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
label { font-weight: 600; font-size: .95rem; }
.opt { font-weight: 400; color: var(--ink-soft); }
input, textarea {
  font: inherit; color: var(--ink); width: 100%;
  padding: .7rem .85rem; border: 1.5px solid #bfae95; border-radius: var(--radius-sm); background: #fff;
}
input::placeholder, textarea::placeholder { color: #6f7780; }
input:focus-visible, textarea:focus-visible { border-color: var(--teal); outline: 3px solid rgba(31,95,95,.25); outline-offset: 0; }
textarea { resize: vertical; }
.field.check { grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.field.check input { width: 1.25rem; height: 1.25rem; margin-top: .2rem; accent-color: var(--teal); }
.field.check label { font-weight: 400; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9eef2; padding-block: 3rem 2rem; }
.site-footer a { color: #fff; }
.protection-note { margin: 0 0 1.75rem; font-size: .95rem; color: #cfd9e2; max-width: 48rem; }
.footer-book { margin: 0 0 1.75rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.wordmark-footer { color: #fff; margin: 0; }
.wordmark-footer span { color: #f0b9a7; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; color: #fff; }
.social { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.social a { text-decoration: none; font-weight: 600; }
.social a:hover { text-decoration: underline; color: #fff; }
.social .handle { font-weight: 400; opacity: .8; }
.copyright { margin: 0; font-size: .9rem; opacity: .85; }

/* ---------- Small-screen tweaks ---------- */
@media (max-width: 640px) {
  .about-photo { max-width: 260px; }
}

/* ---------- Offers ---------- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) 1.5rem; background: radial-gradient(ellipse 50% 80% at 85% 0%, rgba(224,122,95,.12), transparent 70%); }
.page-hero h1 { color: var(--teal); font-size: clamp(2.4rem, 6vw, 3.6rem); }
.page-hero .section-intro { margin-bottom: 0; }
.offer-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.offer-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.offer-img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; background: var(--sand-deep); display: block; }
.offer-img-empty { background: linear-gradient(135deg, var(--teal-soft), var(--accent-soft)); }
.offer-body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.offer-dest { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-text); margin-bottom: .4rem; }
.offer-title { margin-bottom: .5rem; }
.offer-desc { color: var(--ink-soft); }
.offer-price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: .75rem; }
.offer-includes { margin: 0 0 1rem; padding: 0; list-style: none; display: grid; gap: .3rem; color: var(--ink-soft); font-size: .97rem; }
.offer-includes li { padding-left: 1.5rem; position: relative; }
.offer-includes li::before { content: ""; position: absolute; left: .2rem; top: .55em; width: .65rem; height: .35rem; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.offer-foot { margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--line); }
.offer-valid { font-size: .92rem; color: var(--ink-soft); margin: .25rem 0 1rem; }
.offer-foot .btn { width: 100%; text-align: center; }
.offer-terms { margin: 2rem 0 0; font-size: .92rem; color: var(--muted); }
.offers-status { color: var(--ink-soft); }
.empty-state { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 5vw, 3rem); text-align: center; max-width: 44rem; margin-inline: auto; }
.empty-state p { color: var(--ink-soft); }
.offer-field input[readonly] { background: var(--teal-soft); border-color: var(--teal); font-weight: 600; }
.nav-list a[aria-current="page"] { color: var(--accent-text); text-decoration: underline; text-underline-offset: .35em; }
[hidden] { display: none !important; }

/* ---------- Privacy / text pages ---------- */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-top: 2.25rem; }
.prose ul { padding-left: 1.25rem; margin: 0 0 1em; }
.prose li { margin-bottom: .35rem; }
.prose .updated { color: var(--muted); font-size: .95rem; }
