/* ─── CAN BREGAT — Shared Stylesheet ──────────────────────────────────────── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:  #F8F6F3;
  --stone:  #9A8E7E;
  --gold:   #B89050;
  --navy:   #1A1612;
  --mid:    #3D3530;
  --sage:   #7A8C6E;
  --white:  #FFFFFF;
  --dark:   #0D0B09;
  --terra:  #B5644A;
  --line:   #E0DDD8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; font-weight: 300; }

/* ─── NAV ──────────────────────────────────────────────────────────────────── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 66px;
  background: linear-gradient(to bottom, rgba(13,11,9,.5) 0%, rgba(13,11,9,0) 100%);
  transition: background .45s;
}
nav#nav.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
nav#nav.solid    { background: rgba(255,255,255,.97); box-shadow: 0 1px 0 var(--line); }

.nav-logo {
  position: absolute; left: 60px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; letter-spacing: .28em;
  color: #fff; text-decoration: none; z-index: 1002; white-space: nowrap;
  transition: color .4s;
}
nav#nav.scrolled .nav-logo,
nav#nav.solid    .nav-logo { color: var(--navy); }
.nav-logo span { color: var(--gold); font-style: italic; }

.nav-links {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  display: flex; gap: 32px; list-style: none; z-index: 1002;
}
.nav-links a {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.82); text-decoration: none;
  transition: color .3s; padding-bottom: 3px;
  border-bottom: 1px solid transparent; white-space: nowrap;
}
nav#nav.scrolled .nav-links a,
nav#nav.solid    .nav-links a { color: var(--mid); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-burger {
  display: none; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1002;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .3s, opacity .3s; }
nav#nav.scrolled .nav-burger span,
nav#nav.solid    .nav-burger span { background: var(--navy); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO SLIDESHOW ────────────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease-in-out; }
.slide:nth-child(odd)  { animation: kb1 16s ease-in-out infinite alternate; }
.slide:nth-child(even) { animation: kb2 16s ease-in-out infinite alternate; }
.slide.active { opacity: 1; }
@keyframes kb1 { from { transform: scale(1); } to { transform: scale(1.07) translateX(-1%); } }
@keyframes kb2 { from { transform: scale(1.05) translateY(-1%); } to { transform: scale(1) translateY(1%); } }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(10,8,5,.5) 0%, rgba(10,8,5,.05) 35%, rgba(10,8,5,.62) 100%); pointer-events: none; }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 0 60px 80px; }
.hero-eyebrow { font-size: .62rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem,7vw,7.5rem); font-weight: 300; line-height: .95; color: #fff; letter-spacing: .04em; margin-bottom: 22px; }
.hero-title em { font-style: italic; color: rgba(255,255,255,.7); }
.hero-subtitle { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 44px; max-width: 460px; line-height: 2; }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; transition: border-color .3s, color .3s; }
.hero-cta:hover { border-color: var(--gold); color: var(--gold); }
.hero-cta::after { content: '→'; }
.slide-dots { position: absolute; right: 56px; bottom: 88px; z-index: 4; display: flex; flex-direction: column; gap: 10px; }
.dot { width: 2px; height: 20px; background: rgba(255,255,255,.3); cursor: pointer; transition: background .4s, height .4s; }
.dot.active { background: var(--gold); height: 36px; }
.scroll-ind { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.4); font-size: .52rem; letter-spacing: .28em; text-transform: uppercase; animation: bounce 2.2s infinite; }
.scroll-ind::after { content: ''; display: block; width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ─── INNER PAGE HERO ───────────────────────────────────────────────────────── */
.page-hero { position: relative; height: 72vh; min-height: 520px; overflow: hidden; }
.ph-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease-in-out; }
.ph-slide.active { opacity: 1; }
.ph-slide:nth-child(odd)  { animation: kb1 18s ease-in-out infinite alternate; }
.ph-slide:nth-child(even) { animation: kb2 18s ease-in-out infinite alternate; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(10,8,5,.25) 0%, rgba(10,8,5,.62) 100%); display: flex; align-items: flex-end; padding: 0 80px 72px; }
.page-hero-text .page-label { font-size: .6rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.page-hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,5vw,5.5rem); font-weight: 300; line-height: 1; color: #fff; letter-spacing: .04em; }
.page-hero-text h1 em { font-style: italic; color: rgba(255,255,255,.72); }

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.section-label { font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-label.light { color: rgba(255,255,255,.55); }
.section-label.light::before { background: rgba(255,255,255,.4); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.8vw,3.5rem); font-weight: 300; line-height: 1.08; color: var(--navy); margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--terra); }
.section-title.light { color: #fff; }
.section-title.light em { color: rgba(255,255,255,.72); }
.section-body { font-size: .82rem; line-height: 2; color: var(--mid); font-weight: 300; max-width: 560px; }
.section-body.light { color: rgba(255,255,255,.7); }
.section-body p+p { margin-top: 1.1em; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .15s; } .rd2 { transition-delay: .30s; } .rd3 { transition-delay: .45s; }

/* ─── STAT STRIP ────────────────────────────────────────────────────────────── */
.stat-strip { background: var(--navy); padding: 44px 60px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.stat { text-align: center; flex: 1; padding: 0 16px; }
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 7px; }
.stat-l { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ─── STORY (2-col) ─────────────────────────────────────────────────────────── */
.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; gap: 2px; background: var(--line); }
.story-img { overflow: hidden; }
.story-text { padding: 90px 80px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.story-text.right { background: var(--white); order: -1; padding: 90px 80px 90px 60px; }
.story-text.dark { background: var(--navy); }
.story-text.dark .section-title { color: #fff; }
.story-text.dark .section-body { color: rgba(255,255,255,.65); }

/* ─── SECTION SLIDESHOW (.ss) ───────────────────────────────────────────────── */
.ss { position: relative; width: 100%; height: 100%; }
.ss-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease-in-out; }
.ss-slide.active { opacity: 1; }
.ss-slide:nth-child(odd)  { animation: kb1 16s ease-in-out infinite alternate; }
.ss-slide:nth-child(even) { animation: kb2 16s ease-in-out infinite alternate; }

/* ─── GSS SLIDERS (gallery-style) ──────────────────────────────────────────── */
.gss-section { padding: 80px 0 0; }
.gss-section + .gss-section { padding-top: 80px; }
.gss-header { padding: 0 60px 40px; }
.gss-lbl { font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.gss-lbl::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.gss-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 300; line-height: 1.1; color: var(--navy); margin-bottom: 12px; }
.gss-title em { font-style: italic; color: var(--terra); }
.gss-desc { font-size: .76rem; line-height: 1.9; color: var(--mid); font-weight: 300; max-width: 680px; }
.gss-wrap { position: relative; height: 68vh; min-height: 400px; overflow: hidden; cursor: pointer; }
.gss-sl { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease-in-out; }
.gss-sl:nth-child(odd)  { animation: kb1 18s ease-in-out infinite alternate; }
.gss-sl:nth-child(even) { animation: kb2 18s ease-in-out infinite alternate; }
.gss-sl.active { opacity: 1; }
.gss-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: none; border: none; color: rgba(255,255,255,.55); font-size: 2.8rem; cursor: pointer; padding: 18px; transition: color .25s; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.gss-btn:hover { color: var(--gold); }
.gss-prv { left: 8px; } .gss-nxt { right: 8px; }
.gss-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.gss-dot { width: 2px; height: 18px; background: rgba(255,255,255,.25); cursor: pointer; border: none; padding: 0; transition: background .3s, height .3s; }
.gss-dot.active { background: var(--gold); height: 32px; }
.gss-ctr { position: absolute; top: 18px; right: 24px; color: rgba(255,255,255,.35); font-size: .55rem; letter-spacing: .2em; z-index: 10; }
.gss-cap { position: absolute; bottom: 18px; left: 60px; color: rgba(255,255,255,.5); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; z-index: 10; font-family: 'Cormorant Garamond', serif; font-style: italic; }
.gss-div { height: 1px; background: var(--line); margin: 0 60px; }

/* ─── PAGE TILES ────────────────────────────────────────────────────────────── */
.page-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.page-tiles.three { grid-template-columns: repeat(3,1fr); }
.page-tile { position: relative; height: 440px; overflow: hidden; text-decoration: none; display: block; }
.page-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.page-tile:hover img { transform: scale(1.06); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,5,.78) 0%, rgba(10,8,5,.08) 55%); transition: background .4s; }
.page-tile:hover .tile-overlay { background: linear-gradient(to top, rgba(10,8,5,.88) 0%, rgba(10,8,5,.22) 65%); }
.tile-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.tile-label { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tile-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: #fff; line-height: 1.1; }
.tile-arrow { display: inline-block; margin-top: 10px; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ─── PANORAMIC ─────────────────────────────────────────────────────────────── */
.panoramic { position: relative; height: 65vh; overflow: hidden; }
.panoramic img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.pano-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,8,5,.62) 0%, rgba(10,8,5,.08) 65%); display: flex; align-items: flex-end; padding: 56px 80px; }
.pano-caption { max-width: 480px; }
.pano-caption .section-title { color: #fff; }
.pano-caption .section-title em { color: rgba(255,255,255,.7); }

/* ─── PULL QUOTE ────────────────────────────────────────────────────────────── */
.pull-quote { background: var(--navy); padding: 90px 60px; text-align: center; position: relative; overflow: hidden; }
.pull-quote::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 28rem; color: rgba(255,255,255,.04); position: absolute; top: -60px; left: 20px; line-height: 1; pointer-events: none; }
.pull-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem,3.2vw,2.8rem); font-weight: 300; font-style: italic; color: #fff; max-width: 860px; margin: 0 auto 20px; line-height: 1.45; position: relative; z-index: 1; }
.pull-quote cite { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ─── FEATURES GRID ─────────────────────────────────────────────────────────── */
.features { padding: 90px 60px; background: var(--cream); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--line); margin-top: 52px; }
.feat-card { background: var(--white); padding: 48px 36px; transition: background .4s; }
.feat-card:hover { background: var(--cream); }
.feat-line { width: 28px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.feat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.feat-desc { font-size: .78rem; line-height: 1.9; color: var(--stone); font-weight: 300; }

/* ─── RATES ─────────────────────────────────────────────────────────────────── */
.rates-section { padding: 90px 60px; background: var(--white); }
.rates-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); margin-top: 52px; }
.rate-card { background: var(--white); padding: 40px 24px; text-align: center; transition: background .3s; }
.rate-card:hover { background: var(--navy); }
.rate-card:hover .rate-season, .rate-card:hover .rate-months { color: rgba(255,255,255,.7); }
.rate-card:hover .rate-price { color: var(--gold); }
.rate-season { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; transition: color .3s; }
.rate-months { font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--navy); line-height: 1.6; transition: color .3s; }
.rate-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--terra); margin-top: 16px; font-style: italic; transition: color .3s; }
.rate-note { margin-top: 20px; font-size: .76rem; color: var(--stone); font-style: italic; }
.rate-note a { color: var(--terra); text-decoration: none; }

/* ─── REVIEWS ───────────────────────────────────────────────────────────────── */
.reviews-section { padding: 90px 60px; background: var(--cream); }
.reviews-scroll { display: flex; gap: 20px; margin-top: 52px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.reviews-scroll::-webkit-scrollbar { display: none; }
.review-card { min-width: 340px; scroll-snap-align: start; background: var(--white); padding: 44px 36px; flex-shrink: 0; position: relative; border: 1px solid var(--line); }
.review-stars { font-size: .85rem; letter-spacing: .1em; color: var(--navy); margin-bottom: 20px; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--mid); line-height: 1.75; }
.review-author { margin-top: 20px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.review-corner { position: absolute; top: 20px; right: 28px; font-size: 3.5rem; color: var(--line); font-family: 'Cormorant Garamond', serif; line-height: 1; }
.vrbo-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px; font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: border-color .3s, color .3s; }
.vrbo-link:hover { color: var(--gold); border-color: var(--gold); }
.vrbo-link::after { content: '→'; }

/* ─── CONTACT ───────────────────────────────────────────────────────────────── */
.contact-section { padding: 90px 60px; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1200px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-top: 24px; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--navy); }
.contact-text span { display: block; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.contact-text a { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--navy); text-decoration: none; font-style: italic; }
.cta-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.cta-btn { display: inline-block; text-align: center; padding: 16px 28px; text-decoration: none; font-size: .65rem; letter-spacing: .24em; text-transform: uppercase; transition: all .35s; }
.cta-btn.primary { background: var(--navy); color: #fff; border: 1px solid var(--navy); }
.cta-btn.primary:hover { background: var(--gold); border-color: var(--gold); }
.cta-btn.secondary { background: none; color: var(--navy); border: 1px solid var(--line); }
.cta-btn.secondary:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.contact-panel { background: var(--cream); padding: 48px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 28px; }
.panel-loc { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); font-style: italic; }
.panel-sub { font-size: .74rem; color: var(--stone); letter-spacing: .12em; margin-top: 6px; line-height: 1.9; }
.panel-rule { border-top: 1px solid var(--line); padding-top: 24px; }
.panel-rule-lbl { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.panel-rule-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--navy); font-style: italic; }
.panel-rule-desc { font-size: .76rem; color: var(--stone); margin-top: 6px; line-height: 1.7; }
.panel-link { display: inline-block; margin-top: 12px; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color .3s, color .3s; }
.panel-link:hover { color: var(--gold); border-color: var(--gold); }

/* ─── LOC BANNER ────────────────────────────────────────────────────────────── */
.loc-banner { height: 56vh; position: relative; overflow: hidden; }
.loc-banner .ss { position: absolute; inset: 0; }
.loc-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,11,9,.9) 0%, rgba(13,11,9,.65) 38%, rgba(13,11,9,.1) 65%, transparent 100%); display: flex; align-items: center; padding: 0 80px; }
.loc-text { max-width: 460px; }
.loc-text .section-title { color: #fff; }
.loc-text .section-title em { color: rgba(255,255,255,.7); }

/* ─── SECTION DIVIDER ────────────────────────────────────────────────────────── */
.section-div { height: 1px; background: linear-gradient(to right, transparent 0%, rgba(184,144,80,.2) 20%, rgba(184,144,80,.2) 80%, transparent 100%); }

/* ─── LIGHTBOX ───────────────────────────────────────────────────────────────── */
.lb { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(8,6,3,.97); align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close { position: absolute; top: 26px; right: 34px; color: rgba(255,255,255,.55); font-size: 1.7rem; cursor: pointer; background: none; border: none; transition: color .3s; line-height: 1; }
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.4); font-size: 2.4rem; cursor: pointer; transition: color .3s; padding: 18px; }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-prev:hover,.lb-next:hover { color: var(--gold); }
.lb-ctr { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.28); font-size: .58rem; letter-spacing: .22em; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 56px 60px; display: flex; justify-content: space-between; align-items: center; }
.foot-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 300; letter-spacing: .26em; color: rgba(255,255,255,.38); }
.foot-logo span { color: var(--gold); font-style: italic; }
nav.foot-nav { position: static !important; height: auto !important; background: none !important; display: flex; gap: 28px; z-index: auto !important; }
.foot-nav a { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); text-decoration: none; transition: color .3s; }
.foot-nav a:hover { color: var(--gold); }
.foot-copy { font-size: .58rem; letter-spacing: .15em; color: rgba(255,255,255,.18); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-logo { left: 32px; } .nav-links { right: 32px; gap: 22px; }
}
@media (max-width: 780px) {
  .nav-burger { display: flex; }
  .nav-links { position: fixed; inset: 0; transform: none; z-index: 1001; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 36px; background: rgba(13,11,9,.98); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .9rem; letter-spacing: .22em; color: rgba(255,255,255,.85); }
  .hero { height: 100svh; min-height: 560px; }
  .hero-content { padding: 0 24px 52px; }
  .hero-title { font-size: clamp(2.8rem,11vw,5rem); }
  .hero-subtitle { font-size: .68rem; max-width: 100%; }
  .slide-dots { display: none; }
  .page-hero { height: 60vh; min-height: 380px; }
  .page-hero-overlay { padding: 0 24px 40px; }
  .stat-strip { flex-wrap: wrap; padding: 28px 20px; gap: 0; }
  .stat { flex: 0 0 33.33%; padding: 16px 8px; }
  .stat:not(:last-child) { border-right: none; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .story { grid-template-columns: 1fr; }
  .story-img { height: 56vw; min-height: 240px; }
  .story-text, .story-text.right { padding: 44px 24px; order: initial; }
  .page-tiles { grid-template-columns: 1fr 1fr; }
  .page-tiles.three { grid-template-columns: 1fr; }
  .page-tile { height: 280px; }
  .panoramic { height: 44vh; }
  .pano-overlay { padding: 32px 24px; }
  .loc-banner { height: 50vh; }
  .loc-overlay { padding: 0 24px; }
  .features, .rates-section, .reviews-section, .contact-section { padding: 52px 24px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .rates-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; gap: 20px; padding: 36px 24px; text-align: center; }
  nav.foot-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .pull-quote { padding: 52px 24px; }
  .pull-quote blockquote { font-size: clamp(1.3rem,5vw,2rem); }
  .gss-header { padding: 0 24px 32px; }
  .gss-wrap { height: 52vw; min-height: 260px; }
  .gss-div { margin: 0 24px; }
  .gss-cap { left: 24px; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 1.1rem; letter-spacing: .2em; }
  .hero-title { font-size: clamp(2.4rem,13vw,3.5rem); }
  .stat { flex: 0 0 50%; }
  .feat-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; }
  .page-tiles { grid-template-columns: 1fr; }
  footer { padding: 28px 20px; }
}
