:root {
  --page-bg: #efede7;
  --panel-bg: rgba(248, 245, 238, 0.96);
  --panel-line: rgba(90, 76, 56, 0.16);
  --panel-line-strong: rgba(90, 76, 56, 0.28);
  --text-main: #262118;
  --text-soft: #60594d;
  --olive: #7b7c5a;
  --shadow: 0 24px 70px rgba(54, 46, 32, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --content-max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(224, 214, 193, 0.3), transparent 22%),
    linear-gradient(180deg, #f4f1ea 0%, var(--page-bg) 100%);
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
}

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

figure {
  margin: 0;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-max));
  margin: 42px auto 64px;
}

.panel {
  position: relative;
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(190, 176, 145, 0.09), transparent 18%),
    radial-gradient(circle at 14% 82%, rgba(165, 150, 123, 0.08), transparent 12%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 48%);
  pointer-events: none;
}

.hero-panel,
.offerings-panel,
.space-panel,
.reviews-panel {
  margin-bottom: 16px;
}

.topbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--panel-line-strong);
}

.brandmark {
  font-size: 0.95rem;
  letter-spacing: 0.46em;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 34px;
  justify-content: center;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--panel-line-strong);
  border-radius: var(--radius-sm);
  color: var(--olive);
  background: rgba(250, 248, 242, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button svg,
.inline-link svg,
.meta-row svg,
.feature-item svg,
.fact-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button-small {
  margin-left: auto;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.button:hover,
.inline-link:hover {
  transform: translateY(-1px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  min-height: 665px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 42px 44px;
}

.hero-copy h1,
.section-intro h2,
.reviews-summary h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: var(--text-main);
}

.hero-copy h1 {
  max-width: 4ch;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.88;
}

.hero-lead {
  max-width: 12ch;
  margin: 26px 0 34px;
  color: var(--olive);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--text-soft);
}

.meta-row,
.fact-item,
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.meta-row svg,
.fact-item svg,
.feature-item svg {
  color: var(--olive);
}

.meta-status {
  color: var(--olive);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--olive);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--panel-line-strong);
}

.hero-main-media {
  border-left: 1px solid var(--panel-line);
}

.hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.18fr 0.2fr 0.3fr 0.17fr 0.15fr;
  border-top: 1px solid var(--panel-line-strong);
  min-height: 182px;
}

.hero-strip > * {
  min-width: 0;
  border-right: 1px solid var(--panel-line);
}

.hero-strip > *:last-child {
  border-right: 0;
}

.hero-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px;
  gap: 18px;
}

.hero-strip-copy p,
.section-body,
.offer-card h3,
.space-quote p,
.review-card p {
  margin: 0;
}

.hero-strip-copy p {
  font-size: 1.1rem;
  line-height: 1.35;
}

.hero-strip-copy span,
.eyebrow,
.feature-item span,
.rating-note,
.site-footer span,
.review-card footer {
  color: var(--text-soft);
}

.hero-strip-copy span,
.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.offerings-panel,
.space-panel,
.reviews-panel {
  display: grid;
  position: relative;
  z-index: 1;
}

.offerings-panel {
  grid-template-columns: 0.31fr 0.69fr;
}

.space-panel,
.reviews-panel {
  grid-template-columns: minmax(0, 0.31fr) minmax(0, 0.69fr);
  padding: 26px;
  gap: 28px;
}

.section-intro,
.reviews-summary {
  padding: 38px 24px 24px 28px;
}

.offerings-intro {
  padding: 48px 32px 28px 34px;
}

.section-intro h2,
.reviews-summary h2 {
  font-size: clamp(3.2rem, 4.9vw, 5.2rem);
  line-height: 0.92;
  max-width: 6ch;
  margin-top: 22px;
}

.section-kicker {
  margin: 26px 0 18px;
  color: var(--olive);
  font-size: 1.25rem;
}

.section-body {
  max-width: 23ch;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.62;
  margin-top: 26px;
}

.offerings-intro::after,
.section-intro::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 34px;
  width: 86px;
  height: 188px;
  opacity: 0.28;
  background:
    radial-gradient(circle at 50% 20%, rgba(123, 124, 90, 0.5) 0 1.8px, transparent 1.8px),
    linear-gradient(180deg, transparent 0%, rgba(123, 124, 90, 0.36) 25%, transparent 100%);
  mask:
    radial-gradient(circle at 50% 15%, #000 0 3px, transparent 3px),
    linear-gradient(#000 0 0);
  pointer-events: none;
}

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

.offer-card {
  overflow: hidden;
  border: 1px solid rgba(90, 76, 56, 0.12);
  background: rgba(255, 253, 249, 0.78);
}

.offer-card:nth-child(5) {
  grid-column: span 1;
}

.offer-card:nth-child(6) {
  grid-column: span 1;
}

.offer-card:nth-child(7) {
  grid-column: span 2;
}

.offer-card figure {
  aspect-ratio: 1 / 1;
}

.offer-card:nth-child(7) figure {
  aspect-ratio: 2 / 1;
}

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

.offer-card h3 {
  padding: 14px 18px 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.offer-card h3::after,
.space-quote p::after,
.review-card p::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 14px;
  background: rgba(123, 124, 90, 0.9);
}

.feature-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 22px 24px;
  border-top: 1px solid var(--panel-line-strong);
}

.feature-item {
  padding-top: 6px;
  border-left: 1px solid var(--panel-line);
  padding-left: 18px;
  min-height: 52px;
}

.feature-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.visit-facts {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  padding-top: 12px;
}

.fact-item strong,
.site-footer strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.fact-item span,
.site-footer span {
  display: block;
  line-height: 1.45;
}

.button-stack {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.space-collage {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 0.95fr);
  grid-template-rows: minmax(420px, 1fr) 180px;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.space-main-image {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
  overflow: hidden;
}

.space-side-image {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  overflow: hidden;
}

.space-main-image img,
.space-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(90, 76, 56, 0.12);
}

.space-quote {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(90, 76, 56, 0.12);
  background: rgba(255, 252, 247, 0.88);
  overflow: hidden;
}

.space-quote p {
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  line-height: 1;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rating-number {
  margin-top: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 12vw, 11rem);
  line-height: 0.8;
  color: var(--olive);
}

.rating-stars {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px;
  color: var(--olive);
}

.rating-stars svg {
  width: 26px;
  height: 26px;
}

.star-partial {
  opacity: 0.45;
}

.review-source {
  margin: 34px 0 28px;
  padding-top: 28px;
  border-top: 1px solid var(--panel-line);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(90, 76, 56, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.72);
}

.review-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.review-card footer {
  padding-top: 26px;
  font-size: 0.98rem;
}

.site-footer {
  width: min(calc(100% - 32px), var(--content-max));
  margin: 0 auto 40px;
  padding: 0 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer a {
  display: inline-block;
  margin-right: 14px;
  color: var(--text-main);
  font-weight: 600;
}

@media (max-width: 1120px) {
  .topbar,
  .hero-grid,
  .offerings-panel,
  .space-panel,
  .reviews-panel {
    grid-template-columns: 1fr;
  }

  .topbar {
    gap: 18px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .button-small {
    margin-left: 0;
  }

  .hero-main-media {
    border-left: 0;
    border-top: 1px solid var(--panel-line);
  }

  .hero-strip,
  .feature-strip,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-strip-copy.right {
    grid-column: span 2;
  }

  .offerings-grid {
    padding: 0 18px 0 18px;
  }

  .space-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .space-main-image {
    grid-row: auto;
  }

  .space-main-image,
  .space-side-image {
    overflow: hidden;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--content-max));
    margin: 14px auto 28px;
  }

  .panel {
    border-radius: 22px;
  }

  .topbar {
    padding: 18px 18px 16px;
  }

  .hero-copy,
  .section-intro,
  .offerings-intro,
  .reviews-summary,
  .space-panel,
  .reviews-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-copy h1,
  .section-intro h2,
  .reviews-summary h2 {
    max-width: none;
  }

  .hero-strip,
  .feature-strip,
  .offerings-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip > *,
  .offer-card,
  .feature-item {
    border-right: 0;
  }

  .hero-strip-media,
  .hero-strip-copy,
  .offer-card figure {
    min-height: 180px;
  }

  .hero-strip-copy.right,
  .offer-card:nth-child(7) {
    grid-column: auto;
  }

  .offer-card figure,
  .offer-card:nth-child(7) figure {
    aspect-ratio: 4 / 3;
  }

  .space-collage {
    gap: 10px;
  }

  .space-main-image,
  .space-side-image,
  .space-quote {
    width: 100%;
  }

  .space-main-image {
    aspect-ratio: 4 / 3;
  }

  .space-side-image {
    aspect-ratio: 4 / 3;
  }

  .space-main-image img,
  .space-side-image img {
    height: 100%;
    object-fit: cover;
  }

  .space-quote {
    min-height: 0;
    padding: 22px;
    align-items: flex-start;
  }

  .space-quote p {
    max-width: 12ch;
    font-size: 2rem;
    line-height: 0.98;
  }

  .review-card {
    min-height: 220px;
    padding: 22px;
  }

  .review-card p {
    font-size: 1.75rem;
  }
}
