/* Christov House redesign — based on the chosen dark rustic visual */
:root {
  --dark: #17120f;
  --dark-2: #211813;
  --cream: #f7f0e6;
  --paper: #fff8ee;
  --text: #2b211b;
  --soft: #8a7a6b;
  --gold: #c79a61;
  --gold-2: #a8663c;
  --hero-gold: #d8b276;
  --hero-cream: #f5ead7;
  --hero-soft-gold: #cba66d;
  --line: rgba(199, 154, 97, .28);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background: var(--cream);
  line-height: 1.65;
}

body.lock {
  overflow: hidden
}

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

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

button {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto
}

.hero .container {
  width: min(1840px, calc(100% - 120px));
}

.dark-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 154, 97, .10), transparent 26rem),
    var(--dark);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 82px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 62px);
  color: var(--paper);
  background:
    linear-gradient(180deg,
      rgba(9, 6, 4, .96) 0%,
      rgba(12, 8, 6, .82) 62%,
      rgba(12, 8, 6, .22) 100%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(4px);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 70px;
  background: rgba(20, 14, 10, .94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1.05;
  letter-spacing: .035em
}

.brand-main {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase
}

.brand-sub {
  margin-top: 3px;
  color: var(--gold);
  font-size: 12px;
  text-align: center
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase
}

.main-nav a {
  position: relative;
  padding: 30px 0;
  opacity: .86
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  color: var(--gold)
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .25s ease, opacity .25s ease;
  opacity: 0;
}

.main-nav a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 154, 97, .12);
  transform: translateX(-50%) scale(0);
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0;
}

.main-nav a:hover:after,
.main-nav a.is-active:after {
  width: 86px;
  opacity: 1;
}

.main-nav a:hover:before,
.main-nav a.is-active:before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d4a366, #b87543);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.top-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(199, 154, 97, .75);
  border-radius: 9px;
  color: var(--gold);
  background: rgba(12, 8, 6, .46);
  box-shadow:
    inset 0 0 0 1px rgba(199, 154, 97, .10),
    0 10px 24px rgba(0, 0, 0, .22);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.top-reserve-icon {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
  flex: 0 0 19px;
  opacity: .95;
}

.top-reserve:hover {
  color: #e0b874;
  border-color: rgba(224, 184, 116, .95);
  background: rgba(20, 14, 10, .68);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 238, .32);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 76px;
  padding: 0 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex: 0 0 24px;
}

.btn-gold {
  color: #fffaf0;
  background: linear-gradient(135deg, #d8b06f, #c58a52);
  box-shadow:
    0 16px 32px rgba(120, 66, 35, .36),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn-dark-outline {
  color: #f5ead7;
  border-color: rgba(245, 234, 215, .62);
  background: rgba(0, 0, 0, .18);
  box-shadow:
    inset 0 0 0 1px rgba(245, 234, 215, .08),
    0 12px 28px rgba(0, 0, 0, .24);
}

.btn-line {
  color: var(--gold);
  border-color: rgba(199, 154, 97, .55);
  background: rgba(18, 13, 10, .20);
  min-height: 46px;
  padding-inline: 22px
}

.story-btn {
  min-height: 58px;
  padding: 0 30px;
  gap: 18px;
  border-radius: 8px;
  color: #d8b276;
  border-color: rgba(216, 178, 118, .58);
  background: rgba(12, 8, 6, .34);
  box-shadow:
    inset 0 0 0 1px rgba(216, 178, 118, .08),
    0 12px 28px rgba(0, 0, 0, .22);
  font-size: 15px;
}

.story-btn:hover {
  color: #f0d29a;
  border-color: rgba(240, 210, 154, .82);
  background: rgba(20, 14, 10, .54);
}

.story-btn-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  flex: 0 0 26px;
  opacity: .92;
  filter:
    brightness(1.04) saturate(.95) drop-shadow(0 2px 5px rgba(0, 0, 0, .32));
}

.btn-cream {
  color: var(--gold-2);
  border-color: rgba(168, 102, 60, .28);
  background: rgba(255, 255, 255, .65);
  min-height: 46px;
  padding-inline: 22px
}

/* Hero */
.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--dark);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(5, 3, 2, .94) 0%,
      rgba(7, 5, 4, .84) 20%,
      rgba(10, 7, 5, .58) 42%,
      rgba(10, 7, 5, .34) 66%,
      rgba(10, 7, 5, .24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .30));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(620px, 720px) minmax(640px, 760px);
  gap: clamp(140px, 12vw, 260px);
  align-items: center;
  justify-content: space-between;
  min-height: 735px;
  padding: 150px 0 78px;
}

.hero-copy {
  max-width: 730px;
}

.script-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .035em;
}

.hero .script-label {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-style: italic;
  font-weight: 600;
  color: var(--hero-gold);
  margin-bottom: 18px;
  letter-spacing: .015em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .72),
    0 0 14px rgba(216, 178, 118, .16);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: .98;
  font-weight: 700
}

h1 {
  font-family: var(--serif);
  font-size: clamp(72px, 7.9vw, 122px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: .018em;
  text-transform: uppercase;
  color: var(--hero-cream);
  text-shadow:
    0 2px 2px rgba(0, 0, 0, .72),
    0 8px 22px rgba(0, 0, 0, .55),
    1px 1px 0 rgba(216, 178, 118, .22);
}

h2 {
  font-size: clamp(42px, 5vw, 66px)
}

h3 {
  font-size: 22px
}

.hero-lead {
  margin: 0;
  color: #efe1ca;
  font-family: var(--serif);
  font-size: clamp(25px, 1.75vw, 30px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: .005em;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, .72),
    0 7px 18px rgba(0, 0, 0, .55);
}

.ornament {
  display: block;
  width: 74px;
  height: 15px;
  margin: 15px auto 0;
  background:
    linear-gradient(90deg, transparent 0 9px, var(--gold) 9px 32px, transparent 32px 42px, var(--gold) 42px 65px, transparent 65px),
    radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 4px);
  opacity: .92;
}

.hero .ornament {
  width: auto;
  height: 27px;
  margin: 26px 0 36px;
  background: url("/img/icons/Ornament_Hero.png") left center / contain no-repeat;
  opacity: .72;
  filter: brightness(1.08) saturate(.85);
}

.ornament.left {
  margin-left: 0
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  max-width: 640px;
  margin-top: 80px;
  margin-bottom: 34px;
}

.hero-icons div {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 13px;
  text-align: center;
  color: #f1dfc4;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, .65),
    0 6px 14px rgba(0, 0, 0, .5);
}

.hero-icons p {
  margin: 0;
  color: #f1dfc4;
}

.hero-icon-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  display: block;
  opacity: .94;
  filter:
    drop-shadow(0 3px 8px rgba(0, 0, 0, .58)) brightness(1.06) saturate(1.08) sepia(.08);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 90px
}

.hero-buttons .btn {
  min-width: 280px;
}

.welcome-card {
  display: none;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;

  width: 560px;
  min-height: 300px;
  margin-top: 0;
  margin-bottom: 34px;
  padding: 27px 80px 50px;

  /* display: flex; */
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: #6f5438;
  background: url("/img/icons/paper-texture.png") center / 100% 100% no-repeat;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .24);
  border: 0;
  clip-path: none;

  transform: translateX(12px);
}

.welcome-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 2px auto 16px;
  display: block;
  opacity: .82;
  filter: sepia(.25) saturate(.85) brightness(.95);
}

.welcome-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 6px auto 18px;
  display: block;
  opacity: .88;
}

.welcome-card h2 {
  margin: 0 0 30px;
  color: #5f442f;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .005em;
  max-width: 390px;
  font-size: 28px;
  font-weight: bolder;
}

.welcome-card p {
  max-width: 360px;
  font-size: 15px;
  margin: 0 auto;
  color: #80644a;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.58;
}

.welcome-signature {
  width: 230px;
  height: auto;
  display: block;
  margin: 22px auto 0;
  opacity: .88;
  filter: sepia(.15) saturate(.9) brightness(.98);
}

.welcome-card strong {
  display: block;
  margin-top: 28px;
  color: #a8663c;
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}


.icon-bed:before {
  inset: 16px 3px 10px
}

.icon-bed:after {
  inset: 9px 3px auto;
  width: 13px;
  height: 10px
}

.icon-cabinet:after {
  inset: 17px 7px auto;
  height: 0;
  border-width: 2px 0 0
}

.icon-tree:before {
  inset: 5px 7px 15px;
  border-radius: 50%
}

.icon-tree:after {
  inset: auto 19px 6px;
  width: 4px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: currentColor
}

.icon-pin:before {
  inset: 5px 10px 8px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg)
}

.icon-pin:after {
  inset: 15px 19px auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor
}

/* Story */
.story .container {
  width: min(1840px, calc(100% - 120px));
}

.story {
  position: relative;
  border-top: 6px solid rgba(199, 154, 97, .36);
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 97, .10), transparent 28rem),
    linear-gradient(90deg, #1c130f 0%, #17110e 48%, #120d0b 100%);
}

.story .container {
  width: min(1840px, calc(100% - 120px));
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(0, 1fr);
  gap: clamp(58px, 5.8vw, 110px);
  align-items: stretch;
}

.story-text {
  max-width: 470px;
  padding: 86px 0 88px;
}

.story-text .script-label {
  color: var(--hero-gold);
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.story-text h2 {
  color: var(--hero-cream);
  font-family: var(--serif);
  font-size: clamp(50px, 4.3vw, 42px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: .005em;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, .62),
    0 8px 20px rgba(0, 0, 0, .42);
}

.story-ornament {
  width: 118px;
  height: auto;
  display: block;
  margin: 22px 0 34px;
  opacity: .82;
  filter: brightness(1.04) saturate(.9);
}

.story-text p:not(.script-label) {
  color: #e9dcc7;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.46;
  letter-spacing: .002em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .38);
}

.story-text p+p {
  margin-top: 22px;
}

.story-text .btn {
  margin-top: 30px;
}

.story-photo {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid rgba(199, 154, 97, .20);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Quick info */
.quick-info {
  position: relative;
  border-top: 1px solid rgba(199, 154, 97, .24);
  border-bottom: 1px solid rgba(199, 154, 97, .22);
  background:
    radial-gradient(circle at 8% 0%, rgba(199, 154, 97, .10), transparent 24rem),
    linear-gradient(90deg, #1d140f 0%, #17110e 52%, #120d0b 100%);
}

.quick-info .container {
  width: min(1840px, calc(100% - 120px));
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  border-right: 1px solid rgba(199, 154, 97, .18);
}


.quick-item:first-child {
  border-left: 1px solid rgba(199, 154, 97, .18);
}

.quick-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  opacity: .88;
  filter:
    brightness(1.04) saturate(.92) drop-shadow(0 3px 8px rgba(0, 0, 0, .32));
}

.quick-item h3 {
  margin: 0;
  color: #f2e5cf;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.quick-item p {
  margin: 7px 0 0;
  max-width: 240px;
  color: #cdbb9f;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.32;
}

/* Yard */
.yard {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(460px, .92fr);
  background: var(--paper);
  border-top: 1px solid rgba(199, 154, 97, .22);
  border-bottom: 1px solid rgba(199, 154, 97, .18);
}

.yard-photo {
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.yard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.yard-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 92px) clamp(58px, 7vw, 120px);
  overflow: hidden;

  background:
    radial-gradient(circle at 88% 18%, rgba(199, 154, 97, .08), transparent 18rem),
    linear-gradient(90deg, #fff8ee 0%, #fbf1e4 100%);
}

.yard-text::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -150px;
  width: 320px;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 248, 238, .78) 38%,
      #fff8ee 72%,
      #fff8ee 100%);
}

.yard-text>* {
  position: relative;
  z-index: 1;
}

.yard-text .script-label {
  color: #b98754;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.yard-text h2 {
  color: #2f241e;
  font-family: var(--serif);
  font-size: clamp(52px, 4.6vw, 42px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: .002em;
}

.yard-ornament {
  width: 128px;
  height: auto;
  display: block;
  margin: 24px 0 34px;
  opacity: .82;
  filter: sepia(.12) saturate(.86) brightness(.92);
}

.yard-text p:not(.script-label) {
  max-width: 560px;
  margin: 0;
  color: #5d4a3f;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: .002em;
}

.yard-btn {
  align-self: flex-start;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 34px;
  gap: 16px;
  border-radius: 8px;
  color: #a8663c;
  border-color: rgba(168, 102, 60, .34);
  background: rgba(255, 255, 255, .44);
  box-shadow:
    inset 0 0 0 1px rgba(168, 102, 60, .05),
    0 10px 24px rgba(93, 62, 38, .07);
  font-size: 15px;
}

.yard-btn:hover {
  color: #8f502d;
  border-color: rgba(168, 102, 60, .56);
  background: rgba(255, 255, 255, .68);
}

.yard-btn-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  flex: 0 0 26px;
  opacity: .82;
  filter:
    sepia(.15) saturate(.85) brightness(.92);
}

/* Gallery */
.gallery {
  padding: 50px 0 58px
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.gallery-row button {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 97, .35);
  border-radius: 3px;
  background: transparent;
  cursor: zoom-in;
}

.gallery-row img {
  height: 138px;
  object-fit: cover;
  transition: transform .35s ease
}

.gallery-row button:hover img {
  transform: scale(1.06)
}

/* Reviews */
.reviews {
  padding: 50px 0 58px;
  background:
    linear-gradient(90deg, rgba(168, 102, 60, .05), transparent 18%, transparent 82%, rgba(168, 102, 60, .05)),
    var(--paper);
}

.reviews-title {
  text-align: center
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 26px auto 0
}

.review {
  padding: 30px;
  border: 1px solid rgba(168, 102, 60, .18);
  border-radius: 7px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 12px 34px rgba(63, 42, 25, .07);
}

.review span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0
}

.review p {
  margin: 0 0 14px
}

.review strong {
  color: #6c4b33
}

/* Footer */
.site-footer {
  padding-top: 62px;
  background:
    radial-gradient(circle at bottom left, rgba(199, 154, 97, .16), transparent 25rem),
    radial-gradient(circle at bottom right, rgba(199, 154, 97, .11), transparent 22rem),
    var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .95fr 1.25fr;
  gap: 46px
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255, 248, 238, .72)
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--gold)
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199, 154, 97, .35);
  border-radius: 50%;
  color: var(--gold)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 18px clamp(24px, 4vw, 62px);
  border-top: 1px solid rgba(199, 154, 97, .18);
  color: rgba(255, 248, 238, .55);
  font-size: 13px;
}

/* Lightbox + reveal */
.lightbox {
  width: min(980px, calc(100vw - 34px));
  padding: 0;
  border: 0;
  background: transparent
}

.lightbox::backdrop {
  background: rgba(10, 7, 5, .88);
  backdrop-filter: blur(5px)
}

.lightbox img {
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .5)
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 238, .52);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 30px
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media (max-width:1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto
  }

  .main-nav {
    position: fixed;
    inset: 70px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(199, 154, 97, .2);
    border-radius: 14px;
    background: rgba(20, 14, 10, .98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  }

  .main-nav.is-open {
    display: flex
  }

  .main-nav a {
    padding: 14px 10px
  }

  .main-nav a:after {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .top-reserve {
    display: none
  }

  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(520px, 620px);
    gap: clamp(120px, 10vw, 220px);
    align-items: stretch;
    justify-content: space-between;
    min-height: 735px;
    padding: 140px 0 58px;
  }

  .welcome-card {
    width: min(640px, 100%);
    min-height: 390px;
    margin-top: 20px;
    padding: 64px 56px 52px;
    transform: none;
  }

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

  .quick-info .container {
    width: min(var(--container), calc(100% - 42px));
  }

  .quick-item {
    padding: 30px 28px;
  }

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

@media (max-width:760px) {
  .container {
    width: min(calc(100% - 28px), var(--container))
  }

  .site-header {
    height: 66px;
    padding: 0 14px
  }

  .brand-main {
    font-size: 18px
  }

  .phone-pill {
    display: none
  }

  .hero,
  .hero-layout {
    min-height: 760px
  }

  .hero-layout {
    padding-top: 104px;
    padding-bottom: 44px
  }

  .hero-icons {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 0;
  }

  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
    margin-top: 34px;
    margin-bottom: 30px;
  }

  .hero-icons div {
    font-size: 18px;
  }

  .hero-icon-img {
    width: 54px;
    height: 54px;
  }

  .icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 16px;
  }

  .story-grid,
  .yard,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .story {
    padding-top: 44px
  }

  .story:before {
    height: 44px
  }

  .story-text {
    padding: 48px 0 0
  }

  .story-photo {
    min-height: 280px;
    margin-inline: -14px
  }

  .quick-grid {
    grid-template-columns: 1fr
  }

  .quick-item {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    min-height: 124px;
    padding: 24px 18px;
  }

  .quick-icon {
    width: 44px;
    height: 44px;
  }

  .quick-item h3 {
    font-size: 21px;
  }

  .quick-item p {
    font-size: 16px;
  }

  .quick-item,
  .quick-item:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 154, 97, .18)
  }

  .yard {
    grid-template-columns: 1fr;
  }

  .yard-photo {
    min-height: 270px;
  }

  .yard-text {
    padding: 46px 22px 52px;
  }

  .yard-text::before {
    display: none;
  }

  .yard-text .script-label {
    font-size: 21px;
  }

  .yard-text h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .yard-ornament {
    width: 104px;
    margin: 18px 0 26px;
  }

  .yard-text p:not(.script-label) {
    font-size: 18px;
    line-height: 1.45;
  }

  .yard-btn {
    width: 100%;
    max-width: 340px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-row button:last-child {
    grid-column: 1/-1
  }

  .gallery-row img {
    height: 150px
  }

  .footer-bottom {
    flex-direction: column;
    padding-inline: 14px
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 82px);
    line-height: .9;
  }

  .hero .ornament {
    width: 190px;
    height: 30px;
    margin: 18px 0 24px;
  }

  .hero-lead {
    font-size: 21px;
    line-height: 1.42;
  }

  .welcome-card {
    width: min(420px, 100%);
    min-height: 320px;
    margin-top: 40px;
    padding: 42px 30px 34px;
    background-size: 100% 100%;
  }

  .welcome-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .welcome-card h2 {
    font-size: 24px;
  }

  .welcome-card p {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.65;
  }

  .welcome-signature {
    width: 180px;
    margin-top: 20px;
  }

  .story .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-text {
    max-width: none;
    padding: 54px 0 0;
  }

  .story-text h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .story-text p:not(.script-label) {
    font-size: 18px;
    line-height: 1.45;
  }

  .story-ornament {
    width: 96px;
    margin: 18px 0 26px;
  }

  .story-photo {
    min-height: 300px;
    margin-inline: -14px;
    border-left: 0;
  }

  .story-btn {
    width: 100%;
    max-width: 320px;
  }
}