:root {
  --ink: #10263b;
  --ink-2: #183b52;
  --gold: #c79a52;
  --gold-dark: #9b7132;
  --cream: #f7f3ea;
  --mist: #eef3f5;
  --white: #fff;
  --text: #263843;
  --muted: #667985;
  --line: #d8e1e5;
  --success: #24735a;
  --shadow: 0 20px 60px rgba(16, 38, 59, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 999; }
.skip-link:focus { left: 10px; background: var(--white); padding: .7rem 1rem; border-radius: 8px; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.eyebrow { color: var(--gold-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; line-height: 1.12; margin: 0 0 .7em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.03em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1.2rem; }
.lead { color: #dce7ed; font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 650px; }
.section-lead { color: var(--muted); font-size: 1.12rem; max-width: 680px; }

.topbar { background: #0a1c2b; color: #dce7ed; font-size: .82rem; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: var(--white); text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(16,38,59,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); font: 700 1rem/1 Georgia, serif; box-shadow: inset 0 0 0 2px rgba(199,154,82,.7); }
.brand-text strong { display: block; font-family: Georgia, serif; font-size: 1.08rem; letter-spacing: .02em; }
.brand-text span { display: block; color: var(--muted); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; }
.site-nav a:not(.button):hover, .site-nav a[aria-current="page"]:not(.button) { color: var(--gold-dark); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); padding: 8px; font-size: 1.5rem; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: .78rem 1.25rem; border: 1px solid var(--gold); border-radius: 999px; background: var(--gold); color: #132738; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); background: #d7ad68; }
.button-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.button-outline:hover { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-small { min-height: 42px; padding: .6rem 1rem; }
.button[aria-disabled="true"] { opacity: .75; }

.hero { min-height: 710px; display: grid; align-items: center; position: relative; overflow: hidden; color: var(--white); background-image: linear-gradient(90deg, rgba(7,24,38,.97) 0%, rgba(12,39,57,.92) 38%, rgba(12,39,57,.48) 66%, rgba(12,39,57,.12) 100%), url("exterior.jpg"); background-size: cover; background-position: center; }
.hero::before, .hero::after { content: none; }
.hero-content { position: relative; z-index: 1; padding: 110px 0 120px; max-width: 800px; }
.hero h1 { color: var(--white); max-width: 780px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 44px; padding: 0; list-style: none; color: #d8e5eb; font-size: .92rem; font-weight: 700; }
.hero-points li::before { content: "✓"; color: var(--gold); margin-right: 8px; }

.trust-strip { position: relative; margin-top: -44px; z-index: 4; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.trust-item { padding: 25px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { color: var(--ink); display: block; font-family: Georgia, serif; font-size: 1.15rem; }
.trust-item span { color: var(--muted); font-size: .84rem; }

section { padding: 100px 0; }
.section-soft { background: var(--cream); }
.section-mist { background: var(--mist); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-heading > div { max-width: 720px; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid rgba(16,38,59,.08); border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 35px rgba(16,38,59,.06); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; color: var(--ink); background: #efe3ce; font-weight: 900; }
.card p { color: var(--muted); }
.audience-card { padding: 0; overflow: hidden; }
.audience-card > img { width: 100%; height: 245px; object-fit: cover; }
.audience-card-body { padding: 28px 30px 30px; }
.audience-card-body p { margin-bottom: 0; }
.text-link { color: var(--gold-dark); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(42px, 8vw, 100px); }
.photo-placeholder { min-height: 520px; position: relative; display: grid; place-items: center; border-radius: 32px; overflow: hidden; background: linear-gradient(145deg, #163d55, #9f7743); box-shadow: var(--shadow); }
.photo-placeholder::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.35); border-radius: 22px; }
.photo-placeholder span { position: relative; color: rgba(255,255,255,.8); max-width: 250px; text-align: center; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.photo-frame { min-height: 520px; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); background: var(--mist); }
.photo-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.gallery { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 300px); gap: 18px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 22px; background: var(--mist); }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; border-radius: 999px; color: var(--white); background: rgba(9,27,41,.82); font-size: .75rem; font-weight: 800; }
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.price-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.price-card strong { display: block; color: var(--ink); font-family: Georgia, serif; font-size: 2rem; line-height: 1.1; }
.price-card span { color: var(--muted); font-size: .88rem; }
.location-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; color: var(--white); font-size: .8rem; font-weight: 800; }
.check-list { padding: 0; margin: 28px 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.check-list li { position: relative; padding-left: 27px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); }

.cta-band { padding: 72px 0; background: var(--ink); color: var(--white); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { color: var(--white); margin-bottom: .25em; }
.cta-band p { color: #c9d9e1; margin: 0; }

.quote { position: relative; padding-top: 52px; }
.quote::before { content: "“"; position: absolute; top: 5px; color: #e5cfaa; font: 5rem/1 Georgia, serif; }
.quote cite { color: var(--ink); font-style: normal; font-weight: 800; }
.disclaimer { color: var(--muted); font-size: .78rem; }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-family: Georgia, serif; font-size: 1.18rem; font-weight: 700; }
.faq-question span:last-child { color: var(--gold-dark); transition: transform .2s; }
.faq-answer { display: none; padding: 0 40px 24px 0; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.page-hero { padding: 105px 0 90px; color: var(--white); background: linear-gradient(125deg, var(--ink), #275d77); }
.page-hero h1 { color: var(--white); font-size: clamp(2.7rem, 6vw, 4.7rem); }
.page-hero p { color: #d6e4e9; max-width: 670px; font-size: 1.17rem; }
.service-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.service-row:last-child { border: 0; }
.service-row h2 { font-size: 2.1rem; }
.service-row ul { padding-left: 20px; }
.price-note { display: inline-block; background: var(--cream); color: var(--gold-dark); padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.article-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.article-visual { min-height: 180px; background: linear-gradient(135deg, var(--ink-2), #c49b5d); }
.article-visual img { width: 100%; height: 220px; object-fit: cover; }
.article-body { padding: 26px; }
.article-body .eyebrow { font-size: .68rem; }
.article-body p { color: var(--muted); }
.article { max-width: 780px; margin: 0 auto; }
.article h2 { margin-top: 2rem; font-size: 2rem; }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; }
.contact-card { padding: 32px; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.contact-card h3 { color: var(--white); }
.contact-card a { color: #efce96; }
.contact-list { padding: 0; list-style: none; }
.contact-list li { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1/-1; }
label { display: block; color: var(--ink); font-size: .85rem; font-weight: 800; margin-bottom: 6px; }
input, select, textarea { width: 100%; border: 1px solid #cbd7dc; border-radius: 12px; background: var(--white); padding: 13px 14px; color: var(--text); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(199,154,82,.28); border-color: var(--gold); }
textarea { min-height: 130px; resize: vertical; }
.form-note, .form-status { color: var(--muted); font-size: .8rem; }
.form-status { display: none; padding: 14px; border-radius: 10px; background: #e8f5ef; color: var(--success); font-weight: 700; }
.form-status.show { display: block; }
.form-status.error { background: #fff0f0; color: #9f1d1d; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
button:disabled { cursor: wait; opacity: .7; }

.payment-box { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(34px, 7vw, 72px); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.payment-icons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 26px 0; }
.payment-icons span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: .8rem; font-weight: 800; }
.payment-card { display: flex; flex-direction: column; align-items: flex-start; }
.payment-card .card-icon { width: auto; min-width: 58px; padding-inline: 12px; }
.payment-card p { flex: 1; }
.payment-card .button { width: 100%; margin-top: 8px; }
.payment-safety { max-width: 820px; margin: 28px auto 0; text-align: center; }

.site-footer { padding: 72px 0 28px; background: #091b29; color: #c2d0d7; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 42px; }
.site-footer h3 { color: var(--white); font-size: 1.05rem; }
.site-footer a { color: #c2d0d7; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .topbar .container span:first-child { display: none; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: fixed; inset: 82px 0 0; flex-direction: column; align-items: stretch; gap: 0; padding: 28px; background: var(--white); }
  .nav-open .site-nav { display: flex; }
  .site-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav .button { margin-top: 18px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .cards, .article-grid { grid-template-columns: 1fr 1fr; }
  .split, .form-layout { grid-template-columns: 1fr; }
  .photo-placeholder { min-height: 380px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  .brand-text span { display: none; }
  .hero { min-height: 650px; }
  .hero-content { padding: 80px 0 110px; }
  .hero::before, .hero::after { display: none; }
  .trust-grid, .cards, .article-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  section { padding: 72px 0; }
  .section-heading, .cta-band .container { align-items: flex-start; flex-direction: column; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .check-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .gallery figure:first-child { grid-row: auto; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
