:root {
  --forest: #344432;
  --moss: #66745a;
  --dusty-pink: #c9959d;
  --blush: #f2e2e4;
  --cream: #fbf8f3;
  --charcoal: #2e312c;
  --white: #ffffff;
  --gold: #c4a56a;
  --shadow: 0 22px 60px rgba(52, 68, 50, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

h1, h2, h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3.4rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: 1.55rem; }
p { margin: 0; }
a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(52, 68, 50, 0.1);
  background: rgba(251, 248, 243, 0.93);
  backdrop-filter: blur(14px);
}

.navInner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

.navLinks > a:not(.button) { text-decoration: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(52, 68, 50, 0.18); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.buttonPrimary { color: var(--white); background: var(--forest); }
.buttonSecondary { color: var(--white); background: var(--dusty-pink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  right: -150px;
  top: 80px;
  border-radius: 50%;
  background: var(--blush);
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--dusty-pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heroText {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.18rem;
}

.heroActions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.heroVisual {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 42px 42px 160px 42px;
  background: linear-gradient(145deg, #40513c 0%, #66745a 55%, #9aa28d 100%);
  box-shadow: var(--shadow);
}

.heroGlow {
  position: absolute;
  width: 390px;
  height: 390px;
  right: -80px;
  top: -60px;
  border-radius: 50%;
  background: rgba(243, 226, 228, 0.2);
}

.ivStand {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 5px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  transform: translateX(-50%);
}

.ivStand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 150px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  transform: translateX(-50%);
}

.ivBag {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 175px;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid rgba(255,255,255,.76);
  border-radius: 26px 26px 48px 48px;
  color: var(--forest);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,226,228,.88));
  box-shadow: 0 25px 55px rgba(30, 40, 29, .22);
  transform: translateX(-50%);
}

.ivBag::before {
  content: "";
  position: absolute;
  top: -17px;
  width: 52px;
  height: 22px;
  border: 3px solid rgba(255,255,255,.76);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.ivDrop {
  width: 62px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 10%;
  color: var(--white);
  background: var(--dusty-pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  transform: rotate(-45deg);
}

.ivDrop span { transform: rotate(45deg); }

.ivBagLabel {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ivLine {
  position: absolute;
  top: 280px;
  left: calc(50% - 2px);
  width: 4px;
  height: 115px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.heroNote {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.trustStrip {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

section:not(.hero) { padding: 104px 0; }
.sectionIntro { max-width: 720px; margin-bottom: 44px; }
.sectionIntro h2 { max-width: 680px; }

.services { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(52, 68, 50, 0.09);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cardLabel {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--blush);
  font-size: 0.78rem;
  font-weight: 800;
}
.card p { margin-top: 15px; color: #5d625a; }

.about { background: var(--blush); }
.aboutGrid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 56px;
  align-items: center;
}
.kimiaPhotoWrap {
  min-height: 560px;
  overflow: hidden;
  border-radius: 120px 34px 34px 34px;
  box-shadow: var(--shadow);
}
.kimiaPhoto {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.aboutContent {
  width: 100%;
  padding: 56px;
  border: 1px solid rgba(52, 68, 50, 0.1);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}
.aboutGrid p { max-width: 610px; margin-top: 20px; }
.checklist { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 28px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 800; }

.booking { color: var(--white); background: var(--moss); }
.booking h2 { color: var(--white); }
.bookingGrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.bookingGrid > div > p { margin-top: 22px; }
.eyebrowLight { color: #f7dce0; }
.contactDetails { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.contactDetails p:last-child { grid-column: 1 / -1; }
.contactDetails a { text-underline-offset: 4px; }
.finePrint { max-width: 520px; font-size: .82rem; opacity: .85; }

form {
  padding: 32px;
  border-radius: 28px;
  color: var(--charcoal);
  background: var(--white);
  box-shadow: var(--shadow);
}
label { display: block; margin: 16px 0 6px; font-size: .9rem; font-weight: 800; }
label:first-child { margin-top: 0; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d6d8d2;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--white);
  font: inherit;
}
textarea { min-height: 112px; resize: vertical; }
.formButton { width: 100%; margin-top: 22px; }
.formNote { margin-top: 12px; color: #747970; font-size: .78rem; text-align: center; }

footer { padding: 30px 20px; color: rgba(255,255,255,.8); background: #273224; text-align: center; font-size: .82rem; }
footer p + p { margin-top: 5px; }

@media (max-width: 820px) {
  .navLinks > a:not(.button) { display: none; }
  .hero { padding: 58px 0 52px; }
  .heroGrid, .aboutGrid, .bookingGrid { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: 1fr; }
  .heroVisual { min-height: 390px; border-radius: 34px 34px 110px 34px; }
  .kimiaPhotoWrap { min-height: 450px; border-radius: 80px 28px 28px 28px; }
  .kimiaPhoto { height: 450px; }
  .aboutContent { padding: 38px; border-radius: 28px; }
  section:not(.hero) { padding: 76px 0; }
  .trustStrip { gap: 8px; flex-wrap: wrap; }
  .card { min-height: 0; }
  .cardLabel { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand { font-size: 1.12rem; }
  .navInner { min-height: 68px; }
  .navLinks .button { min-height: 42px; padding: 10px 17px; }
  h1 { font-size: clamp(3rem, 17vw, 4.4rem); }
  .heroActions .button { width: 100%; }
  .contactDetails { grid-template-columns: 1fr; }
  .contactDetails p:last-child { grid-column: auto; }
  .aboutContent { padding: 30px 22px; }
  form { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
