:root {
  --bg: #f3efe7;
  --bg-soft: #ebe7de;
  --surface: rgba(255, 252, 247, 0.72);
  --surface-strong: #fcf8f2;
  --olive: #66725c;
  --olive-deep: #495444;
  --sage: #8f9a85;
  --text: #161616;
  --muted: #5f625d;
  --line: rgba(22, 22, 22, 0.08);
  --shadow: 0 30px 80px rgba(39, 45, 35, 0.08);
  --radius: 28px;
  --container: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 154, 133, 0.18), transparent 32%),
    linear-gradient(180deg, #f7f4ed 0%, var(--bg) 42%, #f6f2eb 100%);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.03);
  }
}

@keyframes titleSettle {
  from {
    opacity: 0.01;
    filter: blur(6px);
    transform: translate3d(0, 18px, 0);
    letter-spacing: 0.03em;
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
    letter-spacing: normal;
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.generated-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.photo-hero {
  object-position: center 58%;
}

.hero-media-backdrop img,
.hero-frame img,
.gallery-card img,
.space-media img,
.work-card img,
.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 18px;
}

.gallery-shot {
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.gallery-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms ease, filter 320ms ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, transform 220ms ease;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 22px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-wide .brand-name {
  font-size: 1.8rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  width: clamp(152px, 14vw, 218px);
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}

.brand-mark,
.eyebrow,
.card-kicker,
.service-index {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-menu {
  margin-left: auto;
}

.site-menu-toggle {
  display: none;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(73, 84, 68, 0.45);
  transform: scaleX(0.3);
  transform-origin: left center;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  border-color: rgba(73, 84, 68, 0.35);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

main,
.page-main {
  display: grid;
  gap: 72px;
}

.section-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 120px);
  padding: 32px 0 8px;
}

.hero-centered {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 40px;
}

.hero-media-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.hero-media-backdrop img {
  animation: heroImageDrift 1.8s ease-out both;
}

.hero-media-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 239, 231, 0.18), rgba(243, 239, 231, 0.52)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.48), transparent 32%);
}

.hero-copy-centered {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 56px 40px;
  text-align: center;
}

.hero-copy-centered > * {
  opacity: 0;
  animation: heroFadeUp 760ms ease forwards;
}

.hero-copy-centered > *:nth-child(1) {
  animation-delay: 120ms;
}

.hero-copy-centered > *:nth-child(2) {
  animation-delay: 200ms;
}

.hero-copy-centered > *:nth-child(3) {
  animation-delay: 280ms;
}

.hero-copy-centered > *:nth-child(4) {
  animation-delay: 360ms;
}

.hero-copy-centered > *:nth-child(5) {
  animation-delay: 440ms;
}

.hero-copy-centered > *:nth-child(6) {
  animation-delay: 520ms;
}

.hero-icon-logo {
  width: 72px;
  height: auto;
  margin: 0 auto 18px;
  opacity: 0.88;
}

.page-hero {
  padding: 52px 0 0;
  max-width: 68rem;
}

.page-hero h1,
.hero-copy h1,
.section-heading h2,
.panel-copy h2,
.panel-copy-only h2,
.menu-item h2,
.process-card h2,
.contact-card h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.98;
  transition:
    color 260ms ease,
    transform 260ms ease,
    text-shadow 260ms ease,
    letter-spacing 260ms ease;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  max-width: 18ch;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5.8vw, 5rem);
  max-width: 10ch;
  margin-inline: auto;
  color: rgba(22, 22, 22, 0.84);
}

.hero-copy h1 span {
  display: block;
}

.heading-cn {
  color: rgba(22, 22, 22, 0.82);
  font-size: 0.88em;
  letter-spacing: 0.02em;
}

.heading-en {
  color: rgba(73, 84, 68, 0.82);
}

.lead,
.page-hero p,
.panel-copy p,
.panel-copy-only p,
.service-card p,
.menu-item p,
.metric p,
.process-card p,
.step p,
.contact-card p,
.hero-note p,
.booking-copy p,
.story-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.page-hero p {
  max-width: 46rem;
}

.lead {
  max-width: 34rem;
  margin: 26px 0 0;
}

.hero-copy-centered .lead {
  margin-inline: auto;
}

.hero-points,
.micro-copy {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-points {
  margin-top: 22px;
}

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

.hero-actions-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(39, 45, 35, 0.12);
}

.button-solid {
  background: var(--olive);
  color: #f8f6f1;
}

.button-solid:hover {
  background: var(--olive-deep);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.34);
  border-color: var(--line);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-frame,
.gallery-card,
.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.hero-frame-tall {
  height: min(76vh, 820px);
}

.about-frame {
  height: 540px;
}

.card,
.panel,
.service-card,
.booking,
.story-card,
.menu-item,
.process-card,
.contact-card {
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease;
}

.hero-note {
  max-width: 300px;
  margin-left: auto;
  padding: 20px 22px;
  border-radius: 22px;
}

.panel {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
}

.panel-copy h2,
.panel-copy-only h2,
.section-heading h2,
.menu-item h2,
.process-card h2,
.contact-card h2,
.booking-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.feature-intro {
  margin-top: -12px;
}

.trust-section {
  align-items: stretch;
}

.trust-frame {
  height: 760px;
  min-height: 0;
}

.services {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.service-grid,
.metrics,
.gallery-grid,
.two-column-story,
.process-steps,
.detail-grid,
.spaces-grid,
.work-preview {
  display: grid;
  gap: 18px;
}

.service-grid,
.metrics,
.two-column-story {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.metric,
.story-card,
.menu-item,
.contact-card {
  padding: 24px;
}

.service-card {
  min-height: 280px;
  background: rgba(255, 253, 249, 0.42);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.panel:hover,
.service-card:hover,
.booking:hover,
.story-card:hover,
.process-card:hover,
.contact-card:hover,
.menu-section-card:hover,
.detail-card:hover,
.gallery-shot:hover,
.gallery-card:hover,
.map-frame:hover,
.space-media:hover,
.work-card:hover,
.banner-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 78px rgba(39, 45, 35, 0.12);
}

.service-card:hover,
.story-card:hover,
.contact-card:hover,
.menu-section-card:hover,
.detail-card:hover,
.process-card:hover,
.booking:hover {
  border-color: rgba(102, 114, 92, 0.16);
  background: rgba(255, 253, 249, 0.58);
}

.service-card h3 {
  margin: 36px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  transition:
    color 260ms ease,
    transform 260ms ease,
    text-shadow 260ms ease,
    letter-spacing 260ms ease;
}

.clean-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.clean-list li {
  position: relative;
  padding-left: 18px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(102, 114, 92, 0.65);
}

.metric {
  border-top: 1px solid var(--line);
}

.metric-value,
.step span {
  display: inline-block;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--olive-deep);
}

.two-column-story {
  grid-template-columns: repeat(2, 1fr);
}

.story-card {
  border-radius: 28px;
  min-height: 260px;
}

.menu-list {
  display: grid;
  gap: 16px;
}

.menu-showcase {
  column-count: 2;
  column-gap: 22px;
}

.menu-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  border-radius: 28px;
}

.menu-section-card,
.detail-card,
.site-footer {
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease;
}

.menu-section-card {
  display: inline-block;
  width: 100%;
  padding: 28px;
  margin: 0 0 22px;
  border-radius: 28px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  vertical-align: top;
}

.menu-section-head h2 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.02;
  transition:
    color 260ms ease,
    transform 260ms ease,
    text-shadow 260ms ease,
    letter-spacing 260ms ease;
}

.menu-subsection {
  margin-top: 24px;
}

.menu-subsection h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--olive-deep);
  transition:
    color 260ms ease,
    transform 260ms ease,
    text-shadow 260ms ease,
    letter-spacing 260ms ease;
}

.price-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-detail-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.service-detail-item {
  padding-top: 4px;
}

.service-detail-item .menu-note {
  margin: 10px 0 0;
}

.price-list.compact {
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.price-row span:first-child {
  color: var(--text);
}

.menu-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-list span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(102, 114, 92, 0.08);
  color: var(--olive-deep);
  font-size: 0.92rem;
}

.menu-section-card-full {
  column-span: all;
}

.process-card {
  padding: 34px;
  border-radius: 34px;
}

.process-steps {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.step {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  grid-template-columns: 1.25fr 0.85fr;
}

.gallery-feature {
  grid-row: span 2;
  height: 820px;
}

.gallery-grid .gallery-card:not(.gallery-feature) {
  height: 400px;
}

.feature-banner,
.seasonal-panel,
.center-callout,
.our-work {
  position: relative;
}

.feature-banner {
  display: grid;
  gap: 0;
}

.feature-image {
  width: min(100%, 1100px);
}

.banner-frame {
  height: 720px;
}

.feature-overlay {
  position: absolute;
  right: 48px;
  bottom: 42px;
  max-width: 420px;
  padding: 30px 32px;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.feature-banner:hover .feature-overlay {
  transform: translateY(-6px);
  box-shadow: 0 34px 78px rgba(39, 45, 35, 0.14);
}

.feature-overlay h2,
.seasonal-panel h2,
.center-callout h2,
.detail-card h3,
.space-card p,
.our-work h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  transition:
    color 260ms ease,
    transform 260ms ease,
    text-shadow 260ms ease,
    letter-spacing 260ms ease;
}

.feature-overlay h2,
.seasonal-panel h2,
.center-callout h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 10px 0 14px;
}

.feature-overlay p,
.seasonal-panel p,
.center-callout p,
.detail-card p,
.space-card p {
  color: var(--muted);
  line-height: 1.8;
}

.micro-copy {
  display: inline-block;
  margin-top: 20px;
}

.detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.detail-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.5);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive) 0%, rgba(102, 114, 92, 0.28) 100%);
  margin-bottom: 18px;
}

.detail-card h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.reverse-section {
  align-items: stretch;
}

.seasonal-panel,
.center-callout {
  padding: 54px 28px;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.7), transparent 34%),
    rgba(255, 252, 247, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.seasonal-panel {
  background:
    linear-gradient(180deg, rgba(143, 154, 133, 0.08), rgba(255, 252, 247, 0.72)),
    rgba(255, 252, 247, 0.58);
}

.seasonal-panel p,
.center-callout p {
  max-width: 42rem;
  margin: 0 auto;
}

.center-callout .button {
  margin-top: 26px;
}

.spaces-grid,
.work-preview {
  grid-template-columns: repeat(3, 1fr);
}

.space-media {
  height: 340px;
}

.space-media,
.work-card,
.banner-frame {
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.space-card p {
  margin-top: 14px;
  font-size: 1.55rem;
}

.work-card {
  height: 320px;
}

.our-work {
  display: grid;
  gap: 24px;
}

.our-work .button {
  justify-self: start;
}

.booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 34px;
}

.booking-home {
  margin-top: 6px;
}

.contact-layout {
  align-items: stretch;
}

.contact-card {
  border-radius: 30px;
}

.contact-logo {
  width: 72px;
  height: auto;
  margin-bottom: 10px;
}

.map-card {
  display: flex;
  flex-direction: column;
}

.map-frame {
  display: flex;
  flex: 1;
  min-height: 420px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0.22), rgba(247, 244, 237, 0.72)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.74), transparent 36%),
    url("./assets/contact-map-soft.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.gallery-shot:hover img,
.gallery-card:hover img,
.hero-frame:hover img,
.space-media:hover img,
.work-card:hover img,
.banner-frame:hover img {
  transform: scale(1.05);
}

.map-frame span {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--olive-deep);
}

.map-frame small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

strong {
  font-weight: 600;
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-top: 48px;
  padding: 26px 28px;
  border-radius: 30px;
}

.brand-logo:hover .brand-wordmark {
  transform: translateY(-1px) scale(1.01);
  filter: saturate(1.04);
}

.hero-copy h1:hover,
.page-hero h1:hover,
.section-heading h2:hover,
.panel-copy h2:hover,
.panel-copy-only h2:hover,
.menu-item h2:hover,
.process-card h2:hover,
.contact-card h2:hover,
.booking-copy h2:hover,
.service-card h3:hover,
.menu-section-head h2:hover,
.menu-subsection h3:hover,
.feature-overlay h2:hover,
.seasonal-panel h2:hover,
.center-callout h2:hover,
.detail-card h3:hover,
.our-work h2:hover {
  color: var(--olive-deep);
  transform: translateY(-2px);
  text-shadow: 0 10px 24px rgba(102, 114, 92, 0.08);
}

.panel:hover h2,
.service-card:hover h3,
.story-card:hover h2,
.process-card:hover h2,
.contact-card:hover h2,
.booking:hover h2,
.menu-section-card:hover .menu-section-head h2,
.menu-section-card:hover .menu-subsection h3,
.feature-banner:hover .feature-overlay h2,
.seasonal-panel:hover h2,
.center-callout:hover h2,
.detail-card:hover h3,
.our-work:hover h2 {
  color: var(--olive-deep);
  transform: translateY(-2px);
  text-shadow: 0 10px 24px rgba(102, 114, 92, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal].is-visible h1,
[data-reveal].is-visible h2,
[data-reveal].is-visible h3 {
  animation: titleSettle 880ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 80ms);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-icon {
  width: 48px;
  height: auto;
}

.footer-wordmark {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(87, 67, 57, 0.12);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .section-grid,
  .contact-layout,
  .panel,
  .booking,
  .service-grid,
  .metrics,
  .two-column-story,
  .gallery-grid,
  .process-steps,
  .menu-item,
  .detail-grid,
  .spaces-grid,
  .work-preview,
  .site-footer,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-copy-centered {
    padding: 44px 24px;
  }

  .hero-frame-tall,
  .about-frame,
  .gallery-feature,
  .gallery-grid .gallery-card:not(.gallery-feature),
  .map-frame,
  .banner-frame,
  .space-media,
  .work-card {
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .feature-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -48px;
    margin-inline: 16px;
  }

  .hero-note {
    margin-left: 0;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .menu-showcase {
    column-count: 1;
  }

  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1000px);
  }

  main,
  .page-main {
    gap: 48px;
  }

  .section-grid,
  .contact-layout,
  .services,
  .service-grid,
  .metrics,
  .gallery-grid,
  .two-column-story,
  .process-steps,
  .detail-grid,
  .spaces-grid,
  .work-preview,
  .site-footer,
  .footer-info {
    gap: 14px;
  }

  .page-hero {
    padding: 28px 0 0;
  }

  .service-detail-list,
  .price-list,
  .pill-list {
    margin-top: 16px;
  }

  .menu-subsection {
    margin-top: 18px;
  }

  .site-header {
    position: relative;
    z-index: 40;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 24px;
    background: rgba(255, 251, 244, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 44px rgba(39, 45, 35, 0.08);
    backdrop-filter: blur(12px);
  }

  .site-menu {
    width: auto;
    margin-left: auto;
  }

  .site-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(102, 114, 92, 0.18);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.82);
    box-shadow: 0 16px 40px rgba(39, 45, 35, 0.08);
    color: transparent;
    font-size: 0;
    cursor: pointer;
    position: relative;
  }

  .site-menu-toggle::before,
  .site-menu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 1.75px;
    border-radius: 999px;
    background: var(--olive-deep);
    transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  }

  .site-menu-toggle::before {
    transform: translate(-50%, -6px);
    box-shadow: 0 6px 0 0 var(--olive-deep);
  }

  .site-menu-toggle::after {
    transform: translate(-50%, 6px);
  }

  .site-menu.is-open .site-menu-toggle::before {
    transform: translate(-50%, 0) rotate(45deg);
    box-shadow: none;
  }

  .site-menu.is-open .site-menu-toggle::after {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .site-nav {
    display: grid;
    gap: 8px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 14px;
    border: 1px solid rgba(102, 114, 92, 0.14);
    border-radius: 22px;
    background: #fcf8f2;
    box-shadow: 0 18px 44px rgba(39, 45, 35, 0.06);
    font-size: 0.9rem;
    justify-content: stretch;
    z-index: 60;
  }

  .site-menu:not(.is-open) .site-nav {
    display: none;
  }

  .site-nav a {
    padding: 10px 12px;
    border-bottom: none;
    border-radius: 14px;
    background: rgba(243, 239, 231, 0.62);
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    border-color: transparent;
    background: rgba(102, 114, 92, 0.12);
  }

  .brand-wordmark {
    width: 148px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.5rem);
    max-width: none;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.9rem);
    max-width: 16ch;
  }

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

  .hero-points {
    line-height: 1.8;
  }

  .panel,
  .process-card,
  .booking,
  .contact-card,
  .menu-item,
  .detail-card,
  .feature-overlay {
    padding: 24px;
  }

  .site-footer {
    margin-top: 28px;
  }

  .gallery-masonry {
    column-count: 1;
  }
}
