@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #090a0b;
  --panel: #141518;
  --text: #f7f2e8;
  --muted: #b7b2a8;
  --gold: #d3a84e;
  --gold-bright: #f0cb77;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 12% 0%, rgba(211,168,78,.1), transparent 34rem), var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { color: var(--gold-bright); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.display { margin: 10px 0 18px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.6rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.04em; }
.display-sm { font-size: clamp(2.2rem, 5vw, 4.4rem); }
.lede { max-width: 760px; color: #d3cec4; font-size: clamp(1rem, 2vw, 1.16rem); }
.muted { color: var(--muted); }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(8,8,9,.8); backdrop-filter: blur(18px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(240,203,119,.45); border-radius: 14px; background: linear-gradient(145deg, rgba(211,168,78,.2), rgba(211,168,78,.04)); color: var(--gold-bright); font-weight: 900; }
.brand-copy { line-height: 1.15; }
.brand-copy strong { display: block; font-size: .92rem; letter-spacing: .04em; }
.brand-copy span { display: block; margin-top: 4px; color: #9d998f; font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 5px; }
.nav a { padding: 10px 12px; border-radius: 999px; color: #c8c5bd; font-size: .85rem; font-weight: 700; transition: .2s ease; }
.nav a:hover, .nav a.active { background: rgba(255,255,255,.07); color: #fff; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: #fff; font-size: 1.2rem; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border-radius: 999px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #17120a; box-shadow: 0 12px 34px rgba(211,168,78,.18); }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); background: rgba(9,9,10,.35); color: #fff; }
.btn-dark { border: 1px solid var(--line); background: #111214; color: #fff; }
.header-cta { border: 1px solid rgba(240,203,119,.5); color: var(--gold-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero { position: relative; min-height: 78vh; display: grid; align-items: end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.84) contrast(1.04); transform: scale(1.02); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,8,.96), rgba(7,7,8,.68) 45%, rgba(7,7,8,.28) 72%, rgba(7,7,8,.62)), linear-gradient(0deg, rgba(7,7,8,.92), transparent 48%); }
.hero-content { position: relative; z-index: 1; max-width: 830px; padding: 110px 0 72px; }
.hero .display span { color: var(--gold-bright); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-badges span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(0,0,0,.22); color: #ded9ce; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.section-line { border-top: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: 1.08fr .92fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.image-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #111; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 540px; object-fit: cover; }
.image-card .caption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(8,8,9,.72); color: #e9e5dc; font-size: .82rem; backdrop-filter: blur(10px); }
.service-card { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg,#18191c,#111214); transition: transform .25s ease,border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(240,203,119,.35); }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(211,168,78,.22); border-radius: 14px; background: rgba(211,168,78,.1); color: var(--gold-bright); }
.service-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.service-card p { margin: 0; color: #aaa69d; font-size: .9rem; }
.quote-strip { padding: 54px 0; border-top: 1px solid rgba(211,168,78,.15); border-bottom: 1px solid rgba(211,168,78,.15); background: linear-gradient(120deg,rgba(211,168,78,.13),rgba(255,255,255,.02)); }
.quote-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.quote-grid h2 { margin: 0 0 8px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.05; }
.quote-grid p { margin: 0; color: #c8c3b9; }
.page-hero { position: relative; overflow: hidden; padding: 110px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ''; position: absolute; top: -220px; right: -130px; width: 460px; height: 460px; border-radius: 50%; background: rgba(211,168,78,.09); filter: blur(80px); }
.page-hero .container { position: relative; }
.gallery { columns: 3 300px; column-gap: 18px; }
.gallery figure { position: relative; margin: 0 0 18px; break-inside: avoid; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #111; cursor: zoom-in; }
.gallery img { width: 100%; height: auto; transition: transform .5s ease, filter .3s ease; }
.gallery figure:hover img { transform: scale(1.035); filter: brightness(1.07); }
.gallery figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(0,0,0,.62); font-size: .76rem; opacity: 0; transform: translateY(6px); transition: .25s ease; backdrop-filter: blur(10px); }
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(0,0,0,.92); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 96vw); max-height: 86vh; border-radius: 16px; }
.lightbox button { position: fixed; top: 20px; right: 20px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #191a1d; color: #fff; font-size: 1.2rem; cursor: pointer; }
.map-wrap { min-height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #111; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 470px; display: block; border: 0; }
.area-card, .contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg,#191a1d,#111214); }
.area-list { display: grid; gap: 12px; margin-top: 24px; }
.area-list div { display: flex; gap: 11px; color: #c8c4bb; }
.area-list span { color: var(--gold-bright); }
.review-empty { padding: clamp(30px,7vw,70px); border: 1px dashed rgba(240,203,119,.35); border-radius: 24px; background: rgba(211,168,78,.05); text-align: center; }
.review-empty .stars { margin-bottom: 18px; color: var(--gold-bright); font-size: 1.6rem; letter-spacing: .2em; }
.review-empty h2 { margin: 0 0 14px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,5vw,3.5rem); }
.review-empty p { max-width: 720px; margin: 0 auto; color: #bbb7ae; }
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 36px; }
.contact-card { min-height: 210px; }
.contact-card .kicker { color: var(--gold-bright); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card h3 { margin: 14px 0 10px; font-size: clamp(1.35rem,3vw,1.9rem); overflow-wrap: anywhere; }
.contact-card p { margin: 0 0 20px; color: #aaa69d; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.social-btn { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: #121316; color: #dedad1; }
.preview-note { margin-top: 18px; color: #7f7b72; font-size: .76rem; }
.site-footer { padding: 42px 0 28px; border-top: 1px solid var(--line); background: #080809; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
.footer-grid h4 { margin: 0 0 12px; color: #8d8980; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid p, .footer-grid a { color: #b8b4ab; font-size: .88rem; }
.footer-links { display: grid; gap: 8px; }
.copyright { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); color: #6f6c65; font-size: .75rem; }
.floating-call { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: none; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg,var(--gold-bright),var(--gold)); color: #17120a; font-size: 1.3rem; box-shadow: 0 14px 35px rgba(0,0,0,.36); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .nav { position: fixed; top: 78px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 3px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(15,16,18,.98); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .menu-btn { display: inline-grid; place-items: center; }
  .header-cta { display: none; }
  .hero { min-height: 74vh; }
  .grid-2, .quote-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .image-card img { height: 430px; }
  .contact-grid { grid-template-columns: 1fr; }
  .floating-call { display: inline-flex; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: .82rem; }
  .hero-content { padding-top: 92px; }
  .section { padding: 70px 0; }
  .section-tight { padding: 52px 0; }
  .page-hero { padding: 82px 0 50px; }
  .hero-actions .btn, .quote-grid .btn { width: 100%; }
  .image-card img { height: 350px; }
  .gallery { columns: 1; }
  .map-wrap, .map-wrap iframe { min-height: 390px; height: 390px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
