:root {
  --ink: #171411;
  --paper: #f6f1ea;
  --cream: #fffaf3;
  --muted: #746b60;
  --line: #dfd1bf;
  --charcoal: #211d19;
  --gold: #b88746;
  --clay: #a85f45;
  --shadow: 0 28px 70px rgba(33, 29, 25, 0.18);
}

* {
  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;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 209, 191, 0.72);
  background: rgba(246, 241, 234, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.header-cta,
.primary-btn,
.secondary-btn,
.copy-btn {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--cream);
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0;
}

.brand strong {
  font-family: "Noto Serif SC", serif;
  font-size: 19px;
}

.nav-links {
  gap: clamp(18px, 3vw, 34px);
  color: #493f36;
  font-size: 15px;
  font-weight: 700;
}

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

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--charcoal);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(33, 29, 25, 0.92), rgba(33, 29, 25, 0.64) 42%, rgba(33, 29, 25, 0.08) 78%),
    linear-gradient(0deg, rgba(33, 29, 25, 0.55), transparent 34%);
}

.hero-copy {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 90px);
  padding-top: 92px;
  color: var(--cream);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Noto Serif SC", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.08;
}

.hero-copy p {
  max-width: 630px;
  margin-top: 24px;
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
}

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

.primary-btn,
.secondary-btn,
.copy-btn {
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  color: var(--cream);
  background: var(--clay);
  box-shadow: 0 18px 38px rgba(168, 95, 69, 0.28);
}

.secondary-btn,
.copy-btn {
  color: var(--cream);
  border: 1px solid rgba(255, 250, 243, 0.34);
  background: rgba(255, 250, 243, 0.08);
}

.primary-btn:hover,
.secondary-btn:hover,
.copy-btn:hover {
  transform: translateY(-2px);
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-note span {
  padding: 10px 14px;
  color: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: 999px;
  background: rgba(33, 29, 25, 0.32);
  font-size: 13px;
  font-weight: 700;
}

.intro,
.services,
.about,
.reviews,
.booking,
footer {
  padding: clamp(64px, 9vw, 108px) clamp(18px, 6vw, 90px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  background: var(--cream);
}

.intro h2,
.section-heading h2,
.about h2,
.booking h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.18;
}

.intro p,
.about p,
.booking p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.work-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 9vw, 108px);
  background: var(--cream);
}

.feature-work {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.feature-work img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-work span,
.work-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-work h3 {
  margin-top: 12px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(28px, 4vw, 48px);
}

.feature-work p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
  margin-top: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.work-card.wide {
  grid-column: span 2;
}

.work-card.tall {
  grid-row: span 2;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(33, 29, 25, 0.72), transparent 58%);
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--cream);
}

.work-card h3 {
  margin-top: 6px;
  font-family: "Noto Serif SC", serif;
  font-size: 24px;
}

.services {
  background: var(--paper);
}

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

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-grid article,
.review-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.service-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--cream);
  background: var(--charcoal);
  border-radius: 50%;
  font-weight: 900;
}

.service-grid h3 {
  margin-top: 24px;
  font-family: "Noto Serif SC", serif;
  font-size: 26px;
}

.service-grid p,
.review-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.85;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 480px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: var(--cream);
  background: var(--charcoal);
}

.about p {
  color: rgba(255, 250, 243, 0.72);
}

.stats {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  background: rgba(255, 250, 243, 0.18);
}

.stats div {
  padding: 30px;
  background: rgba(255, 250, 243, 0.06);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 243, 0.68);
  font-weight: 800;
}

.reviews {
  background: var(--cream);
}

.review-grid span {
  display: block;
  margin-top: 22px;
  color: var(--clay);
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
}

.booking-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--cream);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.booking-card .primary-btn,
.booking-card .copy-btn {
  width: 100%;
}

#copyStatus {
  min-height: 24px;
  color: rgba(255, 250, 243, 0.72);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--cream);
  font-size: 14px;
}

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

  .hero {
    min-height: 850px;
    align-items: flex-end;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(33, 29, 25, 0.1), rgba(33, 29, 25, 0.88) 48%, rgba(33, 29, 25, 0.98));
  }

  .hero-copy {
    margin: 0 auto;
    padding: 120px 0 130px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
  }

  .intro,
  .feature-work,
  .service-grid,
  .about,
  .review-grid,
  .booking {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn,
  .copy-btn {
    width: 100%;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

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

  footer {
    flex-direction: column;
  }
}
