@font-face {
  font-family: 'Noto Sans SC';
  src: url('../fonts/noto-sans-sc/noto-sans-sc.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif SC';
  src: url('../fonts/noto-serif-sc/noto-serif-sc.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair/playfair-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair/playfair-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair/playfair-700i.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair/playfair-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/dm-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --parchment:  oklch(87% 0.018 74);
  --linen:      oklch(92% 0.010 72);
  --ink:        oklch(20% 0.010 55);
  --ink-mid:    oklch(38% 0.010 58);
  --amber:      oklch(65% 0.12 60);
  --amber-d:    oklch(55% 0.14 54);
  --red:        oklch(42% 0.18 25);
  --border:     oklch(75% 0.012 70);
  --ash:        oklch(48% 0.010 65);
  --linen-d:    oklch(83% 0.014 72);
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html.zh {
  --font-d: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-b: 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

html.zh .hero-h1,
html.zh .sec-h2,
html.zh .pho-h2,
html.zh .m-con-h2 { letter-spacing: 0; line-height: 1.2; }

html.zh .pillar-num { font-family: 'DM Sans', 'Helvetica Neue', sans-serif; }

html.zh .nav-links a,
html.zh .mobile-nav a { letter-spacing: 0.02em; }

html.zh .lang-toggle { display: flex; }

html { scroll-behavior: smooth; }
body { background: var(--linen); color: var(--ink); font-family: var(--font-b); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* ── SCROLL ANIMATIONS ── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease-out, transform 700ms ease-out; }
.d1 { transition-delay: 80ms; } .d2 { transition-delay: 160ms; } .d3 { transition-delay: 240ms; } .d4 { transition-delay: 320ms; }
.fade.in { opacity: 1; transform: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; background: var(--linen); border-bottom: 1px solid var(--border);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ash); text-decoration: none; transition: color 180ms; }
.nav-links a:hover { color: var(--ink); }

/* lang toggle */
.lang-toggle { display: flex; gap: 0; margin-left: 4px; }
.lang-btn { font-family: var(--font-b); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; background: transparent; color: var(--ash); border: 1px solid var(--border); cursor: pointer; transition: background 170ms, color 170ms; }
.lang-btn:first-child { border-right: none; }
.lang-btn.active { background: var(--ink); color: var(--linen); border-color: var(--ink); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 280ms ease-out, opacity 280ms; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--parchment);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transform: translateX(100%); transition: transform 320ms ease-out;
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-family: var(--font-d); font-size: 1.75rem; font-weight: 700; color: var(--ink); text-decoration: none; transition: color 180ms; letter-spacing: 0.01em; }
.mobile-nav a:hover { color: var(--amber); }
.mob-lang { display: flex; gap: 0; margin-top: 4px; }
.mob-lang button { font-family: var(--font-b); font-size: 0.72rem; font-weight: 500; padding: 8px 18px; background: transparent; color: var(--ash); border: 1px solid var(--border); cursor: pointer; transition: background 170ms, color 170ms; }
.mob-lang button:first-child { border-right: none; }
.mob-lang button.active { background: var(--ink); color: var(--linen); border-color: var(--ink); }

/* sticky cta */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; padding: 14px 24px; background: var(--ink); text-align: center; transform: translateY(100%); transition: transform 300ms ease-out; }
.sticky-cta.show { transform: none; }
.sticky-cta a { font-family: var(--font-b); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--amber); text-decoration: none; }

/* ── HERO ── */
.hero { min-height: 100vh; padding-top: 68px; display: grid; grid-template-columns: 1fr 1fr; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 48px; background: var(--linen); }
.hero-est { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.hero-est::before { content: ''; display: block; width: 22px; height: 1px; background: var(--amber); }
.hero-h1 { font-family: var(--font-d); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; color: var(--ink); margin-bottom: 20px; letter-spacing: -0.01em; }
.hero-h1 em { font-style: italic; color: var(--red); }
.hero-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); margin-bottom: 20px; }
.hero-body { font-size: 1rem; font-weight: 300; color: var(--ash); max-width: 52ch; line-height: 1.75; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease-out; }
.hero:hover .hero-img img { transform: scale(1.03); }
.hero-badge { position: absolute; bottom: 28px; right: 28px; background: var(--parchment); padding: 16px 18px; border-radius: 6px; text-align: center; box-shadow: 0 6px 24px oklch(20% 0.010 55 / 0.14); }
.badge-year { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--red); line-height: 1; display: block; }
.badge-lbl { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); display: block; margin-top: 4px; }

/* ── BUTTONS ── */
.btn-p { font-family: var(--font-b); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em; color: var(--linen); background: var(--ink); padding: 14px 34px; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 180ms, transform 180ms; }
.btn-p:hover { background: var(--amber); color: var(--ink); transform: translateY(-2px); }
.btn-s { font-family: var(--font-b); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); background: transparent; padding: 13px 34px; border-radius: 6px; border: 1px solid var(--border); cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 180ms; }
.btn-s:hover { border-color: var(--ink); }

/* ── ABOUT PILLARS ── */
.pillars { background: var(--parchment); padding: 60px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pillars-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillar { padding: 0 0 0 24px; border-left: 2px solid var(--border); }
.pillar-num { font-family: var(--font-d); font-size: 2.2rem; font-weight: 700; color: var(--amber); line-height: 1; display: block; margin-bottom: 7px; }
.pillar-lbl { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); display: block; margin-bottom: 8px; }
.pillar-desc { font-size: 0.875rem; font-weight: 300; color: var(--ink-mid); line-height: 1.65; }

/* ── SHARED ── */
.sec { padding: 96px 48px; }
.eyebrow { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.eyebrow::before { content: ''; display: block; width: 18px; height: 1px; background: var(--amber); }
.sec-h2 { font-family: var(--font-d); font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 24px; letter-spacing: -0.01em; }

/* ── STORY ── */
.story-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.story-text p { font-weight: 300; color: var(--ash); margin-bottom: 18px; max-width: 58ch; line-height: 1.75; }
.story-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 180px; gap: 8px; }
.si-main { grid-row: span 2; overflow: hidden; border-radius: 6px; }
.si-sm { overflow: hidden; border-radius: 6px; }
.si-main img, .si-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease-out; }
.si-main:hover img, .si-sm:hover img { transform: scale(1.04); }

/* ── SEAR MENU ── */
.menu-sec { background: var(--parchment); border-top: 1px solid var(--border); }
.menu-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.menu-tabs { display: flex; gap: 0; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn { font-family: var(--font-b); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; padding: 10px 18px; background: transparent; color: var(--ash); border: 1px solid var(--border); border-right: none; cursor: pointer; border-radius: 0; transition: background 170ms, color 170ms; -webkit-appearance: none; }
.tab-btn:first-child { border-radius: 6px 0 0 6px; }
.tab-btn:last-child { border-right: 1px solid var(--border); border-radius: 0 6px 6px 0; }
.tab-btn.active { background: var(--ink); color: var(--linen); border-color: var(--ink); z-index: 1; position: relative; }
.tab-btn:hover:not(.active) { color: var(--ink); }
.m-con-h2 { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.m-con-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); margin-bottom: 28px; }
.m-cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mid); padding-bottom: 8px; border-bottom: 1px solid var(--border); margin-top: 24px; }
.m-row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid oklch(83% 0.012 72); gap: 14px; }
.m-name { font-size: 0.94rem; font-weight: 500; color: var(--ink); }
.m-desc { font-size: 0.78rem; font-weight: 300; color: var(--ash); margin-top: 2px; max-width: 46ch; }
.m-price { font-size: 0.9rem; font-weight: 600; color: var(--red); white-space: nowrap; }
.menu-photos { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 84px; }
.menu-photos img { width: 100%; border-radius: 6px; object-fit: cover; display: block; }

/* ── DRINKS ── */
.drinks-sec { background: var(--linen); border-top: 1px solid var(--border); }
.drinks-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.d-col-h { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mid); padding-bottom: 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; margin-bottom: 0; }
.d-col-h::before { content: ''; display: block; width: 14px; height: 1px; background: var(--amber); }
.d-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid oklch(85% 0.010 72); gap: 12px; }
.d-name { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.d-desc { font-size: 0.76rem; font-weight: 300; color: var(--ash); margin-top: 2px; }
.d-price { font-size: 0.88rem; font-weight: 600; color: var(--ash); white-space: nowrap; }

/* ── PHO LOGO ── */
.pho-logo { height: 56px; width: auto; display: block; margin-bottom: 18px; }

/* ── PHO ── */
.pho-sec { background: var(--parchment); border-top: 1px solid var(--border); }
.pho-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: center; }
.pho-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; }
.pi-main { grid-column: span 2; overflow: hidden; border-radius: 6px; }
.pi-sm { overflow: hidden; border-radius: 6px; }
.pi-main img, .pi-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease-out; }
.pi-main:hover img, .pi-sm:hover img { transform: scale(1.03); }
.pho-h2 { font-family: var(--font-d); font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 18px; letter-spacing: -0.01em; }
.pho-text p { font-weight: 300; color: var(--ash); margin-bottom: 16px; max-width: 56ch; line-height: 1.75; }
.pho-list { border-top: 1px solid var(--border); margin-top: 24px; }
.pho-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid oklch(83% 0.012 72); }
.pho-rn { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.pho-rp { font-size: 0.88rem; font-weight: 600; color: var(--ash); }

/* ── GALLERY ── */
.gallery-sec { background: var(--linen); border-top: 1px solid var(--border); }
.gallery-hd { max-width: 1200px; margin: 0 auto 36px; }
.g-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 220px; gap: 8px; }
.g-item { overflow: hidden; border-radius: 6px; }
.g-tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease-out; }
.g-item:hover img { transform: scale(1.04); }

/* ── PRIVATE ── */
.private-sec { position: relative; padding: 120px 48px; background: url('../assets/environment/IMG_9618.jpg') center/cover; }
.private-sec::before { content: ''; position: absolute; inset: 0; background: oklch(87% 0.018 74 / 0.88); }
.priv-inner { position: relative; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.priv-text h2 { font-family: var(--font-d); font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 18px; letter-spacing: -0.01em; }
.priv-text p { font-weight: 300; color: var(--ash); max-width: 54ch; margin-bottom: 16px; line-height: 1.75; }
.priv-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-feat { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-mid); padding: 12px 16px; background: oklch(92% 0.010 72 / 0.7); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; gap: 8px; }
.p-feat::before { content: '◆'; font-size: 0.45rem; color: var(--amber); }

/* ── PRESS ── */
.press-sec { background: var(--ink); padding: 96px 48px; }
.press-inner { max-width: 1200px; margin: 0 auto; }
.press-inner .eyebrow { color: var(--amber); }
.press-inner .sec-h2 { color: var(--parchment); }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 36px; }
.press-card { background: oklch(26% 0.010 55); padding: 40px 36px; border-radius: 0; }
.press-q { font-family: var(--font-d); font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 600; font-style: italic; line-height: 1.55; color: var(--parchment); margin-bottom: 20px; }
.press-q::before { content: '"'; color: var(--amber); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.press-src { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); }

/* ── LOCATION ── */
.loc-sec { background: var(--parchment); padding: 96px 48px; border-top: 1px solid var(--border); }
.loc-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.loc-text h2 { font-family: var(--font-d); font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; color: var(--ink); margin-bottom: 32px; letter-spacing: -0.01em; }
.loc-block { margin-bottom: 24px; }
.loc-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.loc-lbl::before { content: ''; display: block; width: 14px; height: 1px; background: var(--amber); }
.loc-val { font-size: 0.93rem; font-weight: 300; color: var(--ink-mid); line-height: 1.7; }
.loc-map { aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; border: 1px solid var(--border); }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── FOOTER ── */
footer { background: oklch(16% 0.010 55); color: var(--parchment); padding: 64px 48px 40px; }
.f-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid oklch(28% 0.010 55); margin-bottom: 28px; }
.f-logos { display: flex; gap: 16px; align-items: center; margin-bottom: 10px; }
.f-logo { height: 36px; width: auto; display: block; }
.f-logo-brightness { height: 36px; width: auto; display: block; filter: brightness(0) invert(1) opacity(0.7); }
.f-logo:hover { opacity: 1; filter: brightness(0) invert(1); }
.f-brand-h { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; color: var(--parchment); margin-bottom: 5px; }
.f-brand-s { font-size: 0.78rem; font-weight: 300; color: oklch(48% 0.008 65); margin-bottom: 3px; }
.f-est { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 6px 12px; background: oklch(24% 0.010 55); border: 1px solid oklch(32% 0.010 55); border-radius: 4px; }
.f-est-y { font-family: var(--font-d); font-size: 0.92rem; font-weight: 700; color: var(--amber); }
.f-est-l { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(44% 0.008 65); }
.f-ct { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(48% 0.008 65); margin-bottom: 16px; }
.f-col ul { list-style: none; }
.f-col li { font-size: 0.84rem; font-weight: 300; color: oklch(44% 0.008 65); margin-bottom: 9px; line-height: 1.5; }
.f-col a { color: oklch(44% 0.008 65); text-decoration: none; transition: color 180ms; }
.f-col a:hover { color: var(--amber); }
.f-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.f-copy { font-size: 0.72rem; font-weight: 300; color: oklch(34% 0.008 58); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }
  .sec { padding: 64px 24px; }
  .pillars { padding: 52px 24px; }
  .pillars-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 48px 24px 40px; }
  .hero-img { min-height: 55vw; }
  .story-grid, .menu-grid, .pho-inner, .loc-inner { grid-template-columns: 1fr; gap: 40px; }
  .menu-photos { display: none; }
  .drinks-grid { grid-template-columns: 1fr; gap: 32px; }
  .g-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall { grid-row: span 1; }
  .g-grid .g-item { height: 200px; }
  .press-grid { grid-template-columns: 1fr; gap: 2px; }
  .priv-inner { grid-template-columns: 1fr; gap: 36px; }
  .f-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .f-bottom { flex-direction: column; gap: 10px; }
  .priv-feats { grid-template-columns: 1fr; }
  .private-sec { background-attachment: scroll; }
  .loc-map { aspect-ratio: 3/2; }
}
