:root {
  --shell: min(100% - 72px, 1220px);
  --ink: #0d0d0d;
  --ink-soft: #171717;
  --paper: #f7f2ea;
  --paper-2: #fbf8f3;
  --white: #ffffff;
  --gold: #c59c56;
  --gold-soft: #e4c58d;
  --gold-deep: #976920;
  --gold-rich: #b18131;
  --line: #e8dece;
  --muted: #666056;
  --shadow: 0 24px 80px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }

.announcement {
  min-height: 35px;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: #090909;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 700;
  text-transform: uppercase;
}
.announcement-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 98px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 168px 1fr auto;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.brand {
  width: 112px;
  height: 58px;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
}
.desktop-nav a,
.text-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #1e1c1a;
}
.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.desktop-nav a:hover::after,
.text-link:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-small {
  min-height: 48px;
  padding: 0 22px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.button-dark {
  background: #111;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.button-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-rich));
  color: #111;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(181,129,49,.22);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #1d1d1d;
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { bottom: 17px; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  background: #111;
}
.hero-media,
.hero-overlay,
.hero-bottom-glow {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: url('assets/smokies-hero.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,7,7,.78) 0%, rgba(7,7,7,.62) 34%, rgba(7,7,7,.18) 64%, rgba(7,7,7,.08) 100%),
    linear-gradient(180deg, rgba(7,7,7,.24) 0%, rgba(7,7,7,.18) 26%, rgba(7,7,7,.40) 100%);
}
.hero-bottom-glow {
  top: auto;
  height: 240px;
  background: linear-gradient(180deg, rgba(247,242,234,0) 0%, rgba(247,242,234,.96) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  min-height: 930px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px 0 76px;
}
.hero-copy {
  max-width: 760px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow-dark { color: var(--gold-deep); }
.hero h1,
.intro-grid h2,
.section-heading h2,
.promise-copy h2,
.support-card h2,
.owner-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(72px, 8vw, 106px);
  line-height: .94;
  font-weight: 500;
}
.hero h1 span {
  display: inline-block;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
}
.hero-lede {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}
.hero-signature {
  margin: 16px 0 0;
  max-width: 600px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
}
.search-card {
  width: 100%;
  margin-top: 48px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(197,156,86,.20);
}
.search-card-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
  align-items: end;
}
.search-kicker {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
}
.search-card-top h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}
.search-card-top p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.search-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 12px;
}
.search-field {
  min-height: 78px;
  padding: 17px 18px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search-field label {
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.search-field input,
.search-field select {
  border: 0;
  background: transparent;
  color: #171717;
  outline: none;
  width: 100%;
  font-size: 16px;
  padding: 0;
}
.search-button {
  min-width: 190px;
  min-height: 78px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 0 20px;
}
.search-note {
  min-height: 24px;
  margin: 14px 4px 0;
  color: #4d4a45;
  font-size: 13px;
}

.intro-section {
  padding: 106px 0 40px;
}
.intro-kicker {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: .20em;
  font-weight: 700;
}
.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 86px;
  align-items: start;
}
.intro-grid h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 70px);
  line-height: .98;
  font-weight: 600;
}
.intro-copy p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-weight: 600;
}
.arrow-link span { color: var(--gold-deep); }

.stays-section {
  padding: 70px 0 120px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1;
  font-weight: 600;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.collection-card {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  border-radius: 24px;
  transition: transform .24s ease, box-shadow .24s ease;
}
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
}
.collection-visual { position: relative; }
.collection-visual svg { width: 100%; height: 315px; display: block; }
.collection-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 700;
}
.collection-meta {
  padding: 24px 24px 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.collection-meta h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}
.collection-meta p { margin: 0; color: var(--muted); font-size: 14px; }
.round-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: .2s ease;
}
.collection-card:hover .round-arrow { background: var(--ink); color: white; border-color: var(--ink); }

.promise-section {
  background: linear-gradient(180deg, #111 0%, #0c0c0c 100%);
  color: white;
  padding: 118px 0;
  overflow: hidden;
}
.promise-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 88px;
  align-items: center;
}
.promise-mark {
  min-height: 510px;
  display: grid;
  place-items: center;
  position: relative;
}
.promise-mark::before,
.promise-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(197,156,86,.2);
  border-radius: 50%;
}
.promise-mark::before { width: 490px; height: 490px; }
.promise-mark::after { width: 370px; height: 370px; }
.o3-symbol { width: 330px; height: 330px; position: relative; z-index: 1; }
.gold-ring {
  position: absolute;
  inset: 38px 66px 44px 16px;
  border: 26px solid var(--gold);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
}
.three {
  position: absolute;
  right: 12px;
  top: -35px;
  font: 330px/1 Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.16em;
  color: white;
}
.promise-copy h2 {
  margin: 0 0 46px;
  font-size: clamp(48px, 4.8vw, 70px);
  line-height: .98;
  font-weight: 600;
  max-width: 740px;
}
.promise-list { border-top: 1px solid rgba(255,255,255,.17); }
.promise-list > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.17);
  padding: 24px 0;
}
.promise-list span {
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 800;
}
.promise-list p {
  margin: 0;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  line-height: 1.75;
  font-size: 15px;
}

.explore-section { padding: 122px 0; }
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.destination {
  min-height: 320px;
  padding: 30px 30px 34px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background .25s ease, color .25s ease;
}
.destination:last-child { border-right: 0; }
.destination::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -80px;
  top: 20px;
  border: 1px solid rgba(197,156,86,.22);
  transition: transform .45s ease;
}
.destination:hover::after { transform: scale(1.25); }
.destination-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-deep);
}
.destination h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 600;
}
.destination p {
  margin: 0;
  max-width: 290px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.owner-section { padding: 36px 0 114px; }
.owner-panel {
  background: #181818;
  color: white;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.owner-panel::before {
  content: "O3";
  position: absolute;
  right: -30px;
  top: -100px;
  font-size: 360px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.18em;
  color: rgba(197,156,86,.055);
}
.owner-panel h2 {
  margin: 0;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: .98;
  position: relative;
  font-weight: 600;
}
.owner-copy { position: relative; }
.owner-copy p {
  margin: 0 0 28px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  font-size: 15px;
}
.owner-copy .button { min-height: 52px; padding: 0 28px; }

.support-section { padding: 0 0 120px; }
.support-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}
.support-card h2 {
  margin: 0 0 15px;
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
}
.support-card p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
}

.site-footer {
  background: #0d0d0d;
  color: white;
  padding: 76px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .55fr .55fr .9fr;
  gap: 48px;
}
.footer-brand img {
  width: 176px;
  filter: invert(1) grayscale(1) brightness(6);
  opacity: .92;
  mix-blend-mode: screen;
}
.footer-brand p {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer-column h4 {
  margin: 5px 0 20px;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-column a {
  display: block;
  margin: 0 0 13px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer-column a:hover { color: white; }
.footer-newsletter p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
}
.footer-newsletter form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.footer-newsletter input {
  flex: 1;
  color: white;
  background: transparent;
  border: 0;
  outline: none;
  padding: 12px 0;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.42); }
.footer-newsletter button {
  color: var(--gold-soft);
  background: transparent;
  border: 0;
  font-size: 21px;
}
.footer-newsletter span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}
.footer-bottom {
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .04em;
}
.footer-bottom div { display: flex; gap: 24px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 980px); }
  .site-header { grid-template-columns: 148px 1fr auto; padding: 0 20px; }
  .desktop-nav { display: none; }
  .nav-actions { justify-self: end; }
  .nav-actions .text-link { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 133px;
    right: 20px;
    left: 20px;
    background: white;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    border-radius: 20px;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a {
    font-size: 16px;
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    min-height: 980px;
  }
  .hero-content {
    min-height: 980px;
    padding-top: 100px;
  }
  .search-card-top,
  .intro-grid,
  .section-heading,
  .promise-grid,
  .owner-panel,
  .support-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
    gap: 28px;
  }
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-button {
    grid-column: 1 / -1;
  }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); }
  .promise-mark { min-height: 360px; }
  .promise-mark::before { width: 340px; height: 340px; }
  .promise-mark::after { width: 260px; height: 260px; }
  .o3-symbol { transform: scale(.74); }
  .destination-grid { grid-template-columns: 1fr; }
  .destination { border-right: 0; border-bottom: 1px solid var(--line); min-height: 230px; }
  .destination:last-child { border-bottom: 0; }
  .owner-panel { padding: 62px 48px; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; max-width: 440px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); }
  .announcement { justify-content: center; font-size: 8px; letter-spacing: .14em; gap: 9px; }
  .announcement span:last-child, .announcement-dot { display: none; }
  .site-header {
    height: 78px;
    grid-template-columns: 118px 1fr auto;
  }
  .brand { width: 94px; height: 48px; }
  .button-small { display: none; }
  .mobile-menu { top: 113px; left: 16px; right: 16px; }
  .hero { min-height: 1040px; }
  .hero-content {
    min-height: 1040px;
    padding: 76px 0 46px;
  }
  .hero h1 { font-size: clamp(56px, 16vw, 78px); }
  .hero-lede { font-size: 18px; }
  .hero-signature { font-size: 14px; }
  .search-card { padding: 18px; border-radius: 20px; }
  .search-card-top h2 { font-size: 34px; }
  .search-grid { grid-template-columns: 1fr; }
  .search-field,
  .search-button { min-height: 68px; }
  .search-button { width: 100%; }
  .intro-section { padding-top: 78px; }
  .intro-grid h2,
  .section-heading h2,
  .promise-copy h2,
  .owner-panel h2,
  .support-card h2 { font-size: 44px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card:last-child { grid-column: auto; width: auto; }
  .collection-visual svg { height: 280px; }
  .promise-section { padding: 92px 0; }
  .promise-list > div { grid-template-columns: 1fr; gap: 10px; }
  .owner-panel { padding: 44px 24px; border-radius: 22px; }
  .support-section { padding-bottom: 96px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---------- V3 supporting pages ---------- */
.desktop-nav a.active::after { transform: scaleX(1); }
.subhero { position: relative; min-height: 620px; overflow: hidden; background: #111; }
.subhero-media, .subhero-overlay { position: absolute; inset: 0; }
.subhero-media { background: url('assets/smokies-hero.jpg') center 46% / cover no-repeat; transform: scale(1.02); }
.subhero-overlay { background: linear-gradient(90deg, rgba(7,7,7,.78) 0%, rgba(7,7,7,.58) 44%, rgba(7,7,7,.22) 100%), linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42)); }
.subhero-inner { position: relative; z-index: 2; min-height: 620px; display: flex; flex-direction: column; justify-content: flex-end; padding: 110px 0 78px; color: #fff; }
.subhero h1 { margin: 0; max-width: 900px; font: 500 clamp(62px,7vw,96px)/.94 "Cormorant Garamond", Georgia, serif; letter-spacing: -.035em; }
.subhero-inner > p:last-child { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.65; }
.content-section { padding: 112px 0; }
.owner-intro-grid, .story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; margin-bottom: 82px; }
.owner-intro-grid h2, .story-grid h2, .gold-band h2, .dark-cta h2, .purpose-panel h2, .contact-grid h2 { margin: 0; font: 600 clamp(46px,5vw,70px)/.98 "Cormorant Garamond",Georgia,serif; letter-spacing:-.03em; }
.owner-intro-grid .button { min-height: 54px; padding: 0 28px; margin-top: 8px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); background:#fff; }
.service-card { min-height: 290px; padding: 32px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.service-card span, .stay-placeholder span, .value-card span { display:block; margin-bottom:42px; color:var(--gold-deep); font-size:10px; letter-spacing:.18em; font-weight:800; }
.service-card h3, .stay-placeholder h3, .value-card h3, .faq-row h3 { margin:0 0 14px; font:600 31px/1.05 "Cormorant Garamond",Georgia,serif; }
.service-card p, .stay-placeholder p, .value-card p { margin:0; color:var(--muted); line-height:1.75; font-size:14px; }
.dark-cta { padding: 108px 0; background:#111; color:#fff; }
.dark-cta-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:100px; align-items:end; }
.dark-cta h2 { max-width:690px; }
.dark-cta-grid > div:last-child p { margin:0 0 28px; color:rgba(255,255,255,.72); line-height:1.8; }
.dark-cta .button { min-height:54px; padding:0 30px; }
.stay-placeholder-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:58px; }
.stay-placeholder { min-height:315px; padding:34px; background:#fff; border:1px solid var(--line); border-radius:24px; display:flex; flex-direction:column; }
.stay-placeholder span { margin-bottom:auto; }
.stay-placeholder h3 { font-size:36px; }
.gold-band { padding:100px 0; background:linear-gradient(135deg,#b68b45,#d9bc80); color:#111; }
.gold-band > .shell { max-width:900px; text-align:center; }
.gold-band .eyebrow { color:#49320f; }
.gold-band h2 { margin-bottom:30px; }
.gold-band .button { min-height:54px; padding:0 30px; }
.purpose-panel { margin:20px 0 84px; padding:78px; border-radius:28px; background:#151515; color:#fff; position:relative; overflow:hidden; }
.purpose-panel::after { content:"O3"; position:absolute; right:-20px; bottom:-92px; font-size:290px; font-weight:900; letter-spacing:-.18em; color:rgba(197,156,86,.05); }
.purpose-panel h2 { max-width:820px; position:relative; z-index:1; }
.purpose-panel > p:last-child { max-width:850px; margin:26px 0 0; color:rgba(255,255,255,.73); font-size:17px; line-height:1.85; position:relative; z-index:1; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.value-card { padding:38px 34px 44px; border-right:1px solid var(--line); }
.value-card:last-child { border-right:0; }
.value-card span { margin-bottom:54px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); background:#fff; }
.contact-grid > div { padding:58px; }
.contact-grid > div:first-child { border-right:1px solid var(--line); }
.contact-grid h2 { font-size:54px; }
.contact-grid > div > p:not(.eyebrow) { color:var(--muted); line-height:1.8; margin:22px 0 32px; }
.contact-email { display:inline-flex; gap:10px; font-weight:700; border-bottom:1px solid var(--gold); padding-bottom:5px; }
.contact-email span { color:var(--gold-deep); }
.faq-block { margin-top:90px; }
.faq-row { display:grid; grid-template-columns:.7fr 1.3fr; gap:60px; padding:28px 0; border-top:1px solid var(--line); }
.faq-row:last-child { border-bottom:1px solid var(--line); }
.faq-row h3 { font-size:27px; }
.faq-row p { margin:0; color:var(--muted); line-height:1.75; }

@media (max-width: 1000px) {
  .owner-intro-grid, .story-grid, .dark-cta-grid { grid-template-columns:1fr; gap:40px; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .stay-placeholder-grid, .values-grid { grid-template-columns:1fr; }
  .value-card { border-right:0; border-bottom:1px solid var(--line); }
  .value-card:last-child { border-bottom:0; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-grid > div:first-child { border-right:0; border-bottom:1px solid var(--line); }
}
@media (max-width: 720px) {
  .subhero, .subhero-inner { min-height:540px; }
  .subhero-inner { padding:82px 0 52px; }
  .subhero h1 { font-size:58px; }
  .subhero-inner > p:last-child { font-size:16px; }
  .content-section { padding:78px 0; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:250px; }
  .purpose-panel { padding:48px 26px; border-radius:22px; }
  .contact-grid > div { padding:38px 24px; }
  .contact-grid h2 { font-size:43px; }
  .faq-row { grid-template-columns:1fr; gap:10px; }
}

/* Legal pages */
.legal-hero {
  background: linear-gradient(180deg, #f8f4ed 0%, #f3ecdf 100%);
  border-bottom: 1px solid var(--line);
}
.legal-hero-inner {
  padding: 92px 0 70px;
}
.legal-hero h1 {
  margin: 0;
  font: 600 clamp(58px, 7vw, 92px)/.95 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}
.legal-hero-inner > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.legal-section {
  padding: 84px 0 118px;
}
.legal-copy {
  max-width: 900px;
}
.legal-copy > p:first-child {
  font-size: 18px;
  line-height: 1.8;
  color: #393631;
  margin-bottom: 46px;
}
.legal-copy h2 {
  margin: 44px 0 14px;
  font: 600 34px/1.08 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.02em;
}
.legal-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.legal-copy a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-copy strong { color: #2c2925; }

@media (max-width: 720px) {
  .legal-hero-inner { padding: 66px 0 52px; }
  .legal-hero h1 { font-size: 54px; }
  .legal-section { padding: 62px 0 90px; }
  .legal-copy h2 { font-size: 30px; }
}
