:root {
  --bg: #f9f3ef;
  --surface: #ffffff;
  --surface-soft: #faeeea;
  --surface-tint: #eef7f2;
  --text: #2f2925;
  --muted: #6f6660;
  --line: rgba(47, 41, 37, 0.1);
  --line-strong: rgba(47, 41, 37, 0.18);
  --sage: #c2ddd1;
  --sage-deep: #a3c7b8;
  --blush: #efc5bf;
  --blush-deep: #dfaca4;
  --button: #2f2925;
  --button-text: #ffffff;
  --max: 72rem;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 14px 36px rgba(47, 41, 37, 0.06);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(180deg, #fcf6f2 0%, #f6efe8 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
p { margin: 0; }
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 237, 232, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 41, 37, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  overflow: visible;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.15rem 0;
}
.brand img { height: 4.5rem; width: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.primary-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--text); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
.mobile-toggle svg { width: 1.15rem; height: 1.15rem; }
.mobile-menu {
  display: none;
  padding-bottom: 1rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blush-deep);
  color: #fff;
}
.btn-primary:hover { background: #c98f86; }
.btn-secondary {
  background: var(--blush);
  border-color: rgba(47, 41, 37, 0.06);
  color: var(--text);
}
.btn-secondary:hover { background: var(--blush-deep); color: #fff; }
.btn-soft {
  background: var(--sage);
  border-color: rgba(47, 41, 37, 0.06);
  color: var(--text);
}
.btn-soft:hover { background: var(--sage-deep); }
.btn-block { width: 100%; }
.text-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
}
.text-link:hover { color: var(--text); }
main { padding-bottom: 4rem; }
.hero {
  position: relative;
  padding: 5rem 0 3rem;
}
.hero--compact {
  padding-bottom: 2.25rem;
}
.hero--image {
  min-height: 34rem;
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 24, 22, 0.12) 0%, rgba(28, 24, 22, 0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-card {
  max-width: 34rem;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  padding: 1.7rem;
  box-shadow: var(--shadow);
}
.hero-card--compact {
  max-width: 28rem;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  margin-bottom: 0.85rem;
}
.hero-copy {
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.04rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.section {
  padding: 3rem 0;
}
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.section-header h2,
.section-intro h2,
.split-card h2,
.booking-card h2,
.booking-side h2,
.simple-hero-card h1 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
}
.cards {
  display: grid;
  gap: 1rem;
}
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--compact .card {
  padding: 1.3rem;
}
.card,
.booking-card,
.booking-side,
.simple-hero-card,
.shot {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.card--tint,
.simple-hero-card {
  background: linear-gradient(180deg, #eef7f2 0%, #f7fcfa 100%);
}
.info-card:nth-child(1) {
  background: linear-gradient(180deg, #fff8f6 0%, #fff 100%);
}
.info-card:nth-child(2) {
  background: linear-gradient(180deg, #f2f8f5 0%, #fff 100%);
}
.info-card:nth-child(3) {
  background: linear-gradient(180deg, #fff8f6 0%, #fff 100%);
}
.info-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.info-card p,
.card-copy,
.split-card p,
.booking-side p,
.muted,
.simple-list,
.package-list,
.gallery-note {
  color: var(--muted);
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}
.pricing-card h3 {
  font-size: 1.35rem;
}
.price {
  font-size: 1.12rem;
  font-weight: 600;
}
.pill {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 600;
}
.pricing-card--featured {
  border-color: var(--line);
  background: var(--surface);
}
.split-card {
  min-height: 100%;
}
.split-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #fff6f3 0%, #fdfbfa 100%);
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}
.simple-list,
.package-list {
  margin: 0;
  padding-left: 1.15rem;
}
.package-list {
  margin-bottom: 1rem;
}
.simple-list li + li,
.package-list li + li {
  margin-top: 0.65rem;
}
.pricing-card .btn {
  margin-top: auto;
}
.booking-side .btn {
  margin-top: 1.2rem;
}
.simple-hero {
  padding: 4.25rem 0 1rem;
}
.simple-hero-card {
  max-width: 40rem;
}
.simple-hero-card p {
  margin-top: 0.7rem;
  max-width: 34rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.shot {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(47, 41, 37, 0.06);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-title {
  font-family: var(--display);
  font-size: 1.05rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible, .btn:hover { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 900px) {
  .cards--2,
  .cards--3,
  .booking-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero--image {
    min-height: 28rem;
  }
}
@media (max-width: 760px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .brand { padding: 0.1rem 0; }
  .brand img { height: 3.7rem; }
  .hero { padding-top: 4rem; }
  .hero-card,
  .simple-hero-card { padding: 1.35rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
}
