/* Extracted styles from original index.html */
:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-warm: #fdf8f3;
  --surface-strong: #f3ebe0;
  --text: #1a1209;
  --text-secondary: #5c4a3a;
  --muted: #8b7766;
  --primary: #c17a50;
  --primary-hover: #a8663e;
  --primary-light: rgba(193, 122, 80, 0.08);
  --accent: #4a6741;
  --accent-light: rgba(74, 103, 65, 0.1);
  --line: #e8ddd0;
  --line-light: #f0e8dd;

  --shadow-xs: 0 1px 2px rgba(26, 18, 9, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 18, 9, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 18, 9, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 18, 9, 0.1);
  --shadow-xl: 0 16px 48px rgba(26, 18, 9, 0.12);
  --shadow-glow:
    0 0 0 1px rgba(193, 122, 80, 0.15), 0 8px 24px rgba(193, 122, 80, 0.15);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  --container: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast: 200ms var(--ease-out);
  --trans-med: 350ms var(--ease-out);
  --trans-slow: 500ms var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
}

.container {
  width: min(var(--container), calc(100% - var(--space-8)));
  margin-inline: auto;
}

/* ─── Typography ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--space-4);
}

.section-lead {
  color: var(--text-secondary);
  max-width: 60ch;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 var(--space-6);
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all var(--trans-med);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:focus-visible {
  outline: 3px solid rgba(193, 122, 80, 0.4);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(193, 122, 80, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 122, 80, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ─── Logo SVG ─── */
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-hover) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(193, 122, 80, 0.25);
}

.logo-icon span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}

.logo-icon-lg {
  width: 60px;
  height: 60px;
}

.logo-icon-lg span {
  font-size: 1.7rem;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background: rgba(250, 247, 242, 0.88);
  border-bottom: 1px solid rgba(232, 221, 208, 0.5);
  transition: box-shadow var(--trans-med);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: opacity var(--trans-fast);
}

.brand:hover {
  opacity: 0.8;
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.menu-toggle {
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-xs);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.nav {
  position: absolute;
  top: 72px;
  left: var(--space-4);
  right: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  display: none;
  gap: var(--space-4);
  flex-direction: column;
}

.nav.is-open {
  display: flex;
  animation: slideDown 300ms var(--ease-out);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list {
  display: grid;
  gap: 2px;
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px var(--space-3);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--trans-fast);
  width: 100%;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--surface-strong);
  color: var(--text);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-cta {
  display: none;
}

/* ─── Hero ─── */
.hero {
  padding-top: clamp(var(--space-16), 12vw, 120px);
  padding-bottom: clamp(var(--space-16), 10vw, var(--space-24));
  background:
    radial-gradient(
      ellipse 80% 60% at 10% 10%,
      rgba(193, 122, 80, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 90% 80%,
      rgba(74, 103, 65, 0.03) 0%,
      transparent 60%
    );
}

.hero-grid {
  display: grid;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  max-width: 15ch;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-copy > p {
  color: var(--text-secondary);
  max-width: 55ch;
  margin-bottom: var(--space-6);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.hero-points {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-points .check-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.hero-points .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-frame {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--surface-strong);
  position: relative;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s var(--ease-out);
}

.hero-frame:hover img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  right: clamp(var(--space-4), 3vw, var(--space-6));
  bottom: clamp(var(--space-4), 3vw, var(--space-6));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-badge strong {
  display: block;
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(193, 122, 80, 0.06) 0%,
    transparent 70%
  );
  z-index: -1;
  border-radius: 50%;
}

/* ─── Why Section ─── */
.why {
  background: var(--surface);
  border-top: 1px solid var(--line-light);
}

.why-head {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.why-grid {
  display: grid;
  gap: var(--space-6);
}

.why-card {
  background: var(--surface-warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--trans-med);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: var(--accent-light);
  color: var(--accent);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─── Story Section ─── */
.story {
  background: linear-gradient(145deg, #f5ede2 0%, var(--bg) 100%);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.story-grid {
  display: grid;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.story-copy .section-title {
  margin-bottom: var(--space-6);
}

.story-copy p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  max-width: 55ch;
  line-height: 1.7;
}

.story-copy p:last-of-type {
  margin-bottom: var(--space-6);
}

.story-list {
  display: grid;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.story-list svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  margin-top: 2px;
  flex: 0 0 auto;
}

.story-media {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--surface-strong);
  position: relative;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-2xl);
  pointer-events: none;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s var(--ease-out);
}

.story-media:hover img {
  transform: scale(1.03);
}

/* ─── Services ─── */
.services {
  background: var(--surface);
  border-top: 1px solid var(--line-light);
}

.services-head {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.services-grid {
  display: grid;
  gap: var(--space-6);
}

.service-card {
  background: var(--surface-warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-med);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-strong);
  position: relative;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--trans-slow);
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-body {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-6);
}

.service-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.service-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-body ul {
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  list-style: none;
  padding-left: 0;
}

.service-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-body ul li::before {
  content: "\2192";
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--trans-fast);
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--trans-fast);
}

.service-link:hover {
  gap: 12px;
}

.service-link:hover svg {
  transform: translateX(2px);
}

/* ─── Testimonials ─── */
.proof {
  background: var(--bg);
  border-top: 1px solid var(--line-light);
}

.proof-head {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.rating-line {
  margin-top: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

.rating-stars {
  color: #d4940e;
  letter-spacing: 2px;
}

.proof-grid {
  display: grid;
  gap: var(--space-5);
}

.review {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-4);
  transition: all var(--trans-med);
  position: relative;
}

.review::before {
  content: "\201C";
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--line);
  pointer-events: none;
}

.review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review .stars {
  color: #d4940e;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.review blockquote {
  color: var(--text);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  font-family: "Playfair Display", serif;
}

.review cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── Booking ─── */
.booking {
  background: var(--surface);
  border-top: 1px solid var(--line-light);
}

.booking-grid {
  display: grid;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: start;
}

.booking-info .section-title {
  margin-bottom: var(--space-4);
}

.booking-info p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  max-width: 55ch;
  line-height: 1.7;
}

.quick-info {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.quick-item {
  background: var(--surface-warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: grid;
  gap: 6px;
  transition: all var(--trans-fast);
}

.quick-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.quick-item strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.quick-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.booking-form-wrap {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 5vw, var(--space-10));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.booking-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.booking-form {
  display: grid;
  gap: var(--space-5);
}

.booking-form h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  line-height: 1.1;
}

.booking-form > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: calc(var(--space-2) * -1);
  line-height: 1.6;
}

.field-group {
  display: grid;
  gap: var(--space-5);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 12px 16px;
  font: inherit;
  font-size: 0.92rem;
  transition: all var(--trans-fast);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 122, 80, 0.12);
  background: #fff;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-status {
  min-height: 20px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ─── Footer ─── */
.site-footer {
  background: #1a1209;
  color: #f5ece2;
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
}

.footer-brand {
  max-width: 32ch;
}

.footer-brand .logo-icon {
  margin-bottom: var(--space-5);
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.footer-brand p {
  color: #b8a898;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: #d4b99a;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: var(--space-3);
}

.footer-col a,
.footer-col p {
  color: #b8a898;
  font-size: 0.9rem;
  transition: color var(--trans-fast);
}

.footer-col a:hover {
  color: #fff;
}

.social-list {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.social-list a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4b99a;
  transition: all var(--trans-fast);
}

.social-list a svg {
  width: 18px;
  height: 18px;
}

.social-list a:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(193, 122, 80, 0.15);
  color: #fff;
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  justify-content: space-between;
  color: #7a6b5e;
  font-size: 0.8rem;
}

/* ─── WhatsApp FAB ─── */
.wa-float {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 60;
  transition: all var(--trans-fast);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}
.reveal-delay-2 {
  transition-delay: 200ms;
}
.reveal-delay-3 {
  transition-delay: 300ms;
}

/* ─── Responsive ─── */
@media (min-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - var(--space-16)));
  }

  .field-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 880px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-2);
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
  }

  .nav-link {
    text-align: center;
    width: auto;
    padding: 8px 14px;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1160px) {
  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─── Selection ─── */
::selection {
  background: rgba(193, 122, 80, 0.2);
  color: var(--text);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}
