:root {
  --ink: #27312d;
  --muted: #6f766f;
  --paper: #f9f5ee;
  --linen: #efe7da;
  --sage: #7d9a86;
  --moss: #445c4d;
  --clay: #b7765d;
  --rose: #d9aaa3;
  --white: #fffdf9;
  --line: rgba(39, 49, 45, 0.14);
  --shadow: 0 24px 70px rgba(45, 52, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 253, 249, 0.25);
  background: rgba(249, 245, 238, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(68, 92, 77, 0.32);
  border-radius: 50%;
  background: var(--white);
  color: var(--moss);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  color: rgba(39, 49, 45, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--clay);
}

.language-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(68, 92, 77, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--moss);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 13px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.language-toggle:hover {
  border-color: rgba(183, 118, 93, 0.45);
  background: var(--white);
  color: var(--clay);
}

.language-icon {
  line-height: 1;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--clay);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 78px);
  min-height: 92vh;
  align-items: center;
  padding: 150px clamp(20px, 6vw, 78px) 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 35, 31, 0.72), rgba(24, 35, 31, 0.28) 48%, rgba(24, 35, 31, 0.12)),
    linear-gradient(0deg, rgba(249, 245, 238, 0.1), rgba(249, 245, 238, 0.1)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=84") center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.hero-portrait {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(430px, 100%);
  aspect-ratio: 0.76;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.48);
  background: rgba(255, 253, 249, 0.14);
  box-shadow: 0 30px 90px rgba(12, 20, 17, 0.34);
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c5b6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 112px);
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
}

h3 {
  font-size: 31px;
}

.hero-copy {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 13px 24px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--clay);
  color: var(--white);
}

.button.primary:hover {
  background: #9e604b;
}

.button.ghost {
  border: 1px solid rgba(255, 253, 249, 0.55);
  color: var(--white);
}

.button.ghost:hover {
  background: rgba(255, 253, 249, 0.12);
}

.service-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-wrap,
.services,
.booking {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.intro p:last-child,
.about-copy p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(45, 52, 44, 0.08);
}

.service-card.featured {
  display: grid;
  grid-column: span 2;
  grid-row: span 2;
  gap: 24px;
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  height: 360px;
  object-fit: cover;
}

.service-card.featured div {
  padding: 0 32px 32px;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-card .service-meta {
  margin-top: 12px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  background: var(--moss);
  color: var(--white);
}

.about-image {
  min-height: 680px;
}

.about-image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center 24%;
}

.about-copy {
  max-width: 720px;
  padding: clamp(54px, 8vw, 110px);
}

.about-copy .eyebrow {
  color: #f1c7b7;
}

.about-copy p {
  color: rgba(255, 253, 249, 0.78);
  margin-top: 24px;
}

.areas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 52px;
  align-items: start;
  background: var(--linen);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  padding: 12px 18px;
  border: 1px solid rgba(68, 92, 77, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  color: var(--moss);
  font-weight: 800;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  background: var(--white);
}

.pricing-copy p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-list div {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.price-list span {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-list strong {
  display: block;
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.price-list p {
  margin: 12px 0 0;
  color: var(--moss);
  font-size: 20px;
  font-weight: 900;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(36px, 7vw, 90px);
  background:
    linear-gradient(rgba(249, 245, 238, 0.88), rgba(249, 245, 238, 0.88)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.booking-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--moss);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 49, 45, 0.17);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px 14px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(183, 118, 93, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 78px);
  background: #24302b;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 253, 249, 0.7);
}

.site-footer a {
  color: #f1c7b7;
  font-weight: 900;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 860px;
    align-items: center;
  }

  .hero-portrait {
    justify-self: start;
    width: min(360px, 100%);
  }

  .service-grid,
  .intro,
  .about,
  .areas,
  .pricing,
  .booking {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .booking-copy {
    position: static;
  }

  .about-image,
  .about-image img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .language-toggle {
    justify-content: center;
    width: 100%;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding: 120px 20px 38px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero-portrait {
    width: min(310px, 92vw);
  }

  .service-grid,
  .price-list,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card.featured img {
    height: 280px;
  }

  .about-copy {
    padding: 52px 20px;
  }

  .site-footer {
    display: grid;
  }
}
