:root {
  --navy-950: #07111e;
  --navy-900: #0c1726;
  --navy-800: #14253a;
  --navy-700: #1d3550;
  --gold: #c7a96b;
  --gold-light: #e2cf9f;
  --ivory: #f7f4ee;
  --paper: #fffdf8;
  --ink: #17202b;
  --muted: #66717e;
  --line: rgba(18, 34, 52, .13);
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 17, 30, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-light); color: var(--navy-950); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--gold); color: var(--navy-950); padding: 12px 16px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(7, 17, 30, .82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(226,207,159,.6); color: var(--gold-light); border-radius: 50% 50% 46% 46%; font-family: Georgia, serif; font-weight: 700; letter-spacing: -.05em; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; letter-spacing: .015em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.62); text-transform: uppercase; font-size: .65rem; letter-spacing: .2em; }
.main-nav { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.78); font-size: .93rem; font-weight: 600; }
.main-nav a { transition: color .2s ease, background .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-light); }
.main-nav .nav-cta { padding: 10px 16px; border: 1px solid rgba(226,207,159,.5); border-radius: 999px; color: var(--gold-light); }
.main-nav .nav-cta:hover { background: var(--gold); color: var(--navy-950); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7,17,30,.98) 0%, rgba(12,23,38,.96) 48%, rgba(19,39,61,.92) 100%),
    radial-gradient(circle at 70% 30%, rgba(199,169,107,.15), transparent 35%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, transparent, #000 60%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -120px; top: 80px; background: rgba(199,169,107,.10); }
.hero-glow-two { width: 300px; height: 300px; left: 35%; bottom: -180px; background: rgba(79,126,167,.13); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: .77rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #987c45; }
.hero h1, .section h2, .method-section h2, .contact-section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
.hero h1 { max-width: 760px; font-size: clamp(3.1rem, 6vw, 5.8rem); }
.hero-lead { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; font-size: .94rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--navy-950); box-shadow: 0 14px 30px rgba(199,169,107,.18); }
.button-primary:hover { background: var(--gold-light); box-shadow: 0 18px 40px rgba(199,169,107,.25); }
.button-ghost { border-color: rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.button-dark { background: var(--navy-900); color: var(--white); }
.button-dark:hover { background: var(--navy-700); }
.button.full { width: 100%; border-radius: 14px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; color: rgba(255,255,255,.58); font-size: .82rem; }
.hero-notes span { display: inline-flex; align-items: center; gap: 9px; }
.hero-notes span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-visual { min-height: 520px; position: relative; display: grid; place-items: center; }
.legal-card { position: relative; z-index: 3; width: min(100%, 390px); aspect-ratio: .73; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; border: 1px solid rgba(226,207,159,.38); border-radius: 190px 190px 24px 24px; background: linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.025)); box-shadow: 0 35px 80px rgba(0,0,0,.24); backdrop-filter: blur(14px); }
.legal-card::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; }
.legal-card-top { position: absolute; inset: 38px 36px auto; display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: .62rem; text-transform: uppercase; letter-spacing: .16em; }
.monogram { width: 160px; height: 160px; display: grid; place-items: center; border: 1px solid rgba(226,207,159,.55); border-radius: 50%; color: var(--gold-light); font-family: Georgia, serif; font-size: 4.8rem; font-weight: 500; letter-spacing: -.1em; text-indent: -.08em; }
.legal-lines { width: 110px; margin: 35px 0 22px; display: grid; gap: 8px; }
.legal-lines i { display: block; height: 1px; background: rgba(255,255,255,.2); }
.legal-lines i:nth-child(2) { width: 72%; justify-self: center; }
.legal-lines i:nth-child(3) { width: 45%; justify-self: center; }
.legal-card p { margin: 0; color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.arch { position: absolute; border: 1px solid rgba(199,169,107,.16); border-bottom: 0; border-radius: 50% 50% 0 0; }
.arch-one { width: 480px; height: 480px; right: -60px; bottom: -120px; }
.arch-two { width: 360px; height: 390px; left: -30px; top: 28px; }

.trust-strip { position: relative; z-index: 5; margin-top: -34px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border: 1px solid rgba(199,169,107,.28); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.trust-grid div { padding: 27px 26px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.trust-grid span { display: block; margin-top: 5px; color: var(--muted); font-size: .82rem; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section h2 { max-width: 760px; color: var(--navy-900); font-size: clamp(2.4rem, 4.5vw, 4.4rem); }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.04rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 370px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,253,248,.58); transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -65px; bottom: -65px; border: 1px solid rgba(199,169,107,.24); border-radius: 50%; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-6px); background: var(--paper); border-color: rgba(199,169,107,.5); box-shadow: 0 24px 60px rgba(7,17,30,.08); }
.service-card:hover::after { transform: scale(1.25); }
.service-card.featured { background: var(--navy-900); color: var(--white); border-color: transparent; }
.service-number { position: absolute; right: 24px; top: 21px; color: rgba(23,32,43,.28); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.featured .service-number { color: rgba(255,255,255,.3); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 46px; border: 1px solid rgba(199,169,107,.5); border-radius: 50%; color: #997b43; font-family: Georgia, serif; font-size: 1.3rem; }
.featured .service-icon { color: var(--gold-light); }
.service-card h3 { margin: 0; font-family: Georgia, serif; color: var(--navy-900); font-size: 1.55rem; font-weight: 600; }
.featured h3 { color: var(--white); }
.service-card p { margin: 14px 0 28px; color: var(--muted); font-size: .93rem; }
.featured p { color: rgba(255,255,255,.63); }
.service-card a { margin-top: auto; position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); font-size: .86rem; font-weight: 800; }
.featured a { border-top-color: rgba(255,255,255,.14); color: var(--gold-light); }
.service-card a span { font-size: 1.25rem; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }

.method-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.method-section::before { content: ""; position: absolute; width: 620px; height: 620px; left: -360px; bottom: -340px; border: 1px solid rgba(199,169,107,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(199,169,107,.035), 0 0 0 180px rgba(199,169,107,.025); }
.method-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.method-intro { position: sticky; top: 130px; }
.method-section h2 { color: var(--white); font-size: clamp(2.5rem, 4.4vw, 4.2rem); }
.method-intro > p:not(.eyebrow) { color: rgba(255,255,255,.62); margin: 26px 0; }
.text-link { display: inline-flex; gap: 14px; color: var(--gold-light); font-weight: 800; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 66px 1fr; gap: 26px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.12); }
.steps-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.steps-list > li > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(199,169,107,.36); border-radius: 50%; color: var(--gold-light); font-size: .75rem; font-weight: 800; }
.steps-list h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.steps-list p { margin: 0; color: rgba(255,255,255,.58); }

.community-section { background: var(--paper); }
.community-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.community-visual { position: relative; min-height: 580px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #e8e1d3, #f4efe6); overflow: hidden; }
.community-visual::before { content: ""; position: absolute; width: 520px; height: 520px; left: -150px; bottom: -290px; border: 1px solid rgba(12,23,38,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(12,23,38,.025), 0 0 0 140px rgba(12,23,38,.02); }
.building { position: absolute; bottom: 0; display: grid; gap: 14px; padding: 30px 24px; background: var(--navy-900); box-shadow: 0 20px 45px rgba(7,17,30,.18); }
.building::before { content: ""; position: absolute; left: 50%; top: -48px; width: 1px; height: 48px; background: var(--navy-900); }
.building::after { content: ""; position: absolute; left: calc(50% - 17px); top: -48px; width: 34px; height: 14px; border: 1px solid var(--navy-900); border-bottom: 0; }
.building-one { left: 68px; width: 190px; height: 360px; grid-template-columns: repeat(2, 1fr); }
.building-two { right: 48px; width: 150px; height: 280px; grid-template-columns: repeat(2, 1fr); background: var(--navy-700); }
.building i { height: 34px; background: rgba(226,207,159,.65); border: 4px solid rgba(255,255,255,.08); }
.document-shape { position: absolute; z-index: 5; right: 90px; top: 72px; width: 210px; height: 270px; padding: 60px 30px 30px; border: 1px solid rgba(199,169,107,.45); border-radius: 10px; background: rgba(255,253,248,.92); box-shadow: var(--shadow); transform: rotate(4deg); }
.document-shape span { display: block; height: 7px; margin-bottom: 17px; border-radius: 10px; background: rgba(12,23,38,.15); }
.document-shape span:nth-child(2) { width: 80%; }
.document-shape span:nth-child(3) { width: 62%; }
.document-shape b { width: 55px; height: 55px; display: grid; place-items: center; margin: 48px auto 0; border: 1px solid rgba(199,169,107,.7); border-radius: 50%; color: #947638; font-size: 1.6rem; }
.community-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); }
.check-list { margin: 0 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 11px; color: #987c45; font-weight: 900; }

.about-section { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.about-copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.03rem; }
.quote-card { position: relative; margin: 0; padding: 54px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.quote-card > span { position: absolute; right: 34px; top: 12px; color: rgba(199,169,107,.24); font-family: Georgia, serif; font-size: 8rem; line-height: 1; }
.quote-card p { position: relative; margin: 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.35; }
.quote-card footer { margin-top: 28px; color: var(--gold-light); font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; }

.faq-section { color: var(--white); background: var(--navy-950); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-section h2 { color: var(--white); }
.faq-intro { position: sticky; top: 125px; }
.faq-intro > p:not(.eyebrow) { color: rgba(255,255,255,.58); }
.accordion details { border-top: 1px solid rgba(255,255,255,.13); }
.accordion details:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; gap: 24px; padding: 26px 0; font-family: Georgia, serif; font-size: 1.28rem; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gold-light); font-family: sans-serif; transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -5px 45px 28px 0; color: rgba(255,255,255,.58); }

.contact-section { padding: 120px 0; color: var(--white); background: linear-gradient(125deg, var(--navy-800), var(--navy-900)); }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; }
.contact-section h2 { color: var(--white); font-size: clamp(2.6rem, 4.5vw, 4.4rem); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); font-size: 1.04rem; }
.contact-details { margin-top: 44px; display: grid; gap: 18px; }
.contact-details div { display: grid; gap: 3px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-details small { color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .12em; }
.contact-details strong, .contact-details a { color: var(--gold-light); font-weight: 700; }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.06); box-shadow: 0 30px 70px rgba(0,0,0,.17); backdrop-filter: blur(10px); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: rgba(255,255,255,.78); font-size: .85rem; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; color: var(--white); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; outline: 0; background: rgba(255,255,255,.07); padding: 13px 14px; transition: border-color .2s ease, background .2s ease; }
.contact-form select option { color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }
.contact-form .consent { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; font-weight: 400; }
.contact-form .consent input { margin: 4px 0 0; padding: 0; accent-color: var(--gold); }
.contact-form .consent a { color: var(--gold-light); text-decoration: underline; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.42); font-size: .75rem; text-align: center; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.62); background: #050c15; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child p { max-width: 320px; }
.footer-grid h3 { margin: 0 0 18px; color: var(--white); font-family: Georgia, serif; font-size: 1rem; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 10px; font-size: .86rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.floating-contact { position: fixed; z-index: 90; right: 22px; bottom: 22px; min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 10px 16px; color: var(--navy-950); background: var(--gold); border-radius: 999px; box-shadow: 0 15px 35px rgba(7,17,30,.3); font-size: .85rem; }
.floating-contact span { font-size: 1.1rem; }

.legal-page { min-height: 100vh; background: var(--ivory); }
.legal-page .site-header { position: relative; }
.legal-content { width: min(calc(100% - 40px), 850px); margin: 0 auto; padding: 90px 0 120px; }
.legal-content h1 { margin: 0 0 18px; color: var(--navy-900); font-family: Georgia, serif; font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.05; }
.legal-content h2 { margin-top: 42px; color: var(--navy-900); font-family: Georgia, serif; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content .updated { color: #987c45; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1000px) {
  .hero-grid, .method-grid, .community-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 35px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 430px; }
  .legal-card { width: 320px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .method-intro, .faq-intro { position: static; }
  .community-grid { gap: 55px; }
  .community-visual { min-height: 500px; order: 2; }
  .about-grid, .faq-grid, .contact-grid { gap: 55px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { background: rgba(7,17,30,.95); }
  .nav-wrap { min-height: 68px; }
  .menu-toggle { display: block; position: relative; z-index: 5; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px 34px; background: var(--navy-950); transform: translateX(100%); transition: transform .25s ease; font-family: Georgia, serif; font-size: 1.8rem; }
  .main-nav.open { transform: none; }
  .main-nav .nav-cta { margin-top: 15px; font-family: ui-sans-serif, system-ui, sans-serif; font-size: .9rem; }
  .hero { min-height: auto; padding: 128px 0 72px; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 390px; }
  .legal-card { width: 280px; }
  .monogram { width: 130px; height: 130px; font-size: 4rem; }
  .arch-one { width: 360px; height: 360px; }
  .arch-two { width: 290px; height: 310px; }
  .trust-strip { margin-top: 0; }
  .trust-grid { grid-template-columns: 1fr; border-radius: 0 0 18px 18px; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
  .section, .contact-section { padding: 82px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .method-grid { gap: 45px; }
  .steps-list li { grid-template-columns: 50px 1fr; gap: 18px; }
  .steps-list > li > span { width: 44px; height: 44px; }
  .community-visual { min-height: 430px; }
  .building-one { left: 25px; width: 155px; height: 290px; }
  .building-two { right: 22px; width: 125px; height: 235px; }
  .document-shape { top: 35px; right: 35px; width: 165px; height: 220px; padding: 45px 22px 20px; }
  .document-shape b { margin-top: 28px; }
  .quote-card { padding: 38px 30px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-contact b { display: none; }
  .floating-contact { width: 52px; height: 52px; justify-content: center; padding: 0; }
}
