:root {
  --ink: #171916;
  --ink-soft: #252822;
  --paper: #f6f3ed;
  --paper-deep: #ebe6dc;
  --white: #fff;
  --gold: #d8b675;
  --gold-light: #ead4a7;
  --muted: #6e716a;
  --line: rgba(23, 25, 22, .14);
  --line-light: rgba(255,255,255,.16);
  --radius: 24px;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(12, 14, 12, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 140px 0; }
.section-dark { background: var(--ink); color: var(--white); padding: 140px 0; }
.section-soft { padding: 140px 0; background: var(--paper-deep); }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 1000; background: #fff; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 20px; }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: 84px;
  display: flex;
  align-items: center;
  color: #fff;
  transition: background .35s ease, box-shadow .35s ease, color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(246,243,237,.92);
  color: var(--ink);
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: grid; gap: 1px; line-height: 1; }
.brand-text strong { font-size: 15px; letter-spacing: .13em; }
.brand-text small { font-size: 8px; letter-spacing: .19em; opacity: .65; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: currentColor; transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 12px 20px !important; }
.scrolled .nav-cta { border-color: var(--line); background: var(--ink); color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #10120f 0%, #1e211c 62%, #262a22 100%);
  padding: 150px 0 100px;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .065; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E"); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: 4%; top: -140px; background: radial-gradient(circle, rgba(216,182,117,.18), transparent 68%); }
.hero-glow-two { width: 480px; height: 480px; left: -220px; bottom: -190px; background: radial-gradient(circle, rgba(216,182,117,.08), transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(50px, 8vw, 115px); }
.hero-copy { padding-top: 18px; }
.eyebrow, .section-label { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; color: var(--muted); }
.eyebrow { color: rgba(255,255,255,.65); margin-bottom: 30px; }
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
.hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(53px, 5.7vw, 86px); line-height: .98; font-weight: 400; letter-spacing: -.045em; margin: 0 0 30px; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 610px; margin: 0; font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.69); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 40px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 25px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .025em; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: var(--ink); background: var(--gold); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.24); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.button-ghost span { font-size: 18px; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 550px; border-top: 1px solid var(--line-light); margin-top: 58px; padding-top: 26px; }
.hero-points div { display: flex; gap: 12px; align-items: flex-start; }
.hero-points strong { color: var(--gold); font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.hero-points span { color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .07em; }
.hero-visual { position: relative; min-height: 640px; }
.hero-image-wrap { position: absolute; width: min(100%, 510px); height: 650px; right: 0; top: 0; overflow: hidden; border-radius: 240px 240px 30px 30px; box-shadow: 0 40px 100px rgba(0,0,0,.34); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 49% center; transform: scale(1.02); }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,10,.5), transparent 52%); }
.hero-badge { position: absolute; left: 25px; bottom: 26px; right: 25px; display: flex; align-items: center; gap: 12px; padding: 15px 17px; border-radius: 16px; background: rgba(18,20,17,.67); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(216,182,117,.13); }
.hero-badge div { display: grid; gap: 2px; }
.hero-badge small { color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.hero-badge strong { font-size: 13px; }
.hero-card { position: absolute; left: -48px; bottom: 38px; width: 245px; padding: 23px 24px; border-radius: 20px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.hero-card span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 9px; }
.hero-card strong { display: block; max-width: 165px; font-family: Georgia, serif; font-size: 21px; line-height: 1.16; font-weight: 400; }
.hero-card svg { position: absolute; right: 19px; bottom: 19px; width: 30px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.scroll-hint { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; font-size: 9px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .2em; }
.scroll-hint span { width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.35; transform:scaleY(.65); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

/* Generic headings */
.section-label { margin-bottom: 24px; }
.section-label.light { color: rgba(255,255,255,.46); }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 70px); line-height: 1.02; letter-spacing: -.04em; font-weight: 400; margin: 0; }
h2 span { color: #979b92; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.section-heading > p { max-width: 480px; color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0 0 4px; }

/* Intro */
.intro-grid { display: grid; grid-template-columns: .5fr 1.55fr .8fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.intro-main h2 { margin-bottom: 38px; }
.intro-main > p { font-size: 17px; line-height: 1.85; color: #5d615a; max-width: 720px; }
.intro-main > p + p { margin-top: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; margin-top: 26px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.intro-aside { border-left: 1px solid var(--line); padding-left: 34px; margin-top: 95px; }
.quote { font-family: Georgia, serif; font-size: 22px; line-height: 1.45; margin: 0; }
.signature { display: flex; align-items: center; gap: 10px; color: var(--muted); text-transform: uppercase; font-size: 10px; letter-spacing: .16em; margin-top: 25px; }
.signature span { width: 26px; height: 1px; background: var(--gold); }

/* Wide image */
.wide-image { position: relative; width: min(calc(100% - 48px), 1460px); height: min(68vw, 720px); min-height: 470px; margin: 0 auto; border-radius: 28px; overflow: hidden; }
.wide-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.01); }
.wide-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,17,14,.72), transparent 55%); }
.wide-image-caption { position: absolute; z-index: 1; left: clamp(28px, 5vw, 72px); bottom: clamp(28px, 5vw, 66px); color: #fff; display: grid; gap: 8px; }
.wide-image-caption span { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-light); }
.wide-image-caption strong { max-width: 650px; font-family: Georgia, serif; font-size: clamp(30px, 4vw, 55px); line-height: 1.08; font-weight: 400; }

/* Services */
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 80px 1fr 90px; gap: 24px; align-items: center; min-height: 176px; border-bottom: 1px solid var(--line); transition: padding .3s ease, background .3s ease; }
.service-item:hover { padding-inline: 18px; background: rgba(255,255,255,.36); }
.service-number { color: var(--gold); font-family: Georgia, serif; font-size: 18px; }
.service-title { display: grid; grid-template-columns: minmax(280px, .7fr) 1fr; align-items: center; gap: 60px; }
.service-title h3 { font-family: Georgia, serif; font-size: clamp(25px, 2.3vw, 34px); font-weight: 400; margin: 0; }
.service-title p { color: var(--muted); line-height: 1.7; font-size: 14px; max-width: 510px; margin: 0; }
.service-icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); }
.service-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Investment */
.investment-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.investment-top h2 span { color: var(--gold-light); }
.investment-top > p { color: rgba(255,255,255,.55); line-height: 1.8; margin: 0; max-width: 470px; }
.investment-gallery { display: grid; grid-template-columns: 1.55fr .75fr; grid-template-rows: 290px 290px; gap: 18px; }
.investment-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 20px; }
.investment-main { grid-row: 1 / 3; }
.investment-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.investment-gallery figure:hover img { transform: scale(1.035); }
.investment-gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,10,.68), transparent 58%); }
.investment-gallery figcaption { position: absolute; z-index: 1; left: 26px; right: 26px; bottom: 24px; display: grid; gap: 8px; }
.investment-gallery figcaption span { font-size: 10px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .17em; }
.investment-gallery figcaption strong { font-family: Georgia, serif; font-size: clamp(23px, 2.5vw, 35px); font-weight: 400; }
.investment-side figcaption { bottom: 18px; }
.investment-side figcaption span { color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line-light); }
.feature-grid > div { padding: 33px 28px 0 0; border-right: 1px solid var(--line-light); min-height: 160px; }
.feature-grid > div:not(:first-child) { padding-left: 28px; }
.feature-grid > div:last-child { border-right: 0; }
.feature-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 15px; }
.feature-grid strong { display: block; font-family: Georgia, serif; font-size: 21px; font-weight: 400; margin: 16px 0 8px; }
.feature-grid p { color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.6; margin: 0; }

/* Plans */
.plan-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.plan-tab { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 12px 24px; cursor: pointer; font-size: 12px; font-weight: 700; transition: .25s ease; }
.plan-tab.active, .plan-tab:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.plan-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 110px); align-items: center; min-height: 540px; }
.plan-image { padding: 40px; min-height: 500px; display: grid; place-items: center; background: #fff; border-radius: 24px; box-shadow: 0 15px 45px rgba(30,30,25,.07); }
.plan-image img { max-height: 450px; cursor: zoom-in; mix-blend-mode: multiply; }
.plan-description > span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 700; }
.plan-description h3 { font-family: Georgia, serif; font-size: clamp(34px, 4vw, 53px); line-height: 1.08; font-weight: 400; margin: 18px 0 24px; }
.plan-description p { color: var(--muted); font-size: 16px; line-height: 1.8; max-width: 490px; }
.outline-button { display: inline-flex; border: 1px solid var(--ink); background: transparent; border-radius: 999px; padding: 15px 22px; margin-top: 16px; cursor: pointer; font-size: 12px; font-weight: 700; transition: .25s ease; }
.outline-button:hover { color: #fff; background: var(--ink); }

/* Process */
.process-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(60px, 10vw, 150px); }
.process-intro h2 span { color: #8a8e85; }
.process-intro p { color: var(--muted); line-height: 1.8; max-width: 470px; margin-top: 30px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--gold); font-family: Georgia, serif; font-size: 18px; }
.process-list strong { font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.process-list p { color: var(--muted); line-height: 1.65; font-size: 14px; margin: 8px 0 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: #ddd; cursor: zoom-in; text-align: left; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,14,12,.6), transparent 55%); }
.gallery-item span { position: absolute; z-index: 1; left: 20px; bottom: 18px; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.gallery-item:hover img { transform: scale(1.045); }

/* Contact & Footer */
.contact { border-bottom: 1px solid var(--line-light); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.contact-copy h2 span { color: var(--gold-light); }
.contact-copy > p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.8; max-width: 510px; margin: 32px 0; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.contact-details { border-top: 1px solid var(--line-light); }
.contact-row { display: grid; grid-template-columns: 120px 1fr 28px; align-items: center; gap: 20px; min-height: 104px; border-bottom: 1px solid var(--line-light); transition: padding .25s ease, background .25s ease; }
.contact-row:hover { padding-inline: 14px; background: rgba(255,255,255,.035); }
.contact-row > span { color: rgba(255,255,255,.38); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.contact-row strong { font-family: Georgia, serif; font-size: clamp(18px, 2vw, 27px); line-height: 1.35; font-weight: 400; }
.contact-row b { color: var(--gold); font-size: 20px; font-weight: 400; }
.site-footer { background: var(--ink); color: #fff; padding: 48px 0 28px; }
.footer-inner > p { color: rgba(255,255,255,.37); font-size: 12px; margin: 28px 0 40px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 25px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.38); font-size: 11px; }
.footer-bottom a { color: rgba(255,255,255,.7); }

/* Lightbox */
.lightbox { position: fixed; z-index: 1000; inset: 0; display: none; align-items: center; justify-content: center; padding: 50px; background: rgba(8,9,8,.92); backdrop-filter: blur(10px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 90vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.lightbox-close { position: fixed; right: 24px; top: 18px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; }

/* Scroll animation */
.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
.js-enabled .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 50px; }
  .hero-visual { min-height: 570px; }
  .hero-image-wrap { height: 570px; }
  .hero-card { left: -28px; }
  .intro-grid { grid-template-columns: 1fr 2fr; }
  .intro-aside { grid-column: 2; margin-top: 10px; }
  .service-title { grid-template-columns: 1fr 1fr; gap: 35px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid > div:nth-child(2) { border-right: 0; }
  .feature-grid > div:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .feature-grid > div:nth-child(3) { padding-left: 0; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section, .section-dark, .section-soft { padding: 100px 0; }
  .site-header { height: 72px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; left: 16px; right: 16px; top: 82px; display: grid; gap: 2px; padding: 18px; background: rgba(246,243,237,.98); color: var(--ink); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 12px; }
  .nav-cta { text-align: center; background: var(--ink); color: #fff; border-color: var(--ink); margin-top: 6px; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero-lead { max-width: 680px; }
  .hero-visual { min-height: 640px; width: min(100%, 530px); justify-self: center; }
  .hero-image-wrap { height: 620px; }
  .scroll-hint { display: none; }
  .section-heading, .investment-top { grid-template-columns: 1fr; gap: 30px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-main, .intro-aside { grid-column: auto; }
  .intro-aside { margin-top: 20px; }
  .wide-image { width: calc(100% - 32px); }
  .service-item { grid-template-columns: 55px 1fr 65px; }
  .service-title { grid-template-columns: 1fr; gap: 12px; }
  .service-icon { width: 58px; height: 58px; }
  .investment-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 240px; }
  .investment-main { grid-column: 1 / 3; grid-row: 1; }
  .plan-panel { grid-template-columns: 1fr; min-height: 0; }
  .process-grid, .contact-grid { grid-template-columns: 1fr; gap: 65px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section, .section-dark, .section-soft { padding: 78px 0; }
  .brand img { width: 41px; height: 41px; }
  .brand-text strong { font-size: 13px; }
  .brand-text small { font-size: 7px; }
  .hero { padding: 112px 0 70px; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-points { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  .hero-points div { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 12px; }
  .hero-visual { min-height: 500px; width: 100%; }
  .hero-image-wrap { width: 92%; height: 500px; border-radius: 180px 180px 24px 24px; }
  .hero-card { left: 0; bottom: 10px; width: 215px; padding: 18px; }
  .hero-card strong { font-size: 18px; }
  h2 { font-size: clamp(38px, 12vw, 52px); }
  .section-heading { margin-bottom: 46px; }
  .intro-main > p { font-size: 15px; }
  .wide-image { width: calc(100% - 24px); height: 560px; min-height: 0; border-radius: 20px; }
  .wide-image img { object-position: 52% center; }
  .service-item { grid-template-columns: 44px 1fr; gap: 12px; padding: 25px 0; }
  .service-icon { display: none; }
  .service-title h3 { font-size: 27px; }
  .investment-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: 440px 230px 230px; }
  .investment-main { grid-column: 1; grid-row: 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid > div, .feature-grid > div:not(:first-child), .feature-grid > div:nth-child(3) { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line-light); min-height: 0; }
  .feature-grid > div:first-child { border-top: 0; }
  .plan-image { padding: 18px; min-height: 360px; }
  .process-list li { grid-template-columns: 50px 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .contact-row { grid-template-columns: 1fr 26px; gap: 8px; padding: 22px 0; }
  .contact-row > span { grid-column: 1; }
  .contact-row strong { grid-column: 1; }
  .contact-row b { grid-column: 2; grid-row: 1 / 3; }
  .footer-bottom { flex-direction: column; }
  .lightbox { padding: 20px; }
}

/* =========================================================
   Mobile-first refinement · 2026
   Zachowuje bazową kolorystykę i desktopowy układ strony.
   ========================================================= */

:where(h1, h2, h3) {
  text-wrap: balance;
}

:where(p, .contact-row strong) {
  text-wrap: pretty;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
.button,
.main-nav a,
.contact-row,
.gallery-item {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.nav-mobile-meta,
.mobile-contact-bar {
  display: none;
}

@media (hover: none) {
  .button:hover,
  .service-item:hover,
  .contact-row:hover {
    transform: none;
    padding-inline: initial;
  }

  .gallery-item:hover img,
  .investment-gallery figure:hover img {
    transform: none;
  }
}

@media (max-width: 820px) {
  :root {
    --mobile-edge: 12px;
    --mobile-radius: 22px;
  }

  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section,
  .section-dark,
  .section-soft {
    padding: 92px 0;
  }

  /* Floating glass header */
  .site-header,
  .site-header.scrolled {
    inset: 10px 10px auto;
    width: auto;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: rgba(18, 20, 17, .62);
    color: #fff;
    box-shadow: 0 12px 38px rgba(0, 0, 0, .13);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
  }

  .site-header.scrolled {
    border-color: rgba(23, 25, 22, .08);
    background: rgba(246, 243, 237, .90);
    color: var(--ink);
  }

  .header-inner {
    width: 100%;
    padding-inline: 10px 8px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 12px;
    letter-spacing: .12em;
  }

  .brand-text small {
    font-size: 6.5px;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
  }

  .scrolled .menu-toggle {
    border-color: var(--line);
    background: rgba(255, 255, 255, .55);
  }

  .menu-toggle span {
    width: 19px;
    margin: 3px 0;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* Full-height navigation sheet */
  .main-nav {
    position: fixed;
    inset: 84px 10px 10px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: calc(100dvh - 94px);
    padding: 24px 22px calc(22px + env(safe-area-inset-bottom));
    border: 1px solid rgba(23, 25, 22, .08);
    border-radius: 24px;
    background: rgba(246, 243, 237, .98);
    color: var(--ink);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.985);
    transform-origin: top right;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .main-nav > a:not(.nav-cta) {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 8px 2px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 8vw, 38px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-cta {
    order: 2;
    min-height: 56px;
    margin-top: auto;
    padding: 0 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
  }

  .nav-mobile-meta {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0 18px;
  }

  .nav-mobile-meta a {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
  }

  .nav-mobile-meta span {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
  }

  .nav-mobile-meta strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Hero: clearer mobile hierarchy */
  .hero {
    min-height: auto;
    padding: 112px 0 68px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(48px, 12.4vw, 72px);
    line-height: .96;
  }

  .hero-lead {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-actions .button {
    min-height: 56px;
  }

  .hero-points {
    display: flex;
    gap: 10px;
    max-width: none;
    margin: 38px -16px 0 0;
    padding: 18px 16px 4px 0;
    overflow-x: auto;
    border-top-color: rgba(255, 255, 255, .12);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-points::-webkit-scrollbar,
  .service-list::-webkit-scrollbar,
  .investment-gallery::-webkit-scrollbar,
  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-points div {
    flex: 0 0 min(67vw, 245px);
    min-height: 82px;
    padding: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    background: rgba(255, 255, 255, .045);
    scroll-snap-align: start;
  }

  .hero-points strong {
    font-size: 20px;
  }

  .hero-points span {
    font-size: 10px;
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-image-wrap {
    inset: 0 0 auto auto;
    width: 92%;
    height: 100%;
    border-radius: min(38vw, 180px) min(38vw, 180px) 24px 24px;
  }

  .hero-card {
    left: 0;
    bottom: 18px;
    width: min(62vw, 250px);
    border-radius: 18px;
  }

  .hero-badge {
    right: 14px;
    bottom: 16px;
    max-width: 49%;
    padding: 11px 13px;
  }

  .scroll-hint {
    display: none;
  }

  /* Editorial section rhythm */
  h2 {
    font-size: clamp(42px, 10vw, 62px);
  }

  .section-heading,
  .investment-top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 48px;
  }

  .section-heading > p,
  .investment-top > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-main,
  .intro-aside {
    grid-column: auto;
  }

  .intro-main h2 {
    margin-bottom: 28px;
  }

  .intro-main > p {
    font-size: 16px;
    line-height: 1.76;
  }

  .intro-aside {
    margin: 4px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .wide-image {
    width: calc(100% - 24px);
    height: clamp(430px, 105vw, 620px);
    min-height: 0;
    border-radius: var(--mobile-radius);
  }

  .wide-image-caption {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .wide-image-caption strong {
    font-size: clamp(31px, 8.5vw, 48px);
  }

  /* Swipeable service cards */
  .service-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 78vw);
    gap: 12px;
    margin-right: -16px;
    padding: 0 16px 8px 0;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 340px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .42);
    scroll-snap-align: start;
  }

  .service-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .service-title {
    display: block;
    margin-top: 28px;
  }

  .service-title h3 {
    font-size: 31px;
    line-height: 1.05;
  }

  .service-title p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.68;
  }

  .service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-top: auto;
  }

  /* Dark modular section and horizontal media cards */
  .investment,
  .contact {
    width: calc(100% - 16px);
    margin-inline: auto;
    border-radius: 28px;
    overflow: hidden;
  }

  .investment-gallery {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .investment-gallery figure,
  .investment-main,
  .investment-side {
    flex: 0 0 min(84vw, 540px);
    height: 440px;
    border-radius: 20px;
    scroll-snap-align: center;
  }

  .investment-gallery figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .feature-grid {
    display: flex;
    gap: 10px;
    margin: 48px -16px 0 0;
    padding: 0 16px 4px 0;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-grid > div,
  .feature-grid > div:not(:first-child),
  .feature-grid > div:nth-child(3) {
    flex: 0 0 min(68vw, 285px);
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
    scroll-snap-align: start;
  }

  /* Plans */
  .plan-tabs {
    width: 100%;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .42);
  }

  .plan-tab {
    flex: 1;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
  }

  .plan-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }

  .plan-image {
    min-height: 0;
    padding: 22px;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
  }

  .plan-description h3 {
    font-size: clamp(35px, 9vw, 50px);
  }

  /* Process as readable cards */
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .process-list {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .34);
  }

  .process-list strong {
    font-size: 24px;
  }

  /* Bento gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
    border-radius: 16px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  /* Contact */
  .contact-copy > p {
    margin: 26px 0 30px;
    font-size: 15px;
  }

  .contact-copy .button {
    width: 100%;
  }

  .contact-details {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .contact-row {
    grid-template-columns: 1fr 26px;
    min-height: 0;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--line-light);
    border-radius: 17px;
    background: rgba(255, 255, 255, .035);
  }

  .contact-row > span {
    grid-column: 1;
  }

  .contact-row strong {
    grid-column: 1;
    font-size: clamp(19px, 5.2vw, 25px);
    overflow-wrap: anywhere;
  }

  .contact-row b {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .footer-inner > p {
    max-width: 340px;
    line-height: 1.6;
  }

  /* Persistent conversion dock */
  .mobile-contact-bar {
    position: fixed;
    z-index: 89;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 7px;
    min-height: 64px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(23, 25, 22, .92);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    min-height: 50px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-contact-call {
    background: var(--gold);
    color: var(--ink);
  }

  .mobile-contact-call svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-contact-mail {
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
  }

  .mobile-contact-mail span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-contact-mail b {
    color: var(--gold);
    font-size: 17px;
    font-weight: 400;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 82dvh;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section,
  .section-dark,
  .section-soft {
    padding: 76px 0;
  }

  .hero {
    padding: 106px 0 62px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.2vw, 60px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 15px;
    font-size: 11px;
  }

  .hero-visual {
    aspect-ratio: 4 / 5.25;
  }

  .hero-image-wrap {
    width: 94%;
    height: 100%;
  }

  .hero-card {
    bottom: 12px;
    width: min(66vw, 230px);
    padding: 17px;
  }

  .hero-card strong {
    font-size: 17px;
  }

  .hero-badge {
    display: none;
  }

  .wide-image {
    height: 480px;
  }

  .service-list {
    grid-auto-columns: minmax(278px, 84vw);
    margin-right: -12px;
    padding-right: 12px;
  }

  .investment-gallery,
  .feature-grid {
    margin-right: -12px;
    padding-right: 12px;
  }

  .investment-gallery figure,
  .investment-main,
  .investment-side {
    flex-basis: 88vw;
    height: 405px;
  }

  .feature-grid > div,
  .feature-grid > div:not(:first-child),
  .feature-grid > div:nth-child(3) {
    flex-basis: 76vw;
  }

  .plan-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 155px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-item span {
    left: 14px;
    bottom: 13px;
    font-size: 9px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand-text small {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    font-size: 12px;
  }

  .nav-mobile-meta {
    grid-template-columns: 1fr;
  }

  .mobile-contact-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  body.menu-open .mobile-contact-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
  }

  .mobile-contact-bar {
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
}
