* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8f4ec;
  color: #132c1a;
  -webkit-font-smoothing: antialiased;
}
.pr-root {
  --ink: #132c1a;
  --ink-soft: #33493a;
  --gold: #dbc653;
  --gold-deep: #b89f3c;
  --cream: #f8f4ec;
  --sand: #efe7d5;
  --paper: #fffdf8;
  --line: rgba(19,44,26,0.13);
  --cream-text: #f5f1e6;
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; font-weight: 500; margin: 0; letter-spacing: -0.03em; }
h1 { letter-spacing: -0.055em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
a.underline-link { position: relative; }
a.underline-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px;
  background: currentColor; transition: right .45s cubic-bezier(.65,0,.35,1);
}
a.underline-link:hover::after { right: 0; }
button { font-family: inherit; cursor: pointer; }
.eyebrow {
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold); }
.section { padding: clamp(64px, 10vw, 148px) clamp(20px, 6vw, 64px); position: relative; }
.section-dark { background: var(--ink); color: var(--cream-text); }
.wrap { max-width: 1240px; margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-2.is-visible { transition-delay: .16s; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px;
  font-size: 13px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  border: 1px solid var(--ink); background: var(--ink); color: var(--cream-text);
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid rgba(245,241,230,.55); color: var(--cream-text); }
.btn-ghost:hover { background: rgba(245,241,230,.12); border-color: var(--cream-text); color: var(--cream-text); }
.btn-outline-dark { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream-text); }
.link-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: none; border: none; padding: 0; color: inherit; }
.link-cta svg { width: 15px; height: 15px; transition: transform .3s ease; }
.link-cta:hover svg { transform: translateX(4px); }

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; display: block; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 48px);
  color: var(--cream-text);
  background: linear-gradient(to bottom, rgba(10,20,13,.55), rgba(10,20,13,0));
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, color .4s ease;
}
.nav.is-scrolled {
  background: rgba(248,244,236,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding-top: 14px; padding-bottom: 14px; color: var(--ink);
}
.brand { display: flex; align-items: center; gap: 12px; background: none; border: none; padding: 0; }
.brand-icon { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) invert(1); transition: filter .4s ease; flex-shrink: 0; }
.nav.is-scrolled .brand-icon { filter: none; }
.brand-word { font-family: 'Cormorant Garamond', serif; line-height: 1.05; text-align: left; }
.brand-word .l1 { display: block; font-size: 17px; letter-spacing: .15em; font-weight: 600; }
.brand-word .l2 { display: block; font-size: 10.5px; letter-spacing: .22em; font-weight: 400; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link { font-size: 12.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.lang-group { display: flex; align-items: center; gap: 2px; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.lang-btn { background: none; border: none; color: inherit; opacity: .5; padding: 4px 5px; transition: opacity .25s ease; font-family: 'Manrope', sans-serif; }
.lang-btn.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang-btn:hover { opacity: .85; }
.nav .btn { padding: 11px 22px; font-size: 11.5px; }
.nav .btn span.short { display: none; }
.burger { display: none; background: none; border: none; color: inherit; padding: 4px; }
.burger .icon { width: 24px; height: 24px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--ink); color: var(--cream-text);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 32px; gap: 26px; opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .35s ease, transform .35s ease; }
.mobile-menu .close-btn { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--cream-text); }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 34px; }
.mobile-menu .lang-group { margin-top: 12px; font-size: 15px; }
#navLinksMobile { display: flex; flex-direction: column; gap: 24px; }

.hero { position: relative; height: 100svh; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,18,12,.82) 0%, rgba(9,18,12,.28) 52%, rgba(9,18,12,.32) 100%); }
.hero-content { position: relative; z-index: 1; color: var(--cream-text); width: 100%; padding: 0 clamp(20px, 6vw, 64px) clamp(56px, 9vw, 96px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; margin-bottom: 22px;
  border: 1px solid rgba(245,241,230,.4); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: clamp(42px, 7.4vw, 92px); line-height: 1.03; font-weight: 500; max-width: 15ch; }
.hero h1 .l2 { display: block; font-style: italic; color: var(--gold); }
.hero-sub { margin-top: 26px; font-size: clamp(15px, 1.6vw, 18px); max-width: 46ch; line-height: 1.6; color: rgba(245,241,230,.88); font-weight: 300; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; z-index: 1; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--cream-text);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; opacity: .8;
}
.scroll-cue .icon { width: 16px; height: 16px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.intro-strip { text-align: center; padding: clamp(56px, 9vw, 100px) 24px; position: relative; overflow: hidden; }
.intro-strip .watermark { position: absolute; top: 50%; left: 50%; width: 640px; height: 640px; transform: translate(-50%,-50%); opacity: .06; filter: brightness(0) invert(1); pointer-events: none; }
.intro-strip p { position: relative; font-size: clamp(22px, 3.4vw, 38px); font-style: italic; font-weight: 400; line-height: 1.35; max-width: 18ch; margin: 0 auto; }

.signature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.signature-item { background: var(--paper); padding: 34px 28px; display: flex; flex-direction: column; gap: 16px; }
.signature-item .icon { width: 26px; height: 26px; color: var(--gold-deep); }
.signature-item h3 { font-size: 19px; font-weight: 600; }
.signature-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split-media { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.6,.2,1); }
.split-media:hover img { transform: scale(1.05); }
.split-text h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.12; margin-bottom: 22px; }
.split-text p.body { font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 46ch; }
.bullet-list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; }
.bullet-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.bullet-list .dot { flex-shrink: 0; width: 6px; height: 6px; margin-top: 8px; background: var(--gold-deep); }

.features-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.features-head h2 { font-size: clamp(30px, 4vw, 46px); }
.features-head p { font-size: 15px; color: var(--ink-soft); max-width: 30ch; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { padding: 40px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; transition: background .35s ease; }
.feature-card:hover { background: var(--paper); }
.feature-num { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--gold-deep); letter-spacing: .05em; }
.feature-card h3 { font-size: 21px; font-weight: 600; }
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.full-media { position: relative; height: 82vh; min-height: 460px; display: flex; align-items: center; padding: 0 clamp(20px, 6vw, 64px); overflow: hidden; }
.full-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.full-media .fm-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,18,12,.86) 0%, rgba(9,18,12,.5) 42%, rgba(9,18,12,.12) 72%); }
.full-media-content { position: relative; z-index: 1; max-width: 520px; color: var(--cream-text); }
.full-media-content h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.14; margin-bottom: 22px; }
.full-media-content p { font-size: 16px; line-height: 1.75; color: rgba(245,241,230,.86); }

.interior-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.interior-grid .big { aspect-ratio: 4/3.1; overflow: hidden; }
.interior-grid .small { aspect-ratio: 4/5; overflow: hidden; }
.interior-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.6,.2,1); }
.interior-grid a:hover img { transform: scale(1.04); }
.interior-text { max-width: 640px; margin-bottom: 48px; }
.interior-text h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.interior-text p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }

.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.gallery-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.gallery-head p { font-size: 14px; color: var(--ink-soft); }
.gallery-nav { display: flex; gap: 10px; }
.gallery-nav button { width: 42px; height: 42px; border: 1px solid var(--ink); background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: background .3s ease, color .3s ease; }
.gallery-nav button:hover { background: var(--ink); color: var(--cream-text); }
.gallery-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--gold-deep) transparent; }
.gallery-track::-webkit-scrollbar { height: 5px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--line); }
.gallery-item { position: relative; flex: 0 0 clamp(240px, 34vw, 420px); aspect-ratio: 3/3.7; scroll-snap-align: start; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .g-tag { position: absolute; left: 14px; bottom: 14px; color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transition: opacity .35s ease; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,18,12,.55), transparent 45%); opacity: 0; transition: opacity .35s ease; }
.gallery-item:hover::after, .gallery-item:hover .g-tag { opacity: 1; }

.location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.location-text h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 20px; }
.location-text p { font-size: 16px; line-height: 1.75; color: rgba(245,241,230,.8); max-width: 44ch; }
.location-address { margin-top: 26px; padding: 14px 18px; border: 1px dashed rgba(245,241,230,.35); display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; letter-spacing: .03em; color: var(--gold); }
.location-diagram { max-width: 480px; margin: 0 auto; }
.map-placeholder {
  position: relative; aspect-ratio: 4/3; border: 1.5px dashed rgba(245,241,230,.32); border-radius: 3px;
  background-image:
    repeating-linear-gradient(0deg, rgba(245,241,230,.07) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(245,241,230,.07) 0 1px, transparent 1px 36px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 24px;
}
.map-placeholder .loc-pin { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--ink); box-shadow: 0 0 0 8px rgba(219,198,83,.14); }
.map-placeholder p { font-size: 12.5px; letter-spacing: .04em; color: rgba(245,241,230,.5); max-width: 24ch; text-transform: uppercase; }
.loc-tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.loc-tag {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px; background: rgba(245,241,230,.06);
  border: 1px solid rgba(245,241,230,.18); font-size: 12px; letter-spacing: .04em; color: var(--cream-text); white-space: nowrap;
}
.loc-tag .icon { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.sister-card {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  border: 1px solid var(--line); padding: clamp(28px, 4vw, 52px); background: var(--paper);
}
.sister-card .eyebrow { margin-bottom: 12px; }
.sister-card h3 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.sister-card p { font-size: 15px; color: var(--ink-soft); max-width: 52ch; line-height: 1.6; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); }
.contact-text h2 { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.1; margin-bottom: 20px; }
.contact-text p { font-size: 16px; color: var(--ink-soft); max-width: 40ch; line-height: 1.7; }
.contact-direct { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.contact-direct .row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); }
.contact-direct .icon { width: 18px; height: 18px; color: var(--gold-deep); }
.contact-direct .label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line); background: transparent;
  font-family: 'Manrope', sans-serif; font-size: 15.5px; padding: 10px 2px; color: var(--ink); outline: none;
  transition: border-color .3s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--gold-deep); }
.field textarea { resize: vertical; min-height: 64px; }
.contact-form .btn { margin-top: 8px; width: 100%; justify-content: center; border: 1px solid var(--ink); }
.form-thanks { display: none; align-items: center; gap: 12px; padding: 20px 0; font-size: 15px; }
.form-thanks.is-visible { display: flex; }
.contact-form form.is-hidden { display: none; }
.form-thanks .icon { width: 20px; height: 20px; color: var(--gold-deep); }

.footer { padding: 76px clamp(20px, 6vw, 64px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(245,241,230,.14); }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand .brand-icon { filter: brightness(0) invert(1); width: 38px; height: 38px; }
.footer-brand .brand-word .l1 { font-size: 19px; }
.footer p.tagline { font-size: 14.5px; color: rgba(245,241,230,.65); max-width: 32ch; line-height: 1.6; }
.footer h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; font-family: 'Manrope', sans-serif; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: rgba(245,241,230,.78); }
#footerLinks { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.footer-bottom p, .footer-bottom a { font-size: 12.5px; color: rgba(245,241,230,.5); }
.socials { display: flex; gap: 14px; }
.socials a { width: 34px; height: 34px; border: 1px solid rgba(245,241,230,.22); display: flex; align-items: center; justify-content: center; transition: border-color .3s ease, background .3s ease; }
.socials a:hover { border-color: var(--gold); background: rgba(219,198,83,.1); }
.socials .icon { width: 15px; height: 15px; color: var(--cream-text); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav .lang-group { display: none; }
  .burger { display: flex; }
  .signature-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .interior-grid, .location-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .split-media, .interior-grid .big, .interior-grid .small { aspect-ratio: 16/11; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sister-card { grid-template-columns: 1fr; text-align: left; }
  .sister-card .btn { width: 100%; justify-content: center; }
  .location-diagram { margin-top: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 620px) {
  .signature-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav .btn span.long { display: none; }
  .nav .btn span.short { display: inline; }
}
