:root {
  --bg: #fbf6f0;
  --paper: #fffaf5;
  --ink: #241611;
  --muted: #7b6257;
  --line: rgba(36, 22, 17, .14);
  --accent: #b35b46;
  --accent-dark: #713225;
  --rose: #ead2c9;
  --shadow: 0 24px 70px rgba(80, 41, 30, .16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at top left, #f2d6cc 0, transparent 34rem), var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 240, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand img,
.footer img {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(36, 22, 17, .18);
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 26px);
  color: var(--muted);
  font-size: .92rem;
}

nav a,
.header-cta,
.btn,
.footer a {
  text-decoration: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta,
.primary {
  background: var(--ink);
  color: #fff;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, .8);
}

.section-pad {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: .98;
  letter-spacing: -.045em;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 9vw, 8.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 5.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.facts div,
.service-grid article,
.booking-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, .72);
  box-shadow: 0 12px 40px rgba(80, 41, 30, .07);
}

.facts div {
  padding: 18px;
  border-radius: 22px;
}

.facts dt {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
}

.facts dd {
  margin: 6px 0 0;
  font-weight: 800;
}

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

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -9% -8% 11%;
  z-index: -1;
  border-radius: 42% 58% 54% 46%;
  background: var(--rose);
}

.main-photo {
  width: min(560px, 100%);
  aspect-ratio: 4 / 5.35;
  border-radius: 38px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-card {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 14px;
  align-items: center;
  max-width: 250px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 24px;
  background: rgba(255, 250, 245, .9);
  box-shadow: var(--shadow);
}

.media-card img {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.media-card span {
  color: var(--muted);
  font-size: .86rem;
}

.media-card strong {
  line-height: 1.1;
}

.intro,
.booking,
.footer {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.intro p:last-child,
.section-head p,
.booking-card p,
.footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  background: #211510;
  color: #fff8f1;
}

.services .eyebrow,
.services .section-head p {
  color: #eac6b8;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-grid article {
  min-height: 260px;
  padding: 28px;
  border-color: rgba(255, 255, 255, .14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
}

.service-grid span {
  display: inline-block;
  margin-bottom: 44px;
  color: #e6b19f;
  font-family: Georgia, serif;
  font-size: 2.1rem;
}

.service-grid p {
  color: rgba(255, 248, 241, .72);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 32px;
  background: var(--rose);
  box-shadow: 0 16px 48px rgba(80, 41, 30, .12);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(36, 22, 17, .78);
  color: #fff;
  font-weight: 700;
}

.review {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px 28px;
  background: var(--paper);
}

.quote-mark {
  grid-row: span 2;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: .8;
}

blockquote {
  max-width: 1060px;
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3.3vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.review p {
  color: var(--muted);
  font-weight: 800;
}

.booking-card {
  padding: 28px;
  border-radius: 32px;
}

.booking-card .btn {
  width: 100%;
  margin-top: 10px;
}

.footer {
  background: #120c09;
  color: #fff8f1;
}

.footer h2 {
  margin: 18px 0 12px;
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

address a {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
}

@media (max-width: 980px) {
  nav { display: none; }

  .hero,
  .intro,
  .booking,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

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

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span { display: none; }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: .9rem;
  }

  .section-pad {
    padding: 46px 16px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .facts,
  .service-grid,
  .gallery,
  .review {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 300px;
  }

  .gallery .tall,
  .gallery .wide {
    grid-row: auto;
    grid-column: auto;
  }

  .media-card {
    position: static;
    margin-top: -42px;
    margin-left: 18px;
  }

  .quote-mark {
    grid-row: auto;
    font-size: 6rem;
  }
}
