:root {
  --bg: #f6efe4;
  --bg-soft: #fbf7ef;
  --panel: rgba(255, 251, 244, 0.84);
  --panel-strong: #fffbf4;
  --text: #221d16;
  --muted: #6a5f52;
  --olive: #5a5f2b;
  --olive-deep: #4a4f22;
  --olive-soft: #7e7a46;
  --sand: #d8c59d;
  --line: rgba(90, 95, 43, 0.16);
  --shadow: 0 30px 80px rgba(66, 52, 31, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 999px;
  --content-width: min(1520px, 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(210, 191, 155, 0.18), transparent 28%),
    radial-gradient(circle at right 18%, rgba(122, 132, 79, 0.13), transparent 22%),
    linear-gradient(180deg, #f8f3ea 0%, #f1ebdf 100%);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='rgba(90,95,43,0.04)' stroke-width='1'%3E%3Cpath d='M0 110h220M110 0v220'/%3E%3C/g%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.58;
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 22px 0 40px;
}

.site-header,
.section {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 6px 24px;
}

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

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-note,
.eyebrow,
.detail-label,
.frame-kicker,
.section-rail-left {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-note,
.frame-kicker,
.detail-label,
.section-rail-left {
  color: var(--olive-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  color: #3d382f;
  font-size: 0.95rem;
  font-weight: 600;
}

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

.site-nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--olive-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--olive);
  color: #fbf7ef;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olive-deep);
}

.button-outline {
  border-color: rgba(90, 95, 43, 0.48);
  background: transparent;
  color: var(--text);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.58);
}

.button-small {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 16px;
}

.menu-dot {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(90, 95, 43, 0.24);
  border-radius: 999px;
  background: transparent;
  gap: 4px;
}

.menu-dot span {
  display: block;
  width: 18px;
  height: 2px;
  background: #4a473d;
  border-radius: 999px;
}

.section {
  margin-bottom: 26px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(90, 95, 43, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.88), rgba(253, 248, 239, 0.74));
  box-shadow: var(--shadow);
}

.section-rail,
.section-frame-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-rail-line,
.frame-line {
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(90, 95, 43, 0.22);
}

.section-rail-line.short {
  max-width: 140px;
}

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

h1 {
  margin-top: 18px;
  font-size: clamp(4rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(3.3rem, 5.6vw, 5.1rem);
}

h3 {
  font-size: 1.75rem;
}

.display-tall {
  max-width: 6ch;
  font-size: clamp(4.2rem, 7.4vw, 6.7rem);
  line-height: 0.86;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
  padding-top: 10px;
}

.hero-copy {
  padding: 8px 14px 18px;
}

.hero-heading {
  max-width: 8ch;
  margin-top: 4px;
}

.hero-divider,
.mini-rule {
  width: 74px;
  height: 2px;
  margin: 30px 0 28px;
  background: rgba(90, 95, 43, 0.75);
}

.mini-rule {
  width: 56px;
  margin: 18px 0;
}

.hero-text,
.space-copy p,
.menu-intro,
.proof-intro,
.visit-copy p,
.caption-copy p,
.house-pick-card p,
.menu-items p,
.proof-bottom p,
.rating-card p,
.map-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 28ch;
  font-size: 1.1rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 72px;
  color: #484237;
  font-size: 0.98rem;
}

.icon-badge {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(90, 95, 43, 0.08);
  border: 1px solid rgba(90, 95, 43, 0.12);
  flex: 0 0 auto;
}

.icon-badge::before,
.icon-badge::after {
  position: absolute;
  content: "";
}

.icon-pin::before {
  top: 11px;
  left: 15px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--olive);
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

.icon-home::before {
  top: 12px;
  left: 12px;
  width: 18px;
  height: 14px;
  border: 2px solid var(--olive);
  border-top: none;
}

.icon-home::after {
  top: 9px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--olive);
  border-left: 2px solid var(--olive);
  transform: rotate(45deg);
}

.icon-seat::before {
  top: 12px;
  left: 13px;
  width: 16px;
  height: 12px;
  border: 2px solid var(--olive);
}

.icon-seat::after {
  bottom: 10px;
  left: 16px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--olive);
  border-right: 2px solid var(--olive);
}

.icon-wifi::before,
.icon-wifi::after {
  border: 2px solid transparent;
  border-top-color: var(--olive);
  border-radius: 999px;
}

.icon-wifi::before {
  top: 14px;
  left: 11px;
  width: 20px;
  height: 20px;
}

.icon-wifi::after {
  top: 19px;
  left: 16px;
  width: 10px;
  height: 10px;
}

.icon-phone::before {
  top: 13px;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--olive);
  border-top-left-radius: 14px;
  border-bottom-right-radius: 14px;
  transform: rotate(45deg);
}

.icon-clock::before {
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--olive);
  border-radius: 999px;
}

.icon-clock::after {
  top: 16px;
  left: 20px;
  width: 2px;
  height: 10px;
  background: var(--olive);
  box-shadow: 4px -2px 0 0 var(--olive);
  transform-origin: bottom;
}

.icon-instagram::before {
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--olive);
  border-radius: 6px;
}

.icon-instagram::after {
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--olive);
  border-radius: 999px;
  box-shadow: 8px -8px 0 -4px var(--olive);
}

.hero-media {
  position: relative;
}

.hero-main-card,
.hero-mini-card,
.photo-panel,
.caption-card,
.visit-map-card,
.menu-card,
.quote-card,
.rating-card,
.house-pick-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-main-card,
.photo-panel,
.caption-card,
.visit-map-card,
.menu-card,
.quote-card,
.rating-card {
  border: 1px solid rgba(90, 95, 43, 0.1);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 42px rgba(65, 49, 30, 0.08);
}

.hero-main-card {
  height: clamp(430px, 42vw, 700px);
}

.hero-main-card img {
  object-position: center 34%;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -156px;
  padding: 0 16px;
}

.hero-mini-card {
  height: 270px;
  border: 6px solid rgba(255, 251, 244, 0.95);
  box-shadow: 0 18px 34px rgba(58, 45, 29, 0.16);
}

.section-space {
  padding-top: 18px;
}

.section-frame-head {
  padding: 0 6px 22px;
}

.section-space .frame-kicker:last-child {
  margin-left: auto;
}

.space-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.92fr;
  gap: 36px;
}

.photo-panel-large {
  height: clamp(420px, 44vw, 740px);
}

.photo-panel-large img {
  object-position: center 30%;
}

.space-copy {
  padding-top: 20px;
}

.eyebrow {
  color: var(--olive-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.feature-list-icons article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-list h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.feature-list p {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.photo-panel-detail {
  margin-top: 18px;
  min-height: 364px;
}

.info-ribbon {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding: 20px 26px;
  border: 1px solid rgba(90, 95, 43, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(238, 233, 214, 0.85), rgba(240, 236, 221, 0.72));
  box-shadow: 0 12px 28px rgba(89, 75, 41, 0.08);
}

.info-ribbon article {
  padding-left: 24px;
  border-left: 1px solid rgba(90, 95, 43, 0.18);
}

.info-ribbon article p,
.info-ribbon article strong {
  display: block;
}

.leaf-glyph {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
}

.leaf-glyph::before,
.leaf-glyph::after {
  position: absolute;
  content: "";
  border-radius: 999px 0;
  background: linear-gradient(180deg, rgba(144, 168, 121, 0.42), rgba(90, 95, 43, 0.22));
  border: 1px solid rgba(90, 95, 43, 0.14);
}

.leaf-glyph::before {
  top: 4px;
  left: 8px;
  width: 18px;
  height: 34px;
  transform: rotate(-18deg);
}

.leaf-glyph::after {
  right: 6px;
  bottom: 2px;
  width: 20px;
  height: 30px;
  transform: rotate(18deg);
}

.leaf-glyph.soft {
  opacity: 0.74;
}

.section-cabinet .cabinet-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
}

.cabinet-copy {
  padding: 10px 18px 0 10px;
}

.cabinet-copy .menu-intro {
  max-width: 18ch;
  margin: 18px 0 26px;
  font-size: 1.1rem;
}

.menu-card {
  padding: 20px 20px 0;
}

.menu-items {
  display: grid;
}

.menu-items article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-items article:first-child {
  border-top: none;
}

.menu-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(227, 212, 176, 0.45);
  color: var(--olive);
  font-size: 1rem;
}

.menu-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(90, 95, 43, 0.08);
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-footer-note {
  margin: 12px -20px 0;
  padding: 16px 20px;
  background: var(--olive);
  color: #f8f3ea;
  font-weight: 600;
}

.cabinet-gallery {
  display: grid;
  gap: 18px;
}

.cabinet-top-row {
  display: grid;
  grid-template-columns: 1.18fr 0.55fr;
  gap: 18px;
}

.cabinet-wide {
  height: clamp(260px, 24vw, 402px);
}

.cabinet-wide img {
  object-position: center 44%;
}

.house-pick-card {
  padding: 34px 30px;
  background: var(--olive);
  color: #f8f3ea;
  box-shadow: 0 18px 44px rgba(55, 59, 26, 0.2);
}

.hand-note {
  color: #dfc08a;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.house-pick-card h3 {
  margin-top: 8px;
  font-size: 3rem;
  line-height: 0.96;
}

.house-pick-card p {
  color: rgba(248, 243, 234, 0.86);
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #dfb07d;
  color: #fff9ef;
  font-weight: 800;
}

.cabinet-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.caption-card {
  display: grid;
  grid-template-rows: 250px auto;
}

.caption-copy {
  padding: 18px 20px 20px;
}

.caption-copy h3 {
  font-size: 1.9rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  padding: 0 8px;
}

.benefit-strip span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.benefit-strip i {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(90, 95, 43, 0.12);
}

.section-proof .proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

.proof-copy {
  padding: 8px 8px 0;
}

.proof-intro {
  max-width: 26ch;
  margin-bottom: 24px;
}

.quote-feature {
  position: relative;
  margin-bottom: 18px;
  padding: 28px 30px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(90, 95, 43, 0.98), rgba(78, 84, 37, 0.94));
  color: #f9f4e9;
  box-shadow: 0 28px 46px rgba(60, 66, 27, 0.18);
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 26px;
  color: rgba(227, 220, 168, 0.72);
  font-size: 4.8rem;
  line-height: 1;
}

.quote-feature p {
  position: relative;
  margin: 42px 0 28px;
  color: rgba(249, 244, 233, 0.97);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

.quote-person strong,
.rating-card strong {
  display: block;
  font-size: 1.3rem;
}

.quote-person span,
.quote-card span,
.rating-card span {
  color: rgba(249, 244, 233, 0.72);
}

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

.quote-card {
  padding: 24px;
}

.quote-card p {
  margin: 0 0 14px;
  font-size: 1rem;
}

.quote-card span {
  color: var(--olive-soft);
}

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

.mosaic-tall {
  grid-column: 1 / -1;
  height: clamp(300px, 33vw, 480px);
}

.proof-mosaic .photo-panel:not(.mosaic-tall) {
  height: clamp(190px, 18vw, 240px);
}

.mosaic-tall img {
  object-position: center 34%;
}

.rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
}

.rating-star {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(196, 192, 135, 0.5);
  color: var(--olive);
  font-size: 1.7rem;
}

.rating-card strong {
  margin-top: 18px;
  font-size: 2.1rem;
}

.rating-card p {
  margin: 8px 0 0;
}

.rating-card blockquote {
  margin: 4px 0 0;
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.rating-card span {
  color: var(--muted);
}

.proof-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  padding: 8px 0 0;
}

.proof-bottom article {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.proof-bottom article:first-child {
  border-left: none;
  padding-left: 0;
}

.proof-bottom strong {
  font-size: 1.12rem;
}

.visit-section {
  padding-bottom: 0;
}

.visit-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.52fr) minmax(340px, 0.53fr);
  gap: 34px;
}

.visit-copy {
  padding: 8px 16px 0 12px;
}

.visit-monogram {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 12px 0 18px;
  border: 1px solid rgba(194, 162, 92, 0.7);
  border-radius: 999px;
  color: #b08f45;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
}

.visit-button {
  min-width: 360px;
  justify-content: space-between;
  padding-inline: 32px;
  font-size: 1.2rem;
}

.visit-button::after {
  content: "→";
  font-size: 1.6rem;
}

.visit-caption {
  margin-top: 24px;
  color: #605748;
}

.visit-details {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 58px;
}

.visit-details article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.visit-details strong {
  display: block;
  font-size: 1.14rem;
}

.visit-details p {
  margin: 6px 0 0;
  color: var(--muted);
}

.visit-map-card {
  padding: 18px;
}

.map-card {
  position: relative;
  min-height: 344px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(90, 95, 43, 0.1);
  background:
    linear-gradient(0deg, rgba(255, 248, 239, 0.86), rgba(255, 248, 239, 0.86)),
    linear-gradient(60deg, transparent 0 18%, rgba(90, 95, 43, 0.08) 18% 20%, transparent 20% 100%),
    linear-gradient(92deg, transparent 0 40%, rgba(90, 95, 43, 0.08) 40% 42%, transparent 42% 100%),
    linear-gradient(12deg, transparent 0 32%, rgba(90, 95, 43, 0.08) 32% 34%, transparent 34% 100%),
    linear-gradient(0deg, transparent 0 70%, rgba(90, 95, 43, 0.08) 70% 72%, transparent 72% 100%),
    radial-gradient(circle at 20% 20%, rgba(164, 177, 132, 0.14), transparent 20%);
}

.map-copy {
  padding: 18px 8px 8px;
}

.map-copy strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.map-action {
  width: 100%;
  margin-top: 10px;
}

.map-pin {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--olive);
  color: #f8f3ea;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(84, 90, 40, 0.18);
}

.map-pin-mark {
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
}

.map-pin-mark::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--olive);
  transform: translateX(-50%) rotate(45deg);
}

.map-street {
  position: absolute;
  color: #4a463c;
  font-size: 0.86rem;
  font-weight: 700;
}

.map-street-main {
  top: 182px;
  left: 178px;
  transform: rotate(-14deg);
}

.map-street-side {
  top: 165px;
  right: 26px;
  transform: rotate(84deg);
}

.map-street-lower {
  bottom: 34px;
  left: 112px;
  transform: rotate(-18deg);
}

.map-street-lower-alt {
  top: 76px;
  left: 54px;
  transform: rotate(-22deg);
}

.footer-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.6fr;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 26px 12px 26px 0;
  border-top: 1px solid var(--line);
}

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

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.82;
}

.footer-brand span:last-child {
  color: #b08f45;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.footer-columns div {
  display: grid;
  gap: 10px;
}

.footer-columns a {
  color: #4d483e;
  font-size: 1rem;
}

.footer-signoff {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.cup-glyph {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 96px;
  border: 2px solid rgba(188, 155, 79, 0.75);
  border-radius: 0 0 18px 18px;
  color: #b08f45;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.cup-glyph::after {
  position: absolute;
  content: "";
}

.footer-signoff p {
  color: #ba9959;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
  margin: 0 -34px;
  padding: 18px 34px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: var(--olive);
  color: rgba(249, 244, 233, 0.92);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 1280px) {
  .page-shell {
    width: min(100vw - 28px, 1520px);
  }

  .hero,
  .space-layout,
  .section-cabinet .cabinet-layout,
  .section-proof .proof-layout,
  .visit-main {
    gap: 26px;
  }

  .visit-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: 24px;
  }

  .visit-map-card {
    grid-column: 1 / -1;
    max-width: 460px;
  }

  .info-ribbon,
  .footer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .info-ribbon-mark,
  .footer-signoff {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 1080px) {
  .visit-main,
  .section-proof .proof-layout,
  .section-cabinet .cabinet-layout,
  .space-layout,
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-main-card {
    height: clamp(380px, 52vw, 560px);
  }

  .photo-panel-large {
    height: clamp(360px, 48vw, 520px);
  }

  .mosaic-tall {
    height: clamp(280px, 38vw, 420px);
  }

  .visit-map-card {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .page-shell {
    width: min(100vw - 24px, 1520px);
    padding-top: 14px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-bottom: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-copy,
  .cabinet-copy,
  .visit-copy,
  .proof-copy {
    padding-inline: 0;
  }

  .hero-bottom-grid,
  .cabinet-top-row,
  .cabinet-bottom-row,
  .quote-stack,
  .proof-mosaic,
  .proof-bottom,
  .footer-panel,
  .footer-columns,
  .benefit-strip,
  .info-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-bottom-grid {
    margin-top: 16px;
    padding: 0;
  }

  .hero-mini-card,
  .caption-card {
    height: auto;
  }

  .hero-main-card,
  .photo-panel-large,
  .mosaic-tall,
  .cabinet-wide {
    height: 360px;
  }

  .proof-mosaic .photo-panel:not(.mosaic-tall) {
    height: 220px;
  }

  .visit-button {
    min-width: 0;
    width: 100%;
  }

  .visit-details {
    padding-top: 0;
  }

  .footer-bar {
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .footer-brand strong {
    font-size: 3rem;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

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