:root {
  --ink: #102a2a;
  --muted: #667674;
  --cream: #f7f3ec;
  --white: #fff;
  --gold: #c99a55;
  --line: rgba(16, 42, 42, .13);
  --shadow: 0 22px 70px rgba(16, 42, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, Arial, sans-serif; line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247, 243, 236, .91); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { display: block; width: 180px; height: 48px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 700; }
.nav-links a:not(.button):hover { color: var(--gold); }
.menu-button { display: none; border: 0; background: transparent; font-size: 27px; color: var(--ink); cursor: pointer; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 800; transition: .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(16, 42, 42, .14); }
.button.primary { color: var(--white); background: var(--ink); }
.button.light { color: var(--ink); background: var(--white); border-color: var(--white); }

.hero { min-height: 670px; display: grid; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 76% 34%, rgba(201,154,85,.24), transparent 25%), linear-gradient(110deg, transparent 58%, rgba(16,42,42,.08)); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 68px; padding-block: 88px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 900; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; }
h1 { max-width: 750px; margin-bottom: 24px; font-size: clamp(48px, 7vw, 84px); letter-spacing: -.045em; }
h2 { margin-bottom: 20px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.035em; }
h3 { margin-bottom: 12px; font-size: 25px; }
.lead { max-width: 620px; margin: 0 0 34px; color: var(--muted); font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-art { position: relative; min-height: 430px; border-radius: 220px 220px 18px 18px; background: linear-gradient(155deg, #e8d9bf, #9aa9a4 48%, #173c3a); box-shadow: var(--shadow); overflow: hidden; }
.hero-art::before, .hero-art::after { content: ""; position: absolute; bottom: 0; background: rgba(255,255,255,.85); box-shadow: inset 0 0 0 1px rgba(16,42,42,.12); }
.hero-art::before { left: 12%; width: 46%; height: 60%; clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%); }
.hero-art::after { right: 8%; width: 44%; height: 78%; clip-path: polygon(0 10%, 100% 26%, 100% 100%, 0 100%); }
.windows { position: absolute; z-index: 2; inset: 46% 17% 10% 17%; background: repeating-linear-gradient(90deg, transparent 0 27px, rgba(16,42,42,.72) 28px 38px), repeating-linear-gradient(0deg, transparent 0 33px, rgba(16,42,42,.2) 34px 36px); mix-blend-mode: multiply; }
.art-label { position: absolute; z-index: 3; right: 24px; bottom: 24px; width: 170px; padding: 18px; color: var(--white); background: rgba(16,42,42,.88); border-radius: 12px; font-size: 13px; }
.art-label strong { display: block; font-family: Georgia, serif; font-size: 23px; }

.section { padding: 105px 0; }
.section.white { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.intro-copy p { color: var(--muted); font-size: 17px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; background: var(--line); border: 1px solid var(--line); }
.fact { padding: 28px 22px; background: var(--white); }
.fact strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 30px; }
.fact span { color: var(--muted); font-size: 13px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.service { min-height: 260px; padding: 36px; background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 16px; }
.service-number { display: block; margin-bottom: 48px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.service p { margin-bottom: 0; color: var(--muted); }

.contact { padding: 90px 0; color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.contact .eyebrow { color: #e8c58c; }
.contact h2 { max-width: 650px; }
.contact-card { padding: 32px; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; background: rgba(255,255,255,.05); }
.contact-row { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-row:last-child { border: 0; }
.contact-row small { display: block; color: #aebdbb; text-transform: uppercase; letter-spacing: .12em; }
.contact-row a { font-size: 18px; text-decoration: none; }

.site-footer { padding: 34px 0; background: #0b2020; color: #c9d2d0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 25px; font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: inherit; }
.mobile-contact { display: none; }

.legal-hero { padding: 90px 0 55px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 12px; font-size: clamp(44px, 7vw, 70px); }
.legal { max-width: 820px; padding-top: 70px; padding-bottom: 100px; }
.legal h2 { margin-top: 46px; font-size: 30px; }
.legal p, .legal li { color: #526462; }
.legal a { color: var(--ink); }

@media (max-width: 820px) {
  .home-page { padding-bottom: 68px; }
  .site-header { position: sticky; }
  .nav { min-height: 68px; }
  .brand img { width: 158px; height: auto; }
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 18px 20px 24px; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px rgba(16,42,42,.12); }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav-links .button { width: 100%; }
  .hero-grid, .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; padding: 56px 0 72px; }
  .hero-art { min-height: 390px; width: min(100%, 520px); }
  .service-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .service { min-height: auto; }
  .service-number { margin-bottom: 28px; }
  .mobile-contact { position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; height: 68px; padding: 8px; gap: 8px; background: rgba(11,32,32,.96); box-shadow: 0 -8px 30px rgba(0,0,0,.14); backdrop-filter: blur(12px); }
  .mobile-contact a { display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; color: #fff; text-decoration: none; font-size: 14px; font-weight: 800; }
  .mobile-contact a:first-child { color: var(--ink); background: #e8c58c; border-color: #e8c58c; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 75px 0; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 43px; gap: 34px; }
  h1 { font-size: clamp(43px, 13vw, 58px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .lead { margin-bottom: 27px; font-size: 16px; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .actions .button { width: 100%; }
  .hero-art { min-height: 300px; border-radius: 160px 160px 14px 14px; }
  .art-label { right: 14px; bottom: 14px; width: 155px; padding: 14px; }
  .art-label strong { font-size: 20px; }
  .intro-grid, .contact-grid { gap: 34px; }
  .facts { margin-top: 28px; }
  .fact { padding: 22px 20px; }
  .service-grid { margin-top: 30px; }
  .service { padding: 28px; }
  .contact { padding: 72px 0; }
  .contact-card { padding: 23px; }
  .contact-row a { overflow-wrap: anywhere; font-size: 16px; }
  .legal-hero { padding: 60px 0 38px; }
  .legal { padding-top: 48px; padding-bottom: 72px; }
  .legal h2 { margin-top: 38px; font-size: 27px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  .brand img { width: 142px; }
  h1 { font-size: 41px; }
  .hero-art { min-height: 270px; }
}
