*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0d0b09;
  --charcoal: #1a1614;
  --ivory: #f2ece0;
  --paper: #f8f4ec;
  --champagne: #d4b896;
  --taupe: #a8907c;
  --blush: #e8d2c6;
  --rose: #c08880;
  --gold: #a07840;
  --rule: rgba(13,11,9,0.12);
  --muted: rgba(13,11,9,0.52);
  --f-display: "Cormorant Garamond","Cormorant",Georgia,serif;
  --f-condensed: "Italiana","Cormorant Garamond",serif;
  --f-body: "Inter",-apple-system,BlinkMacSystemFont,sans-serif;
  --ease: cubic-bezier(0.25,0.1,0.25,1);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--f-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

.sc-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 72px; background: rgba(248,244,236,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule); transition: background 0.3s; }
.sc-nav.scrolled { background: rgba(248,244,236,0.97); }
.sc-logo { font-family: var(--f-display); font-size: 1.1rem; letter-spacing: 0.02em; font-weight: 400; display: flex; align-items: center; gap: 0.75rem; }
.sc-logo-mark { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; letter-spacing: 0.1em; font-family: var(--f-body); font-weight: 500; }
.sc-nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.sc-nav-links a { color: var(--charcoal); transition: color 0.2s; }
.sc-nav-links a:hover { color: var(--gold); }
.sc-nav-meta { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.sc-nav-cta { background: var(--charcoal); color: var(--ivory); padding: 0.6rem 1.4rem; border-radius: 2rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; transition: background 0.25s, transform 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.sc-nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 72px; position: relative; overflow: hidden; }
.hero-left { background: var(--paper); display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem 5rem 5rem; position: relative; z-index: 2; }
.hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--taupe); }
.hero-heading { font-family: var(--f-display); font-weight: 300; font-size: clamp(4rem, 7vw, 8.5rem); line-height: 0.9; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 0.3em; }
.hero-heading em { font-style: italic; font-weight: 300; color: var(--taupe); }
.hero-heading .amp { font-family: var(--f-display); font-style: italic; color: var(--rose); font-size: 0.85em; }
.hero-nowrap {
  white-space: nowrap;
  display: inline-block;
}
.hero-sub { font-size: clamp(2rem, 3.2vw, 4rem); font-family: var(--f-display); font-weight: 300; font-style: italic; color: var(--taupe); line-height: 1.1; margin-bottom: 2.5rem; }
.hero-body { font-size: 0.93rem; color: var(--muted); line-height: 1.7; max-width: 420px; margin-bottom: 3rem; }
.hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--charcoal); color: var(--ivory); padding: 0.9rem 2rem; border-radius: 2rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; display: flex; align-items: center; gap: 0.6rem; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(160,120,64,0.25); }
.btn-ghost { color: var(--charcoal); padding: 0.9rem 1.5rem; border-radius: 2rem; border: 1px solid var(--rule); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: var(--champagne); background: var(--ivory); }
.hero-stats { display: flex; gap: 2rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.hero-stat-num { font-family: var(--f-display); font-style: italic; font-size: 2.2rem; font-weight: 300; color: var(--charcoal); line-height: 1; }
.hero-stat-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) contrast(1.02) brightness(1.02);
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,11,9,0.15) 0%, transparent 60%); }
.hero-caption { position: absolute; bottom: 2rem; right: 2rem; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,236,224,0.7); }

.marquee-section { overflow: hidden; background: var(--charcoal); padding: 1.1rem 0; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 25s linear infinite; }
.marquee-item { font-family: var(--f-display); font-style: italic; font-size: 1.1rem; color: var(--champagne); padding: 0 2.5rem; white-space: nowrap; }
.marquee-dot { color: var(--rose); margin: 0 0.5rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.quote-section { padding: 4.25rem 5rem; background: var(--ivory); display: grid; grid-template-columns: 0.35fr 1.65fr; gap: 2.5rem; align-items: center; }
.quote-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; transform: rotate(180deg); }
.pull-quote { position: relative; padding-left: 3rem; border-left: 2px solid var(--rose); }
.pull-quote::before { content: '\201C'; font-family: var(--f-display); font-size: 5.5rem; font-weight: 300; color: var(--champagne); line-height: 0; position: absolute; left: -0.35rem; top: 1.45rem; opacity: 0.55; }
.pull-quote-text { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(1.65rem, 3vw, 2.75rem); line-height: 1.22; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 1.2rem; max-width: 860px; }
.pull-quote-attr { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.rooms-section { background: var(--paper); }
.rooms-header { padding: 4.5rem 5rem 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.rooms-section-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.rooms-heading { font-family: var(--f-display); font-weight: 300; font-style: italic; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--charcoal); }
.rooms-intro { font-size: 0.95rem; color: var(--muted); line-height: 1.75; max-width: 460px; align-self: end; }

.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.room-card { position: relative; overflow: hidden; height: 70vh; min-height: 520px; cursor: pointer; }
.room-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(85%) brightness(0.55); transform: scale(1.05); transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease; }
.room-card:hover .room-card-bg { transform: scale(1.0); filter: grayscale(40%) brightness(0.45); }
.room-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,11,9,0.9) 0%, rgba(13,11,9,0.2) 55%, transparent 80%); }
.room-card-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.room-card:hover .room-card-content { transform: translateY(-8px); }
.room-number { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,236,224,0.5); margin-bottom: 0.8rem; }
.room-title { font-family: var(--f-display); font-weight: 300; font-size: 2.6rem; line-height: 1.05; letter-spacing: -0.01em; color: #f2ece0; margin-bottom: 0.8rem; }
.room-title em { font-style: italic; color: var(--champagne); }
.room-desc { font-size: 0.82rem; color: rgba(242,236,224,0.72); line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s; opacity: 0; }
.room-card:hover .room-desc { max-height: 120px; opacity: 1; }
.room-services { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1.2rem; max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s, opacity 0.5s 0.05s; opacity: 0; }
.room-card:hover .room-services { max-height: 160px; opacity: 1; }
.room-service-item { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242,236,224,0.55); display: flex; align-items: center; gap: 0.6rem; }
.room-service-item::before { content: '\2014'; color: var(--rose); }
.room-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); margin-top: 1.5rem; padding: 0.7rem 1.4rem; border: 1px solid rgba(212,184,150,0.35); border-radius: 2rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1) 0.1s, opacity 0.4s 0.1s, background 0.2s, border-color 0.2s; }
.room-card:hover .room-cta { max-height: 60px; opacity: 1; }
.room-cta:hover { background: rgba(160,120,64,0.2); border-color: var(--gold); }

.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 0; }
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.08); }
.about-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,11,9,0.05) 0%, transparent 40%); }
.about-content { background: var(--charcoal); display: flex; flex-direction: column; justify-content: center; padding: 6rem 5rem; color: var(--ivory); }
.about-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,236,224,0.45); margin-bottom: 2rem; }
.about-heading { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.2rem, 3.5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2rem; }
.about-heading em { font-style: italic; color: var(--champagne); }
.about-body { font-size: 0.92rem; line-height: 1.8; color: rgba(242,236,224,0.75); margin-bottom: 1.2rem; max-width: 440px; }
.about-body strong { color: var(--ivory); font-weight: 500; }
.about-sig { font-family: var(--f-display); font-style: italic; font-size: 2rem; font-weight: 400; color: var(--champagne); margin-top: 2.5rem; }
.about-sig-label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242,236,224,0.4); margin-top: 0.4rem; }
.about-creds { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(242,236,224,0.12); }
.about-cred { font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(242,236,224,0.55); display: flex; align-items: center; gap: 0.8rem; }
.about-cred::before { content: ''; width: 16px; height: 1px; background: var(--rose); flex-shrink: 0; }

.portfolio-section { background: var(--paper); padding: 6rem 4rem; }
.portfolio-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.portfolio-heading { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--charcoal); }
.portfolio-heading em { font-style: italic; color: var(--taupe); }
.portfolio-intro { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 420px; }
.portfolio-filters { display: flex; gap: 0.6rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn { padding: 0.45rem 1.2rem; border-radius: 2rem; border: 1px solid var(--rule); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: all 0.2s; cursor: pointer; background: transparent; }
.filter-btn.active, .filter-btn:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.gallery-masonry { columns: 3; gap: 1.2rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1.2rem; position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.gallery-item img { width: 100%; display: block; filter: grayscale(30%); transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(13,11,9,0); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; transition: background 0.4s; }
.gallery-item:hover .gallery-item-overlay { background: rgba(13,11,9,0.55); }
.gallery-item-label { font-family: var(--f-display); font-style: italic; font-size: 1.3rem; color: #f2ece0; opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; }
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gallery-item-cat { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(242,236,224,0.6); opacity: 0; transition: opacity 0.35s 0.05s; }
.gallery-item:hover .gallery-item-cat { opacity: 1; }

.testimonial-section { background: var(--ivory); padding: 7rem 5rem; text-align: center; }
.testimonial-text { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.45; letter-spacing: -0.01em; color: var(--charcoal); max-width: 780px; margin: 0 auto 2rem; }
.testimonial-attr { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.creds-section { background: var(--paper); padding: 4rem 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cred-item { text-align: center; }
.cred-title { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; margin-bottom: 0.4rem; }
.cred-sub { font-size: 0.78rem; color: var(--muted); }

.contact-section { background: var(--charcoal); padding: 5.5rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.contact-section-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,236,224,0.4); margin-bottom: 2rem; }
.contact-heading { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ivory); margin-bottom: 1.8rem; }
.contact-heading em { font-style: italic; color: var(--champagne); }
.contact-body { font-size: 0.9rem; color: rgba(242,236,224,0.65); line-height: 1.75; max-width: 380px; margin-bottom: 3rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; font-size: 0.82rem; color: rgba(242,236,224,0.75); padding: 1rem 1.5rem; border: 1px solid rgba(242,236,224,0.12); border-radius: 0.25rem; transition: background 0.25s, border-color 0.25s, color 0.25s; }
.contact-link:hover { background: rgba(160,120,64,0.15); border-color: var(--gold); color: var(--ivory); }
.contact-link-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(242,236,224,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.contact-right { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-detail { padding: 1.5rem; border: 1px solid rgba(242,236,224,0.1); border-radius: 0.25rem; }
.contact-detail-label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242,236,224,0.35); margin-bottom: 0.5rem; }
.contact-detail-value { font-family: var(--f-display); font-style: italic; font-size: 1.2rem; color: var(--champagne); }
.contact-cta-big { background: var(--gold); color: var(--ivory); padding: 1.2rem 2.5rem; border-radius: 2rem; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; text-align: center; margin-top: 0.5rem; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; display: block; }
.contact-cta-big:hover { background: #8a6030; transform: translateY(-2px); box-shadow: 0 10px 35px rgba(160,120,64,0.3); }

.footer { background: var(--charcoal); border-top: 1px solid rgba(242,236,224,0.08); padding: 3rem 5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand-name { font-family: var(--f-display); font-size: 1.1rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.8rem; }
.footer-brand-desc { font-size: 0.78rem; color: rgba(242,236,224,0.4); line-height: 1.65; max-width: 240px; }
.footer-col-heading { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,236,224,0.35); margin-bottom: 1.2rem; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.82rem; color: rgba(242,236,224,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--champagne); }
.footer-bottom { background: var(--charcoal); border-top: 1px solid rgba(242,236,224,0.06); padding: 1.2rem 5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.68rem; color: rgba(242,236,224,0.28); letter-spacing: 0.08em; }
.footer-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,236,224,0.25); }

/* Launch polish additions */
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 999; background: var(--charcoal); color: var(--ivory); padding: 0.75rem 1rem; border-radius: 0 0 0.5rem 0.5rem; transition: top 0.2s; }
.skip-link:focus { top: 0; }
.mobile-menu-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--rule); border-radius: 999px; font-size: 1rem; background: rgba(248,244,236,0.75); }
.sc-nav-inner { display: flex; align-items: center; gap: 2rem; }
.hero-kicker-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; max-width: 540px; margin: -1rem 0 2.5rem; }
.hero-kicker { border: 1px solid var(--rule); border-radius: 999px; padding: 0.65rem 1rem; min-height: 46px; font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; color: var(--charcoal); text-align: center; background: rgba(242,236,224,0.45); display: flex; align-items: center; justify-content: center; line-height: 1.25; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.trust-item { background: var(--paper); padding: 1.1rem 1rem; text-align: center; }
.trust-label { font-size: 0.6rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.trust-value { font-family: var(--f-display); font-style: italic; font-size: 1.35rem; color: var(--charcoal); }
.packages-section, .service-area-section, .faq-section { background: var(--paper); padding: 6rem 5rem; border-top: 1px solid var(--rule); }
.section-split { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 5rem; align-items: start; }
.section-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.section-heading { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--charcoal); }
.section-heading em { font-style: italic; color: var(--taupe); }
.section-copy { color: var(--muted); font-size: 0.94rem; line-height: 1.8; max-width: 460px; margin-top: 1.4rem; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.package-card { border: 1px solid var(--rule); background: var(--ivory); padding: 2rem; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(13,11,9,0.08); border-color: rgba(160,120,64,0.35); }
.package-num { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.package-title { font-family: var(--f-display); font-weight: 300; font-size: 2rem; line-height: 1.05; color: var(--charcoal); margin-bottom: 0.8rem; }
.package-title em { font-style: italic; color: var(--rose); }
.package-text { color: var(--muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.3rem; }
.package-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.package-list li { font-size: 0.72rem; letter-spacing: 0.05em; color: rgba(13,11,9,0.68); display: flex; gap: 0.6rem; align-items: flex-start; }
.package-list li::before { content: '•'; color: var(--rose); }
.package-note { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.testimonial-section.multi-testimonials { text-align: left; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.testimonial-card { border: 1px solid var(--rule); background: var(--paper); padding: 2rem; }
.testimonial-card-text { font-family: var(--f-display); font-style: italic; font-size: 1.45rem; line-height: 1.35; color: var(--charcoal); margin-bottom: 1.25rem; }
.testimonial-card-attr { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.area-card { border: 1px solid var(--rule); background: var(--ivory); padding: 1.5rem; }
.area-title { font-family: var(--f-display); font-size: 1.55rem; font-style: italic; color: var(--charcoal); margin-bottom: 0.7rem; }
.area-list { color: var(--muted); font-size: 0.86rem; line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { border: 1px solid var(--rule); background: var(--ivory); }
.faq-question { width: 100%; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; text-align: left; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); }
.faq-question span:last-child { color: var(--rose); font-size: 1.2rem; line-height: 1; }
.faq-answer { display: none; padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.contact-form { border: 1px solid rgba(242,236,224,0.1); background: rgba(242,236,224,0.04); padding: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(242,236,224,0.45); }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid rgba(242,236,224,0.14); background: rgba(13,11,9,0.2); color: var(--ivory); border-radius: 0.2rem; padding: 0.9rem 1rem; font: inherit; font-size: 0.9rem; outline: none; transition: border-color 0.2s, background 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--champagne); background: rgba(13,11,9,0.32); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(242,236,224,0.32); }
.form-select option { color: var(--ink); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-helper { color: rgba(242,236,224,0.45); font-size: 0.72rem; line-height: 1.6; margin: 1rem 0 1.25rem; }
.form-submit { width: 100%; background: var(--gold); color: var(--ivory); padding: 1rem 1.4rem; border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; transition: background 0.25s, transform 0.2s; }
.form-submit:hover { background: #8a6030; transform: translateY(-1px); }
.form-status { display: none; margin-top: 1rem; color: var(--champagne); font-size: 0.8rem; line-height: 1.5; }
.form-status.visible { display: block; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}
@media (max-width: 1180px) {
  .sc-nav { padding: 0 1.5rem; }
  .sc-nav-links { gap: 1.4rem; }
  .sc-nav-meta { display: none; }
  .hero-left { padding: 5rem 3rem; }
  .package-grid, .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sc-nav { height: 66px; padding: 0 1rem; }
  .mobile-menu-toggle { display: flex; }
  .sc-nav-inner { display: none; position: absolute; top: 66px; left: 0; right: 0; background: rgba(248,244,236,0.98); border-bottom: 1px solid var(--rule); padding: 1.5rem; flex-direction: column; align-items: stretch; gap: 1.4rem; }
  .sc-nav.menu-open .sc-nav-inner { display: flex; }
  .sc-nav-links { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sc-nav-cta { justify-content: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 66px; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-right { min-height: 65vh; }
  .hero-kicker-grid, .trust-strip, .rooms-header, .portfolio-header, .about-section, .contact-section, .footer, .section-split { grid-template-columns: 1fr; }
  .hero-stats, .creds-section { grid-template-columns: 1fr; display: grid; gap: 1rem; }
  .quote-section, .rooms-header, .portfolio-section, .testimonial-section, .about-content, .contact-section, .footer, .footer-bottom, .packages-section, .service-area-section, .faq-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .quote-section { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 3rem; padding-bottom: 3rem; }
  .quote-label { writing-mode: initial; transform: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card { height: auto; min-height: 460px; }
  .gallery-masonry { columns: 2; }
  .area-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}
@media (max-width: 560px) {
  .sc-logo { font-size: 0.98rem; }
  .hero-heading { font-size: clamp(3.1rem, 17vw, 4.4rem); }
  .hero-kicker-grid { grid-template-columns: 1fr; }
  .hero-ctas { align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .gallery-masonry { columns: 1; }
  .room-card-content { padding: 1.5rem; }
  .contact-form { padding: 1.25rem; }
}


/* Readability and spacing polish added after prototype review */
.sc-nav {
  height: 76px;
  padding: 0 3.25rem;
}

.sc-logo {
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  gap: 0.8rem;
}

.sc-logo-mark {
  width: 38px;
  height: 38px;
  font-size: 0.72rem;
  font-weight: 600;
}

.sc-nav-inner {
  gap: 2.1rem;
}

.sc-nav-links {
  gap: 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.105em;
  font-weight: 600;
}

.sc-nav-meta {
  font-size: 0.72rem;
  letter-spacing: 0.095em;
}

.sc-nav-cta {
  padding: 0.72rem 1.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.105em;
  font-weight: 600;
}

.hero {
  padding-top: 76px;
}

.hero-left {
  padding: 6.25rem 4.35rem 5rem 5.35rem;
}

.hero-eyebrow,
.rooms-section-label,
.section-eyebrow,
.contact-section-label,
.about-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.hero-heading {
  font-size: clamp(4.05rem, 6.65vw, 8.05rem);
  line-height: 0.92;
  margin-bottom: 0.26em;
}

.hero-body,
.rooms-intro,
.portfolio-intro,
.section-copy,
.contact-body,
.about-body {
  font-size: 1rem;
  line-height: 1.78;
}

.hero-body {
  max-width: 470px;
  margin-bottom: 2.55rem;
}

.hero-kicker-grid {
  max-width: 590px;
  gap: 0.8rem;
  margin: -0.65rem 0 2.35rem;
}

.hero-kicker {
  padding: 0.62rem 0.95rem;
  font-size: 0.68rem;
  letter-spacing: 0.085em;
  font-weight: 600;
}

.btn-primary,
.btn-ghost,
.form-submit,
.contact-cta-big {
  font-size: 0.76rem;
  letter-spacing: 0.105em;
  font-weight: 600;
}

.hero-stat-label,
.cred-title,
.package-num,
.package-note,
.testimonial-card-attr,
.footer-copy,
.footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.095em;
}

.trust-label,
.form-label,
.contact-detail-label,
.footer-col-heading,
.gallery-item-cat,
.room-number,
.room-service-item,
.room-cta {
  font-size: 0.68rem;
  letter-spacing: 0.105em;
}

.room-desc,
.package-text,
.area-list,
.faq-answer,
.form-helper,
.footer-brand-desc,
.footer-links a {
  font-size: 0.9rem;
  line-height: 1.75;
}

.package-list li {
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.faq-question {
  font-size: 0.84rem;
  letter-spacing: 0.085em;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  font-size: 0.95rem;
}

.packages-section,
.service-area-section,
.faq-section {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.portfolio-section,
.testimonial-section {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.quote-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-right img {
  filter: saturate(0.68) contrast(1.02) brightness(1.03);
}

@media (max-width: 1320px) {
  .sc-nav { padding: 0 1.5rem; }
  .sc-nav-inner { gap: 1.5rem; }
  .sc-nav-links { gap: 1.25rem; font-size: 0.72rem; }
  .sc-nav-meta { font-size: 0.68rem; }
  .sc-nav-cta { padding: 0.68rem 1.25rem; font-size: 0.7rem; }
}

@media (max-width: 1180px) {
  .sc-nav-links { gap: 1.05rem; }
  .hero-left { padding: 5rem 3rem; }
}

@media (max-width: 900px) {
  .sc-nav { height: 66px; padding: 0 1rem; }
  .hero { padding-top: 66px; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .sc-nav-links { font-size: 0.86rem; letter-spacing: 0.08em; }
  .sc-nav-cta { font-size: 0.78rem; }
  .hero-heading { font-size: clamp(3.65rem, 14vw, 5.7rem); }
  .hero-body { max-width: 100%; }
}

@media (max-width: 560px) {
  .sc-logo { font-size: 1.05rem; }
  .sc-logo-mark { width: 34px; height: 34px; font-size: 0.66rem; }
  .hero-heading { font-size: clamp(3rem, 16vw, 4.25rem); }
  .hero-eyebrow { font-size: 0.66rem; }
  .hero-kicker { font-size: 0.72rem; }
}


/* Final compacting and refinement pass */
.hero {
  min-height: 100vh;
  padding-top: 72px;
}

.hero-left {
  justify-content: center;
  padding: 4.25rem 4.1rem 2.35rem 5rem;
}

.hero-heading {
  font-size: clamp(3.65rem, 5.55vw, 6.85rem);
  line-height: 0.94;
  margin-bottom: 0.22em;
}

.hero-eyebrow {
  margin-bottom: 1.8rem;
}

.hero-body {
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-kicker-grid {
  max-width: 600px;
  margin: -0.25rem 0 1.75rem;
}

.hero-kicker {
  min-height: 44px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-ctas {
  margin-bottom: 0;
}

/* The hero stats duplicated the trust strip and made the hero too tall. */
.hero-stats {
  display: none;
}

.quote-section-with-photo {
  grid-template-columns: 0.22fr minmax(150px, 220px) minmax(0, 1.55fr);
  gap: 2.25rem;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.quote-photo-card {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(13,11,9,0.12);
  background: var(--paper);
  box-shadow: 0 24px 55px rgba(13,11,9,0.08);
}

.quote-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(248,244,236,0.08), rgba(13,11,9,0.18));
  pointer-events: none;
}

.quote-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(0.18) contrast(0.94) brightness(1.04);
  transform: scale(1.03);
  transition: transform 1.2s var(--ease-out), filter 1.2s var(--ease-out);
}

.quote-photo-card:hover img {
  transform: scale(1.0);
  filter: grayscale(85%) sepia(0.2) contrast(0.98) brightness(1.05);
}

@media (max-width: 1320px) {
  .hero-left {
    padding: 3.8rem 3.25rem 2.1rem 4.1rem;
  }

  .hero-heading {
    font-size: clamp(3.35rem, 5.2vw, 6.25rem);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 66px;
  }

  .hero-left {
    padding: 3.25rem 1.5rem 2.75rem;
  }

  .hero-heading {
    font-size: clamp(3.15rem, 13vw, 5rem);
  }

  .quote-section-with-photo {
    grid-template-columns: 1fr;
  }

  .quote-photo-card {
    max-width: 180px;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .hero-left {
    padding-top: 3.2rem;
    padding-bottom: 1.75rem;
  }

  .hero-heading {
    font-size: clamp(3.2rem, 5vw, 5.95rem);
  }

  .hero-body {
    margin-bottom: 1.55rem;
  }

  .hero-kicker-grid {
    margin-bottom: 1.35rem;
  }

  .btn-primary,
  .btn-ghost {
    padding-top: 0.78rem;
    padding-bottom: 0.78rem;
  }
}


/* V4 viewport rhythm: keep nav + hero + ticker inside first screen */
:root {
  --nav-h: 72px;
  --ticker-h: 42px;
}

.sc-nav {
  height: var(--nav-h);
}

.hero {
  min-height: calc(100svh - var(--ticker-h));
  padding-top: var(--nav-h);
  align-items: stretch;
}

.hero-left {
  justify-content: center;
  padding: 2.35rem 4rem 2rem 4.65rem;
}

.hero-eyebrow {
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-size: clamp(3.25rem, 5.05vw, 6.15rem);
  line-height: 0.96;
  margin-bottom: 0.2em;
}

.hero-body {
  max-width: 500px;
  margin-bottom: 1.45rem;
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-kicker-grid {
  max-width: 590px;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
}

.hero-kicker {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  line-height: 1.18;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-ctas {
  margin-bottom: 0;
}

.btn-primary,
.btn-ghost {
  padding-top: 0.78rem;
  padding-bottom: 0.78rem;
}

.marquee-section {
  min-height: var(--ticker-h);
  height: var(--ticker-h);
  padding: 0;
  display: flex;
  align-items: center;
}

.marquee-track {
  align-items: center;
}

.marquee-item {
  font-size: 1rem;
  padding: 0 2.2rem;
}

/* Keep the right-side image locked to the same first-screen rhythm. */
.hero-right,
.hero-right img {
  min-height: 100%;
}

/* Marilyn quote polish */
.quote-section-with-photo {
  grid-template-columns: 0.2fr minmax(128px, 185px) minmax(0, 1.55fr);
  gap: 2rem;
}

.quote-photo-card {
  max-width: 185px;
  transform: translateY(6px);
}

.quote-photo-card.reveal.visible {
  transform: translateY(0);
}

.pull-quote-text {
  font-size: clamp(1.55rem, 2.65vw, 2.45rem);
}

@media (max-width: 1320px) {
  .hero-left {
    padding: 2.05rem 3rem 1.75rem 3.65rem;
  }

  .hero-heading {
    font-size: clamp(3rem, 4.75vw, 5.55rem);
  }

  .hero-body {
    font-size: 0.93rem;
    line-height: 1.68;
    margin-bottom: 1.25rem;
  }

  .hero-kicker-grid {
    margin-bottom: 1.15rem;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 66px;
    --ticker-h: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-left {
    padding: 3.25rem 1.5rem 2.5rem;
  }

  .hero-heading {
    font-size: clamp(3.05rem, 13vw, 5rem);
  }

  .hero-right {
    min-height: 62vh;
  }

  .marquee-section {
    height: auto;
    min-height: var(--ticker-h);
  }

  .quote-section-with-photo {
    grid-template-columns: 1fr;
  }

  .quote-photo-card {
    max-width: 160px;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .hero-heading {
    font-size: clamp(2.95rem, 4.55vw, 5.35rem);
  }

  .hero-left {
    padding-top: 1.65rem;
    padding-bottom: 1.35rem;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
  }

  .hero-body {
    margin-bottom: 1.05rem;
  }

  .hero-kicker-grid {
    margin-bottom: 0.95rem;
  }

  .hero-kicker {
    min-height: 38px;
  }
}


/* V5 balanced whitespace pass: keep the editorial feel, remove accidental dead zones */
:root {
  --nav-h: 72px;
  --ticker-h: 42px;
}

/* Slightly reduce the image column so the hero feels less image-heavy. */
.hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: calc(100svh - var(--ticker-h));
  padding-top: var(--nav-h);
}

.hero-left {
  padding: 2.15rem 3.8rem 1.85rem 4.75rem;
}

.hero-heading {
  font-size: clamp(3.2rem, 4.85vw, 5.9rem);
  line-height: 0.965;
}

.hero-body {
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.hero-kicker-grid {
  max-width: 570px;
  margin-bottom: 1.1rem;
}

.hero-kicker {
  min-height: 38px;
  padding: 0.5rem 0.8rem;
}

.hero-right img {
  object-position: 46% center;
}

/* Keep ticker attached to the hero, like a closing ribbon for the first screen. */
.marquee-section {
  min-height: var(--ticker-h);
  height: var(--ticker-h);
  padding: 0;
  display: flex;
  align-items: center;
}

/* The quote/photo block should feel like a transition, not a full-page stop. */
.quote-section,
.quote-section-with-photo {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.quote-section-with-photo {
  grid-template-columns: 0.18fr minmax(112px, 160px) minmax(0, 1.45fr);
  gap: 1.65rem;
}

.quote-photo-card {
  max-width: 160px;
}

.pull-quote {
  padding-left: 2.35rem;
}

.pull-quote-text {
  max-width: 780px;
  font-size: clamp(1.45rem, 2.35vw, 2.25rem);
}

/* Services intro: reduce the big blank lanes while preserving the high-end spacing. */
.rooms-header {
  padding: 3.15rem 4.6rem 2.05rem;
  grid-template-columns: minmax(280px, 0.72fr) minmax(380px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.rooms-heading {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

.rooms-intro {
  max-width: 560px;
  justify-self: end;
}

.room-card {
  height: 64vh;
  min-height: 460px;
}

/* Packages: reduce the canyon between the intro text and the card stack. */
.packages-section,
.service-area-section,
.faq-section {
  padding: 4.25rem 4.6rem;
}

.section-split {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.3fr);
  gap: 3rem;
}

.section-copy {
  max-width: 520px;
}

.package-grid {
  gap: 0.85rem;
}

.package-card {
  min-height: 292px;
  padding: 1.65rem;
}

/* Portfolio: bring the intro copy closer to the heading and reduce the vertical dead area. */
.portfolio-section {
  padding: 4.25rem 4.6rem;
}

.portfolio-header {
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  gap: 2.2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.portfolio-intro {
  max-width: 560px;
  justify-self: start;
}

.portfolio-filters {
  margin-bottom: 1.65rem;
}

.testimonial-section {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

/* Keep the design breathable on medium screens without creating huge empty columns. */
@media (max-width: 1320px) {
  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .hero-left {
    padding-left: 3.65rem;
    padding-right: 3rem;
  }

  .rooms-header,
  .section-split,
  .portfolio-header {
    gap: 2rem;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .hero-left {
    padding-top: 1.55rem;
    padding-bottom: 1.25rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero-heading {
    font-size: clamp(2.9rem, 4.35vw, 5.1rem);
  }

  .hero-body {
    font-size: 0.92rem;
    line-height: 1.62;
    margin-bottom: 0.95rem;
  }

  .hero-kicker-grid {
    margin-bottom: 0.85rem;
  }

  .hero-kicker {
    min-height: 36px;
  }
}

@media (max-width: 900px) {
  .hero,
  .rooms-header,
  .section-split,
  .portfolio-header,
  .quote-section-with-photo {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-left,
  .rooms-header,
  .packages-section,
  .service-area-section,
  .faq-section,
  .portfolio-section,
  .testimonial-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-left {
    padding-top: 3rem;
    padding-bottom: 2.45rem;
  }

  .hero-right {
    min-height: 58vh;
  }

  .rooms-header,
  .packages-section,
  .service-area-section,
  .faq-section,
  .portfolio-section,
  .testimonial-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .rooms-intro,
  .portfolio-intro {
    justify-self: stretch;
  }
}

/* ===== Hero heading: corrected clamp so text stays large all the way to 900px ===== */
/* Base (≥1320px): generous scale, healthy minimum */
.hero-heading {
  font-size: clamp(3.9rem, 5.25vw, 6.3rem);
}
/* Mid-desktop (900–1320px): raise floor + coefficient so text doesn't collapse early */
@media (max-width: 1320px) {
  .hero-heading { font-size: clamp(3.65rem, 5.6vw, 5.85rem); }
}
/* Short laptop/tablet landscape: slightly tighter but still large */
@media (max-height: 820px) and (min-width: 901px) {
  .hero-heading { font-size: clamp(3.35rem, 5.0vw, 5.45rem); }
}
/* Mobile (<= 900px): existing 12vw fluid scale is fine, just raise the floor a touch */
@media (max-width: 900px) {
  .hero-heading { font-size: clamp(3.25rem, 12.5vw, 4.9rem); }
}
/* Small mobile */
@media (max-width: 560px) {
  .hero-heading { font-size: clamp(2.95rem, 15.5vw, 4.15rem); }
}

/* ===== V6: Parallax, gap elimination, alignment & transition pass ===== */

/* Scroll-margin so fixed nav never covers section anchors */
[id] { scroll-margin-top: calc(var(--nav-h) + 10px); }

/* -- Hero parallax: driven by a CSS var set from JS -- */
:root { --px-hero: 0px; }

.hero-right img {
  transform: translateY(var(--px-hero)) scale(1.07);
  transition: filter 0.6s ease; /* drop the 8s transform transition */
  will-change: transform;
}
.hero-right:hover img {
  transform: translateY(var(--px-hero)) scale(1.10);
}

/* -- Hero stats: zero footprint (hidden but still in DOM) -- */
.hero-stats {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* -- Gallery filter: CSS-driven show/hide with transitions -- */
.gallery-item { transition: opacity 0.35s ease, transform 0.35s ease; }
.gallery-item.is-hidden {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  pointer-events: none;
}

/* -- About section: keep image flush, no artificial min-height -- */
.about-image { min-height: 460px; }
.about-image img { height: 100%; }
.about-content { padding: 5rem 4.5rem; }

/* -- Creds strip: tighter on its own -- */
.creds-section { padding: 3.5rem 5rem; }

/* -- Testimonial multi: align padding with other sections -- */
.testimonial-section.multi-testimonials {
  padding-left: 4.6rem;
  padding-right: 4.6rem;
}

/* -- room card bg: hint for GPU compositing -- */
.room-card-bg { will-change: transform, filter; }

/* -- Footer: ensure it doesn't bleed contact's dark bg -- */
footer { position: relative; z-index: 1; }

/* -- Responsive overrides -- */
@media (max-width: 900px) {
  .about-image { min-height: 52vw; }
  .about-content { padding: 3.5rem 1.5rem; }
  .testimonial-section.multi-testimonials {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .contact-section { padding-top: 4rem; padding-bottom: 4rem; }
  .creds-section { padding: 2.5rem 1.5rem; }
}

@media (max-width: 560px) {
  .about-content { padding: 3rem 1.5rem; }
}

/* Static production pages */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.page-hero { min-height: 78vh; display: grid; grid-template-columns: 1.05fr 0.95fr; padding-top: 72px; background: var(--paper); border-bottom: 1px solid var(--rule); }
.page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 6rem 5rem; }
.page-hero-image { position: relative; overflow: hidden; min-height: 520px; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.55) contrast(1.02) brightness(1.02); }
.content-section { padding: 6rem 5rem; background: var(--paper); border-top: 1px solid var(--rule); }
.content-section.ivory { background: var(--ivory); }
.editorial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.editorial-card { border: 1px solid var(--rule); background: rgba(248,244,236,0.66); padding: 2rem; min-height: 100%; }
.text-columns { columns: 2; column-gap: 4rem; color: var(--muted); font-size: 0.94rem; line-height: 1.8; }
.text-columns p { break-inside: avoid; margin-bottom: 1.2rem; }
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); margin-top: 2.5rem; }
.process-step { background: var(--ivory); padding: 2rem; }
.process-step h3 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 300; color: var(--charcoal); margin-bottom: 0.6rem; }
.process-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.cta-band { background: var(--charcoal); color: var(--ivory); padding: 5rem; display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.cta-band h2 { font-family: var(--f-display); font-size: clamp(2rem,4vw,4rem); font-weight: 300; line-height: 1.05; }
.cta-band em { color: var(--champagne); }
.full-gallery .gallery-masonry { columns: 4; }
.gallery-item.is-hidden { opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.25s, transform 0.25s; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 2rem; background: rgba(13,11,9,0.88); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(980px, 92vw); max-height: 82vh; object-fit: contain; }
.lightbox button { position: absolute; top: 1rem; right: 1rem; color: var(--ivory); border: 1px solid rgba(242,236,224,0.35); border-radius: 999px; padding: 0.8rem 1rem; }
.form-input.invalid, .form-select.invalid, .form-textarea.invalid { border-color: var(--rose); }
.form-status.visible { display: block; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 1rem; text-align: left; }
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; } }
@media (max-width: 920px) {
  .page-hero, .section-split, .contact-section { grid-template-columns: 1fr; }
  .page-hero-copy, .content-section, .cta-band { padding: 4rem 1.5rem; }
  .page-hero-image { min-height: 420px; }
  .editorial-grid, .process-row { grid-template-columns: 1fr; }
  .text-columns { columns: 1; }
  .full-gallery .gallery-masonry { columns: 2; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) { .full-gallery .gallery-masonry { columns: 1; } }
