/* ==========================================================================
   43225 Mintwood St · marketing site
   ========================================================================== */

:root {
  --bg: #fbf8f3;
  --bg-alt: #f3eee5;
  --ink: #1d1c1a;
  --ink-soft: #4a4742;
  --muted: #7c7770;
  --line: #e6dfd2;
  --accent: #a4502e;        /* muted terracotta */
  --accent-deep: #7d3c22;
  --shadow-sm: 0 1px 2px rgba(20, 18, 14, 0.06), 0 1px 1px rgba(20, 18, 14, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(20, 18, 14, 0.18);
  --shadow-lg: 0 40px 80px -30px rgba(20, 18, 14, 0.35);
  --radius: 4px;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; color: inherit; }

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.container.narrow { width: min(820px, calc(100% - 48px)); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow.center { display: block; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
}

/* ============================ NAVIGATION ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.nav.scrolled .nav-brand { color: var(--ink); text-shadow: none; }
.brand-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.brand-name {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
  transition: color 0.35s ease, text-shadow 0.35s ease;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); text-shadow: none; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
}
.nav.scrolled .nav-cta {
  border-color: var(--ink);
  color: var(--ink);
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(251, 248, 243, 0.98);
    padding: 24px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.menu-open .nav-links a {
    color: var(--ink-soft);
    text-shadow: none;
    font-size: 16px;
  }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  background: #0c0b09;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* Base transform matches the animation END state so removing
     .active doesn't cause a visible scale jump.                 */
  transform: scale(1);
  transition: opacity 1.6s ease-in-out;
}
.hero-img.active {
  opacity: 1;
  /* Animation duration matches the JS rotation interval (7000 ms)
     so the zoom completes cleanly right before the swap.         */
  animation: heroZoom 7s linear forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1);    }
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 30%),
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 96px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.hero-title span:first-child {
  display: block;
  font-size: clamp(54px, 11vw, 144px);
  font-weight: 400;
}
.hero-title .hero-script {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 78px);
  margin-top: -6px;
  color: #f1d9c2;
}
.hero-sub {
  max-width: 540px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 28px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: saturate(1.2) blur(4px);
  -webkit-backdrop-filter: saturate(1.2) blur(4px);
  white-space: nowrap;
}
.hero-chip svg {
  width: 13px; height: 13px;
  color: #f1d9c2;
}
@media (max-width: 700px) {
  .hero-chip { padding: 6px 12px; font-size: 10.5px; letter-spacing: 0.10em; }
  .hero-chips { gap: 8px; margin-bottom: 22px; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 22px 28px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 22px;
  max-width: 860px;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
}
.hero-meta-price {
  padding-right: 26px;
  border-right: 1px solid rgba(255,255,255,0.22);
  margin-right: 4px;
}
.hero-meta-price strong {
  font-size: 38px;
  color: #f1d9c2;
  letter-spacing: -0.005em;
}
.hero-meta-price span {
  color: #f1d9c2;
  opacity: 1;
}
@media (max-width: 700px) {
  .hero-meta { gap: 16px 22px; padding-top: 18px; }
  .hero-meta-price { padding-right: 18px; }
  .hero-meta-price strong { font-size: 30px; }
  .hero-meta strong { font-size: 22px; }
}
.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 32px;
  width: 24px; height: 60px;
  display: flex; align-items: flex-start; justify-content: center;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 8px 0;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 12px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(22px); opacity: 0; }
}

@media (max-width: 700px) {
  .hero-content { padding-bottom: 70px; }
  .hero-meta { gap: 22px; }
  .hero-scroll { display: none; }
}

/* ============================ STORY ============================ */
.story {
  padding: 130px 0 110px;
  background: var(--bg);
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.story-text .eyebrow-rule {
  display: inline-block;
  width: 42px; height: 1px;
  background: var(--accent);
}
.story-text .section-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin: 0 0 30px;
  letter-spacing: -0.015em;
}
.story-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.story-body p { margin: 0 0 20px; }
.story-body em { color: var(--ink); font-style: italic; font-weight: 500; }
.story-body .dropcap::first-letter {
  font-family: var(--serif);
  font-size: 4.2em;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 6px 14px 0 0;
  color: var(--accent);
}
.story-text .signature {
  margin: 28px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
}

/* The right-side overlapping photo composition */
.story-media {
  position: relative;
  min-height: 580px;
}
.story-photo {
  position: absolute;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(40, 28, 20, 0.32);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo-1 {
  top: 0;
  left: 0;
  width: 78%;
  aspect-ratio: 4 / 3;
  z-index: 1;
}
.story-photo-2 {
  bottom: 0;
  right: 0;
  width: 62%;
  aspect-ratio: 5 / 4;
  z-index: 2;
  border: 6px solid var(--bg);
}
.story-photo:hover { transform: translateY(-4px); }

.story-stat {
  position: absolute;
  top: -28px;
  right: 28px;
  z-index: 3;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px -14px rgba(164, 80, 46, 0.55);
  transform: rotate(-6deg);
}
.story-stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.story-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  line-height: 1.3;
  opacity: 0.95;
}

@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-media { min-height: 480px; max-width: 580px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .story-media { min-height: 380px; }
  .story-photo-1 { width: 82%; }
  .story-photo-2 { width: 60%; }
  .story-stat { width: 108px; height: 108px; top: -14px; right: 8px; }
  .story-stat-num { font-size: 28px; }
}

/* ============================ QUOTE BAND ============================ */
.quote-band {
  background: var(--ink);
  color: #f5ede0;
  padding: 70px 0;
}
.quote-band p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.005em;
  max-width: 920px;
  margin-inline: auto;
}

/* Accent variant — the "Location, Location, Location." band */
.quote-band-accent {
  background:
    radial-gradient(ellipse at center, rgba(164, 80, 46, 0.18) 0%, rgba(0,0,0,0) 65%),
    var(--ink);
  padding: 90px 0;
  scroll-margin-top: 70px; /* keep nav from covering the band on anchor jump */
}
.quote-band-accent p {
  font-size: clamp(30px, 4.5vw, 56px);
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-weight: 500;
}
.quote-band-accent p span {
  display: inline-block;
  transition: transform 0.5s ease, color 0.5s ease;
}
.quote-band-accent p span:nth-child(1) { color: #f5ede0; }
.quote-band-accent p span:nth-child(2) { color: #e8c9aa; }
.quote-band-accent p span:nth-child(3) { color: var(--accent); }
.quote-band-accent p span:nth-child(n+2) { margin-left: 6px; }

/* ============================ HIGHLIGHTS ============================ */
.highlights {
  padding: 120px 0 110px;
  background: var(--bg-alt);
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

/* Three tonal palettes rotated across the 9 cards — restrained for an editorial feel.
   The tone only shows in the top accent bar, the icon stroke, and the bullet dash.       */
.card[data-tone="warm"]  { --tone: #a4502e; --tone-soft: #a4502e14; --tone-line: #a4502e2e; }
.card[data-tone="sage"]  { --tone: #5e7d61; --tone-soft: #5e7d6114; --tone-line: #5e7d612e; }
.card[data-tone="slate"] { --tone: #51708a; --tone-soft: #51708a14; --tone-line: #51708a2e; }

.card {
  position: relative;
  background: var(--bg);
  padding: 38px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.45s cubic-bezier(.2,.7,.2,1),
              border-color 0.45s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tone, var(--accent)) 0%, var(--tone-line, transparent) 100%);
  opacity: 0.9;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px -28px rgba(40, 28, 20, 0.30);
  border-color: var(--tone-line, var(--line));
}
.card-num {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--tone, var(--accent));
  opacity: 0.55;
  pointer-events: none;
  line-height: 1;
}
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--tone-soft, rgba(164, 80, 46, 0.10));
  color: var(--tone, var(--accent));
  border: 1px solid var(--tone-line, var(--line));
  margin-bottom: 24px;
}
.card-icon svg {
  width: 24px; height: 24px;
  stroke-width: 1.6;
}
.card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink);
}
.card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.card li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 1px;
  background: var(--tone, var(--accent));
  opacity: 0.8;
}
.card li strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .highlight-grid { grid-template-columns: 1fr; gap: 18px; }
  .card { padding: 32px 26px 26px; }
  .card-num { top: 26px; right: 26px; font-size: 20px; }
}

.updates-band {
  margin-top: 60px;
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.updates-band .eyebrow { margin-bottom: 18px; display: block; }
.chips {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chips li {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-alt);
}

/* ============================ GALLERY ============================ */
.gallery { padding: 120px 0 110px; }
.gallery-head {
  max-width: 740px;
  margin: 0 auto 32px;
  padding-left: 6px;
}
.gallery-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.gallery-head .eyebrow-rule {
  display: inline-block;
  width: 42px; height: 1px;
  background: var(--accent);
}
.gallery-head .section-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.gallery-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 30px 0 32px;
  padding-left: 6px;
}
.filter {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
  grid-auto-flow: dense;
}
.tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
  background: var(--bg-alt);
  box-shadow: 0 6px 18px -10px rgba(20, 18, 14, 0.25);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 18px 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.tile:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.tile-wide { grid-column: span 2; }
.tile-feature { grid-column: span 2; grid-row: span 2; }

.tile.hide { display: none; }

@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .tile-feature { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 720px) {
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 10px; }
  .tile-wide { grid-column: span 2; }
  .tile-feature { grid-column: span 2; grid-row: span 2; }
}

/* ============================ TOUR / VIDEO ============================ */
.tour {
  padding: 130px 0 120px;
  background: var(--bg-alt);
}
.tour-head {
  text-align: left;
  max-width: 740px;
  margin: 0 auto 44px;
  padding-left: 6px;
}
.tour-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.tour-head .eyebrow-rule {
  display: inline-block;
  width: 42px; height: 1px;
  background: var(--accent);
}
.tour-head .section-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.tour-sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}
.video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 50px 120px -40px rgba(20, 18, 14, 0.55),
              0 18px 40px -20px rgba(20, 18, 14, 0.35);
  aspect-ratio: 16 / 9;
  max-width: 1080px;
  margin: 0 auto;
}
.video-wrap video,
.video-wrap iframe { width: 100%; height: 100%; display: block; border: 0; object-fit: cover; }

.tour-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.tour-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tour-cta-link:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 18px 30px -16px rgba(164, 80, 46, 0.6);
}
.tour-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  transition: background 0.3s ease;
}
.tour-cta-link:hover .tour-cta-icon { background: #fff; color: var(--accent); }
.tour-cta-icon svg { width: 16px; height: 16px; margin-left: 2px; }
.tour-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.tour-cta-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tour-cta-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.65;
  margin-top: 3px;
}

@media (max-width: 720px) {
  .tour-head { text-align: left; padding-left: 0; }
  .tour-cta-link { padding-right: 20px; }
  .tour-cta-meta { display: none; }
}

/* ============================ LOCATION ============================ */
.location { padding: 120px 0 110px; }
.location .eyebrow { text-align: center; display: block; }
.location-lede {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.map-wrap iframe {
  width: 100%; height: 100%; min-height: 420px; border: 0;
  filter: saturate(0.9);
}
.location-points { display: flex; flex-direction: column; gap: 22px; }
.point {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.point-num {
  flex-shrink: 0;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid var(--line);
}
.point h4 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.point p { margin: 0; color: var(--ink-soft); font-size: 15px; }

@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 320px; }
}

/* ============================ CTA ============================ */
.cta {
  padding: 130px 0;
  background:
    linear-gradient(180deg, rgba(20,18,14,0.62) 0%, rgba(20,18,14,0.78) 100%),
    url("assets/photos/exterior-back-wide.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.cta .eyebrow { color: #f1d9c2; }
.cta .section-title { color: #fff; max-width: 640px; margin-inline: auto; }
.cta-sub {
  max-width: 560px;
  margin: 6px auto 36px;
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn.ghost {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn.ghost:hover { background: #fff; color: var(--ink); }

/* ============================ FOOTER ============================ */
.footer {
  background: var(--ink);
  color: #cbc5b8;
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}
.footer-addr { margin: 0; opacity: 0.7; }
.footer-mini { text-align: right; }
.footer-mini p { margin: 0; opacity: 0.7; line-height: 1.6; }
.footer-fine {
  margin: 40px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-mini { text-align: left; }
}

/* ============================ LIGHTBOX ============================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,9,8,0.93);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 64px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lb-figure {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
}
.lb-figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}
.lb-figure figcaption {
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  padding: 18px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 12px; right: 18px; font-size: 32px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); font-size: 56px; }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); font-size: 56px; }

@media (max-width: 700px) {
  .lightbox { padding: 24px; }
  .lb-prev { left: 0; font-size: 44px; }
  .lb-next { right: 0; font-size: 44px; }
}

/* ============================ REVEAL ANIMATION ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
