/* =====================================================
   SAVANNAH TAILS & TRAILS
   Palette pulled from an Algarve villa + garden
   ===================================================== */

:root {
  --cream: #F9EED4;
  --cream-2: #EFE4CB;
  --sand: #F4C967;
  --sand-soft: #FBE3A0;
  --ochre: #E69A3C;
  --ochre-deep: #B8762A;
  --terra: #E87559;
  --terra-soft: #F5A48A;
  --terra-deep: #B1462E;
  --olive: #8BA04A;
  --olive-deep: #5E7033;
  --lime: #C6D87A;
  --sky: #7FB8D9;
  --sky-soft: #B8DCED;
  --sky-deep: #457F9F;
  --lilac: #B7A4D8;
  --mint: #8FCFB5;
  --blush: #F2B7B8;
  --ink: #2B2721;
  --ink-60: #2B272199;
  --ink-40: #2B272166;
  --ink-20: #2B272133;
  --paper: #FDF7E6;
  --line: #2B27211a;

  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px #2b27210f, 0 2px 6px #2b27210a;
  --shadow-md: 0 2px 4px #2b27210f, 0 10px 24px #2b27211a;
  --shadow-lg: 0 12px 28px #2b272124, 0 32px 64px #2b27211a;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.section[id],
#booking-form {
  scroll-margin-top: 110px;
}

img { max-width: 100%; display: block; }

button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 450;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}

em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 350;
}

.ink-italic { font-style: italic; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--md { padding: 12px 22px; font-size: 15px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

.btn--primary {
  background: #7bced1;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #6cbec1; box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-20);
}
.btn--ghost:hover { background: #2b27210a; border-color: var(--ink-40); }

.btn--terra {
  background: var(--terra);
  color: #fff;
}
.btn--terra:hover { background: var(--terra-deep); }

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  line-height: 1;
}

/* =====================================================
   KICKER + SECTION
   ===================================================== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 20px;
}
.kicker__dot {
  width: 8px;
  height: 8px;
  background: var(--olive);
  border-radius: 99px;
  display: inline-block;
}

.section {
  padding: 120px 56px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.section__head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__head--center .kicker { justify-content: center; }
.section__head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section__title {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.section__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 560px;
  margin: 0;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  transition: background 200ms ease, padding 200ms ease, box-shadow 200ms ease;
}
.nav--scrolled {
  background: #fbf7ecee;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 32px;
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo__mark {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1.5px #2b27211a;
}
.logo__words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__serif {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.logo__sub {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 4px;
}

.nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 120ms;
}
.nav__links a:hover { color: var(--terra); }

/* =====================================================
   HERO — GARDEN (default)
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
}

.hero--garden {
  display: flex;
  align-items: flex-end;
  padding: 100px 56px 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #fbf7ec80 0%, transparent 20%, transparent 50%, #2b272160 100%),
    linear-gradient(90deg, #fbf7ecaa 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  background: #fbf7eced;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 48px 48px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--terra-deep);
  background: #c86b4a14;
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--terra);
  border-radius: 99px;
  animation: pulse 2.2s infinite;
}
.hero__title {
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.hero__title em {
  color: var(--terra);
  font-weight: 300;
}
.hero__lede {
  font-size: 19px;
  color: var(--ink-60);
  line-height: 1.5;
  margin: 0 0 32px;
  max-width: 460px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
}
.hero__meta-item strong {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__meta-item span {
  font-size: 12px;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero__meta-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.hero__chip {
  position: absolute;
  bottom: 72px;
  right: 56px;
  z-index: 2;
  background: var(--cream);
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero__chip img {
  width: 52px; height: 52px;
  border-radius: 999px;
  object-fit: cover;
}
.hero__chip-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 2px;
}
.hero__chip-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 450;
}
.hero__chip-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--olive-deep);
  padding-left: 14px;
  border-left: 1px solid var(--line);
  margin-left: 4px;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--olive);
  border-radius: 99px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* =====================================================
   HERO — EDITORIAL
   ===================================================== */
.hero--editorial {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 160px 56px 140px;
  background: var(--sand-soft);
  position: relative;
  overflow: hidden;
}
.hero--editorial::before {
  content: "";
  position: absolute;
  top: -160px; left: -200px;
  width: 560px; height: 560px;
  background: var(--sand);
  border-radius: 50% 40% 60% 50%;
  opacity: 0.55;
  z-index: 0;
}
.hero--editorial::after {
  content: "";
  position: absolute;
  bottom: -180px; right: -120px;
  width: 480px; height: 480px;
  background: var(--terra-soft);
  border-radius: 45% 55% 50% 50%;
  opacity: 0.35;
  z-index: 0;
}
.hero-e__left, .hero-e__right { position: relative; z-index: 2; }
.hero-e__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--olive-deep);
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-e__title {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero-e__lede {
  font-size: 19px;
  color: var(--ink-60);
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-e__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-e__link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.hero-e__link:hover { color: var(--terra); border-color: var(--terra); }

.hero-e__stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px dashed #2b272126;
}
.hero-e__stats > div { display: flex; flex-direction: column; }
.hero-e__stats strong {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-e__stats span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  margin-top: 6px;
}
.hero-e__scribble {
  position: absolute;
  top: 4%;
  right: 4%;
  width: 86%;
  aspect-ratio: 1/1;
  z-index: 0;
  opacity: 0.5;
  transform: rotate(6deg);
}

/* Hero chip stickers (below hero) */
.hero-chips {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}
.hero-chip {
  position: relative;
  border-radius: 26px;
  padding: 22px 22px 24px;
  color: #fff;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 220ms ease;
}
.hero-chip:hover { transform: translateY(-4px) rotate(-0.5deg); }
.hero-chip--lime  { background: var(--olive); }
.hero-chip--sky   { background: var(--sky); color: #1e2a38; }
.hero-chip--terra { background: var(--terra); }
.hero-chip--lilac { background: var(--lilac); color: #1e1932; }
.hero-chip--mint  { background: var(--mint); color: #143028; }

.hero-chip__title {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.hero-chip p {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.9;
  margin: 0;
}
.hero-chip__scribble {
  position: absolute;
  inset: -8px -10px auto auto;
  width: 100%;
  height: 100%;
  border: 1.5px solid currentColor;
  border-radius: 30px;
  opacity: 0.35;
  transform: rotate(2deg);
  pointer-events: none;
}
.hero-chip--sky .hero-chip__scribble   { border-color: var(--sky-deep); }
.hero-chip--lime .hero-chip__scribble  { border-color: var(--olive-deep); }
.hero-chip--terra .hero-chip__scribble { border-color: var(--terra-deep); }
.hero-chip--lilac .hero-chip__scribble { border-color: #5e4d8a; }
.hero-chip--mint .hero-chip__scribble  { border-color: #3d7a63; }
.hero-chip__photo {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  overflow: hidden;
  z-index: 0;
}
.hero-chip__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 35%, #000000a8 100%);
}
.hero-chip__photo + .hero-chip__title { position: relative; z-index: 1; color: #fff; text-shadow: 0 2px 12px #000000a0; }
.hero-chip__photo ~ p { position: relative; z-index: 1; color: #ffffffee; text-shadow: 0 2px 12px #000000a0; }

.hero-e__right {
  position: relative;
  height: 640px;
}
.hero-e__blob {
  position: absolute;
  top: 8%;
  right: 2%;
  top: 4%;
  width: 62%;
  aspect-ratio: 1/1;
  background: var(--terra);
  border-radius: 50% 48% 46% 52%;
  z-index: 1;
  box-shadow: 0 30px 80px #e8755933;
}
.hero-e__blob--inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.hero-e__blob--inner img {
  width: 100%; height: 110%;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-e__frame {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  background: #fff;
}
.hero-e__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-e__frame--2 {
  bottom: 4%; left: -2%;
  width: 34%; aspect-ratio: 3/4;
  transform: rotate(-5deg);
  z-index: 3;
}
.hero-e__frame--3 {
  bottom: 2%; left: 32%;
  width: 30%; aspect-ratio: 1/1;
  transform: rotate(4deg);
  z-index: 4;
  border: 6px solid var(--lime);
  background: var(--lime);
}
.hero-e__tag {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--ink);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 6;
  white-space: nowrap;
  box-shadow: 0 6px 18px #2b272140, 0 2px 4px #2b272120;
  border: 2px solid var(--cream);
}

/* =====================================================
   HERO — POSTCARD
   ===================================================== */
.hero--postcard {
  background: var(--sand);
  padding: 140px 56px 100px;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.postcard {
  background: var(--cream);
  border: 1px solid var(--line);
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  box-shadow: var(--shadow-lg);
  padding: 0;
  position: relative;
  border-radius: 4px;
}
.postcard__photo {
  overflow: hidden;
  border-right: 2px dashed #c9b99a;
}
.postcard__photo img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 540px;
}
.postcard__text {
  padding: 60px 56px;
}
.postcard__from {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-60);
  margin-bottom: 4px;
}
.postcard__title {
  font-family: var(--font-serif);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--terra);
  margin: 0 0 8px;
}
.postcard__sub {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 40px;
}
.postcard__body {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 40px;
}
.postcard__stamp {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--cream);
  border: 2px dashed #c9b99a;
  padding: 12px;
  border-radius: 4px;
  z-index: 2;
}
.postcard__stamp-inner {
  background: var(--terra);
  color: var(--cream);
  padding: 16px 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 80px;
}
.postcard__postmark {
  position: absolute;
  bottom: 34px;
  right: 56px;
  width: 130px;
  height: 130px;
  opacity: 0.4;
  pointer-events: none;
}
.postcard__postmark-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--terra-deep);
  border-radius: 999px;
}
.postcard__postmark-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--terra-deep);
  text-align: center;
  transform: rotate(-12deg);
}

/* =====================================================
   EXPERIENCE
   ===================================================== */
.experience {
  background: var(--paper);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: transform 260ms ease;
}
.exp-card:hover { transform: translateY(-3px) rotate(-0.3deg); }
.exp-card--tall { grid-row: span 2; min-height: 580px; }
.exp-card--ochre { background: var(--sand); }
.exp-card--terra { background: var(--terra-soft); }
.exp-card--olive { background: var(--lime); }
.exp-card--sky { background: var(--sky-soft); }

.exp-card__photo {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.exp-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.exp-card:hover .exp-card__photo img { transform: scale(1.03); }

.exp-card__body {
  padding: 28px 32px 32px;
  background: inherit;
  color: var(--ink);
}
.exp-card--ochre .exp-card__body,
.exp-card--terra .exp-card__body,
.exp-card--olive .exp-card__body,
.exp-card--sky .exp-card__body { color: #1e1a14; }
.exp-card--terra .exp-card__body { color: #5a1d0d; }
.exp-card--olive .exp-card__body { color: #2b3510; }
.exp-card--sky .exp-card__body { color: #14273a; }

.exp-card__sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.exp-card__title {
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 12px;
}
.exp-card__body p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
  max-width: 360px;
}

/* =====================================================
   DAY — TIMELINE
   ===================================================== */
.day {
  background: var(--mint);
  padding-top: 140px;
  padding-bottom: 160px;
  max-width: none;
  margin: 0;
  padding-inline: 56px;
}
.day .section__head { max-width: 980px; margin-inline: auto; }
.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline__rail {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--ink-20) 8%, var(--ink-20) 92%, transparent 100%);
  transform: translateX(-50%);
}
.timeline__beat {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin-bottom: 48px;
}
.timeline__beat:last-child { margin-bottom: 0; }

.timeline__time {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.timeline__card {
  background: var(--paper);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.timeline__card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.timeline__card p {
  font-size: 15px;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.5;
}
.timeline__node {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  justify-self: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 0 0 6px var(--mint), var(--shadow-md);
  z-index: 2;
}
.timeline__beat--olive .timeline__node { background: var(--olive); }
.timeline__beat--ochre .timeline__node { background: var(--ochre); }
.timeline__beat--terra .timeline__node { background: var(--terra); }
.timeline__beat--sky .timeline__node   { background: var(--sky-deep); }
.timeline__card { position: relative; }
.timeline__beat--olive .timeline__card { border-left: 4px solid var(--olive); }
.timeline__beat--ochre .timeline__card { border-left: 4px solid var(--ochre); }
.timeline__beat--terra .timeline__card { border-left: 4px solid var(--terra); }
.timeline__beat--sky .timeline__card   { border-left: 4px solid var(--sky-deep); }
.timeline__beat--right .timeline__card {
  border-left: 0;
}
.timeline__beat--right.timeline__beat--olive .timeline__card { border-right: 4px solid var(--olive); }
.timeline__beat--right.timeline__beat--ochre .timeline__card { border-right: 4px solid var(--ochre); }
.timeline__beat--right.timeline__beat--terra .timeline__card { border-right: 4px solid var(--terra); }
.timeline__beat--right.timeline__beat--sky .timeline__card   { border-right: 4px solid var(--sky-deep); }

.timeline__beat--left .timeline__time { text-align: right; justify-self: end; color: var(--ink-60); }
.timeline__beat--left .timeline__card { grid-column: 3; }
.timeline__beat--left .timeline__time { grid-column: 1; }

.timeline__beat--right .timeline__time { grid-column: 3; color: var(--ink-60); }
.timeline__beat--right .timeline__card { grid-column: 1; text-align: right; }

/* =====================================================
   TRUST
   ===================================================== */
.trust {
  background: var(--paper);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust__card {
  background: var(--cream);
  padding: 36px 30px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 200ms;
}
.trust__card:hover { transform: translateY(-2px); }
.trust__icon {
  width: 52px;
  height: 52px;
  background: var(--paper);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--terra);
  margin-bottom: 24px;
  border: 1px solid var(--line);
}
.trust__card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.trust__card p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================
   MEET THE DOGS
   ===================================================== */
.dogs {
  background: var(--sand-soft);
}
.dog-card--ochre { background: var(--sand); }
.dog-card--olive { background: var(--lime); }
.dog-card--sky   { background: var(--sky-soft); }
.dogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dog-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease;
}
.dog-card:hover { transform: translateY(-4px); }

.dog-card__photo-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.dog-card__blob {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dog-card--ochre .dog-card__blob { background: radial-gradient(circle at 50% 55%, var(--ochre) 0%, var(--ochre) 42%, transparent 43%); }
.dog-card--olive .dog-card__blob { background: radial-gradient(circle at 50% 55%, var(--olive) 0%, var(--olive) 42%, transparent 43%); }
.dog-card--sky   .dog-card__blob { background: radial-gradient(circle at 50% 55%, var(--sky) 0%, var(--sky) 42%, transparent 43%); }

.dog-card__photo {
  position: absolute;
  inset: 10% 10% 0 10%;
  overflow: hidden;
  z-index: 1;
  border-radius: 999px 999px 0 0;
}
.dog-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms;
}
.dog-card:hover .dog-card__photo img { transform: scale(1.04); }

.dog-card__since {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.dog-card__body {
  padding: 28px 30px 34px;
}
.dog-card__role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 8px;
}
.dog-card__name {
  font-family: var(--font-serif);
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 8px;
}
.dog-card__age {
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 20px;
}
.dog-card blockquote {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--olive);
  background: var(--cream-2);
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  border-radius: 0 8px 8px 0;
}
.dog-card__body p {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  background: var(--paper);
}
.gallery__more {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--ink-20);
  padding-bottom: 3px;
  white-space: nowrap;
}
.gallery__more:hover { border-color: var(--terra); color: var(--terra); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.gallery__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
}
.gallery__tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 700ms ease;
}
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__tile figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: #fbf7ece6;
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(4px);
  transition: all 200ms ease;
}
.gallery__tile:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gallery__tile--reg { grid-column: span 3; grid-row: span 2; }
.gallery__tile--wide { grid-column: span 4; grid-row: span 2; }
.gallery__tile--tall { grid-column: span 3; grid-row: span 3; }

/* =====================================================
   BOOKING
   ===================================================== */
.booking {
  background: var(--terra);
  color: var(--cream);
  max-width: none;
  padding: 140px 56px;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  top: -100px; left: -80px;
  width: 400px; height: 400px;
  background: var(--sand);
  border-radius: 50%;
  opacity: 0.3;
}
.booking::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -120px;
  width: 500px; height: 500px;
  background: var(--lime);
  border-radius: 50% 45% 50% 55%;
  opacity: 0.25;
}
.booking__inner { position: relative; z-index: 1; }
.booking__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking .kicker { color: var(--cream); }
.booking .kicker__dot { background: var(--sand); }
.booking__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 24px;
}
.booking__title em { color: var(--sand); font-weight: 300; }
.booking__lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 500px;
  color: #f6eeddcc;
  margin-bottom: 32px;
}
.booking__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #f6eeddcc;
}
.booking__list li span {
  color: var(--sand);
  font-weight: 700;
}
.booking__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #f6eedd33;
}
.booking__contact small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6eedd99;
  margin-bottom: 6px;
}
.booking__contact strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 450;
  color: var(--cream);
}
.booking__maplink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f6eedd55;
  padding-bottom: 2px;
}
.booking__maplink:hover {
  color: var(--sand-soft);
  border-bottom-color: var(--sand-soft);
}

/* booking card */
.booking__card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
  scroll-margin-top: 110px;
}
.booking__form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.booking__form-head h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}
.booking__availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--olive-deep);
  background: #6b7a4b1a;
  padding: 6px 12px;
  border-radius: 99px;
}

.field {
  display: block;
  margin-bottom: 16px;
}
.field > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 160ms, background 160ms;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  background: #fff;
}
.field textarea { resize: vertical; font-family: inherit; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.seg {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.seg legend {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
  font-weight: 500;
}
.seg__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--cream);
  padding: 4px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
}
.seg__btn {
  border: 0;
  background: transparent;
  padding: 9px;
  border-radius: calc(var(--radius-md) - 4px);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-60);
  cursor: pointer;
  transition: all 160ms;
}
.seg__btn--on {
  background: var(--ink);
  color: var(--cream);
}

.booking__card-copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0 0 18px;
}

.booking__card-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.booking__card-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.5;
}

.booking__card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terra);
}

.booking__cta {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  text-decoration: none;
}

.booking__fine {
  display: block;
  font-size: 12px;
  color: var(--ink-60);
  margin-top: 12px;
  text-align: center;
}

.booking__success {
  padding: 20px 8px;
  text-align: center;
}
.booking__success-mark {
  width: 72px; height: 72px;
  background: #6b7a4b1a;
  border-radius: 99px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--olive);
}
.booking__success h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.booking__success p {
  font-size: 15px;
  color: var(--ink-60);
  margin: 0 0 20px;
  line-height: 1.55;
}
.booking__reset {
  background: none;
  border: 0;
  color: var(--terra);
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  color: #d3c8a8;
  padding: 80px 56px 36px;
}
.footer__top {
  max-width: 1440px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer__col {
  min-width: 0;
}
.footer__brand .logo__mark {
  background: #ffffff0f;
  box-shadow: none;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
  margin: 20px 0 0;
  color: #d3c8a8aa;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.footer__social {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(246, 238, 221, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #f6eedd;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.footer__social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 238, 221, 0.36);
  color: #fff6d8;
}
.footer__social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer__social-dot {
  fill: currentColor;
  stroke: none;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d3c8a8;
  font-weight: 500;
  margin: 0 0 14px;
}
.footer__col a {
  display: block;
  text-decoration: none;
  color: #f6eeddbb;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 120ms;
}
.footer__col a:hover { color: var(--sand); }

.footer__col a[href^="mailto:"],
.footer__col a[href^="tel:"] {
  text-decoration: none;
}

.footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #ffffff15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #d3c8a899;
  letter-spacing: -0.003em;
}

/* =====================================================
   TWEAKS PANEL
   ===================================================== */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  width: 280px;
  z-index: 999;
  font-size: 13px;
}
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tweaks__head h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.tweaks__row {
  margin-bottom: 12px;
}
.tweaks__row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
}
.tweaks__opts {
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px;
}
.tweaks__opt {
  border: 0;
  background: transparent;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--ink-60);
  cursor: pointer;
  border-radius: 7px;
  font-family: inherit;
  transition: all 120ms;
}
.tweaks__opt--on {
  background: var(--ink);
  color: var(--cream);
}
.tweaks__close {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-60);
}

/* =====================================================
   RESPONSIVE (simple)
   ===================================================== */
@media (max-width: 1180px) {
  .timeline__beat { grid-template-columns: 40px 1fr; }
  .timeline__rail { left: 20px; }
  .timeline__node { grid-column: 1; justify-self: center; }
  .timeline__time, .timeline__card { grid-column: 2 !important; text-align: left !important; justify-self: start !important; }
  .timeline__time { font-size: 28px; margin-bottom: 8px; }
  .timeline__beat--left .timeline__time,
  .timeline__beat--right .timeline__time { grid-column: 2; }
  .timeline__beat--left .timeline__card,
  .timeline__beat--right .timeline__card { grid-column: 2; border-right: 0 !important; }
  .hero-chips { grid-template-columns: repeat(3, 1fr); }
  .hero--editorial { grid-template-columns: 1fr 0.9fr; gap: 40px; padding-inline: 40px; }
}

@media (max-width: 960px) {
  .section { padding: 80px 28px; }
  .nav__links { display: none; }
  .hero--garden { padding: 120px 24px 40px; }
  .hero__content { padding: 32px 28px; }
  .hero__chip { display: none; }
  .hero--editorial { grid-template-columns: 1fr; gap: 40px; padding: 120px 28px 60px; }
  .hero-e__right { height: 460px; }
  .hero-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }
  .postcard { grid-template-columns: 1fr; }
  .exp-card { grid-column: span 12; min-height: 420px !important; }
  .dogs__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .booking__inner { grid-template-columns: 1fr; gap: 40px; }
  .booking__card { position: static; }
  .booking__contact { grid-template-columns: 1fr; gap: 18px; }
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; }
  .gallery__tile--reg, .gallery__tile--wide, .gallery__tile--tall { grid-column: span 3; grid-row: span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .timeline__beat { grid-template-columns: 40px 1fr; }
  .timeline__rail { left: 20px; }
  .timeline__node { grid-column: 1; }
  .timeline__time, .timeline__card { grid-column: 2 !important; text-align: left !important; justify-self: start !important; }
  .timeline__time { font-size: 28px; margin-bottom: 8px; }
}

@media (max-width: 700px) {
  .footer {
    padding: 56px 28px 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .footer__brand p {
    max-width: none;
  }

  .footer__bottom {
    gap: 12px;
    padding-top: 18px;
  }

  .hero-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
  }

  .hero-chip {
    min-height: 210px;
    padding: 20px 18px 20px;
  }

  .hero-chip:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 160px;
  }

  .hero-chip__title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero-chip p {
    font-size: 14px;
    line-height: 1.45;
  }
}
