@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap");

:root {
  --navy: #07192b;
  --navy-2: #0b243d;
  --gold: #d7a84a;
  --gold-light: #f0cf83;
  --cream: #f5f2eb;
  --ink: #0a1825;
  --muted: #627080;
  --line: rgba(8, 26, 43, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "DM Sans", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 88px; padding: 0 clamp(22px, 4vw, 72px); display: flex; align-items: center;
  background: rgba(5, 19, 33, .94); color: white; position: absolute; inset: 0 0 auto; z-index: 20;
  border-bottom: 1px solid rgba(215, 168, 74, .35); backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand .crown { color: var(--gold); font-size: 36px; line-height: 1; transform: translateY(-2px); }
.brand span:last-child { display: flex; flex-direction: column; }
.brand strong { font-family: Georgia, serif; font-size: 28px; letter-spacing: .14em; line-height: .8; }
.brand small { font-size: 8px; color: var(--gold-light); letter-spacing: .36em; margin-top: 9px; }
.nav { display: flex; gap: clamp(18px, 2.1vw, 34px); margin: auto; }
.nav a { font-size: 13px; font-weight: 600; color: #d8e0e8; transition: color .2s; }
.nav a:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.phone-link { font-weight: 600; font-size: 14px; white-space: nowrap; }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span { width: 25px; height: 2px; background: white; display: block; margin: 5px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 26px; min-height: 54px;
  padding: 0 26px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .13em;
  font-size: 11px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 10px; }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.55); color: white; }
.button-navy { background: var(--navy); color: white; }

.hero { height: min(940px, 100svh); min-height: 760px; position: relative; color: white; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,15,27,.94) 0%, rgba(3,15,27,.74) 35%, rgba(3,15,27,.12) 72%), linear-gradient(0deg, rgba(3,15,27,.65), transparent 45%); }
.hero-content { position: absolute; z-index: 2; left: clamp(24px, 8vw, 150px); top: 50%; transform: translateY(-48%); max-width: 690px; }
.overline { text-transform: uppercase; letter-spacing: .25em; font-size: 11px; font-weight: 700; color: var(--gold-light); display: flex; align-items: center; gap: 14px; }
.overline span { width: 36px; height: 1px; background: currentColor; display: inline-block; }
.overline.dark { color: #9a6d20; }
.hero h1 { font-family: Georgia, serif; font-weight: 400; font-size: clamp(60px, 6.3vw, 108px); line-height: .94; letter-spacing: -.045em; margin: 28px 0; }
h1 em, h2 em { font-family: "Playfair Display", Georgia, serif; color: var(--gold-light); }
.hero-copy { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.7; color: #d5dee7; max-width: 620px; }
.hero-buttons { display: flex; gap: 14px; margin-top: 38px; }
.hero-rail {
  position: absolute; z-index: 2; left: clamp(24px, 8vw, 150px); right: clamp(24px, 8vw, 150px); bottom: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3);
}
.hero-rail a { position: relative; padding: 24px 28px 30px 55px; border-right: 1px solid rgba(255,255,255,.2); transition: background .2s; }
.hero-rail a:hover { background: rgba(7,25,43,.7); }
.hero-rail a:last-child { border: 0; }
.hero-rail a > span { position: absolute; left: 10px; top: 27px; color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.hero-rail strong, .hero-rail small { display: block; }
.hero-rail strong { font-family: Georgia, serif; font-size: 19px; }
.hero-rail small { color: #aebbc6; margin-top: 5px; font-size: 12px; }

.promise { min-height: 116px; background: var(--navy); color: white; border-top: 1px solid var(--gold); display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 8vw; }
.promise > div { display: flex; align-items: center; justify-content: center; gap: 20px; border-right: 1px solid rgba(215,168,74,.3); }
.promise > div:last-child { border: 0; }
.promise-icon { color: var(--gold); font-size: 29px; }
.promise p, .promise strong, .promise small { display: block; margin: 0; }
.promise strong { text-transform: uppercase; font-size: 12px; letter-spacing: .13em; }
.promise small { color: var(--gold-light); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; margin-top: 7px; }

.intro, .process { padding: clamp(85px, 10vw, 160px) max(7vw, 24px); max-width: 1600px; margin: auto; }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; align-items: end; }
.intro h2, .process h2, .service h2, .legacy h2, .quote h2 { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.035em; }
.intro h2 { font-size: clamp(43px, 5vw, 76px); line-height: 1.08; margin: 30px 0 0; }
.intro-grid > div p { line-height: 1.8; color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; gap: 30px; border-bottom: 1px solid var(--gold); padding: 10px 0; margin-top: 16px; font-weight: 700; font-size: 13px; }
.text-link span { color: #a06e1b; }

.service-list { background: #eae6dd; }
.service { min-height: 720px; display: grid; grid-template-columns: 55% 45%; scroll-margin-top: 20px; }
.service.reverse { grid-template-columns: 45% 55%; }
.service.reverse .service-image-wrap { order: 2; }
.service-image-wrap { position: relative; min-height: 650px; overflow: hidden; }
.service-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service:hover .service-image { transform: scale(1.025); }
.image-number { position: absolute; right: 26px; top: 24px; font-family: Georgia, serif; font-size: 64px; color: white; text-shadow: 0 2px 20px #000; opacity: .75; }
.service-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 120px); background: var(--cream); }
.service h2 { font-size: clamp(48px, 5vw, 76px); margin: 22px 0; line-height: 1; }
.service-description { color: var(--muted); font-size: 17px; line-height: 1.8; margin: 0 0 26px; }
.service ul { list-style: none; padding: 0; margin: 0 0 36px; border-top: 1px solid var(--line); }
.service li { border-bottom: 1px solid var(--line); padding: 15px 0 15px 26px; font-size: 13px; font-weight: 600; position: relative; }
.service li::before { content: "◇"; color: #a7731d; position: absolute; left: 0; }
.service .button { align-self: flex-start; }

.legacy { background: var(--navy); color: white; padding: clamp(90px, 10vw, 160px) max(7vw, 24px); display: grid; grid-template-columns: .45fr 1fr .7fr; gap: 8vw; align-items: center; overflow: hidden; }
.legacy-number { font-family: Georgia, serif; font-size: clamp(110px, 15vw, 240px); color: transparent; -webkit-text-stroke: 1px rgba(215,168,74,.35); line-height: .7; transform: rotate(-90deg); white-space: nowrap; }
.legacy h2 { font-size: clamp(48px, 5vw, 76px); line-height: 1.04; margin: 28px 0; }
.legacy-copy > p:last-child { color: #b8c4cf; line-height: 1.8; font-size: 16px; }
.legacy-stats { border-top: 1px solid rgba(215,168,74,.5); }
.legacy-stats div { padding: 25px 0; border-bottom: 1px solid rgba(215,168,74,.35); display: flex; align-items: baseline; gap: 20px; }
.legacy-stats strong { font-family: Georgia, serif; font-size: 40px; color: var(--gold-light); }
.legacy-stats span { color: #bdc7d1; font-size: 12px; }

.process > h2 { font-size: clamp(44px, 5vw, 72px); margin: 24px 0 70px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process article { padding: 36px 30px 10px 0; border-right: 1px solid var(--line); margin-right: 30px; }
.process article:last-child { border: 0; }
.process article > span { color: #a06e1b; font-size: 11px; letter-spacing: .15em; }
.process h3 { font-family: Georgia, serif; font-size: 23px; font-weight: 400; margin: 45px 0 14px; }
.process article p { color: var(--muted); line-height: 1.7; font-size: 14px; }

.quote { background: #0b2238; color: white; padding: clamp(85px, 9vw, 145px) max(7vw, 24px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.quote h2 { font-size: clamp(55px, 6vw, 92px); line-height: .98; margin: 26px 0; }
.quote-copy > p:not(.overline) { color: #bcc7d1; max-width: 480px; line-height: 1.8; }
.quote-phone { display: flex; justify-content: space-between; max-width: 420px; font-family: Georgia, serif; color: var(--gold-light); font-size: 29px; border-bottom: 1px solid rgba(215,168,74,.5); padding: 26px 0 14px; }
.quote address { color: #8496a7; font-style: normal; line-height: 1.7; font-size: 13px; margin-top: 28px; }
.quote-form { background: white; color: var(--ink); padding: clamp(28px, 4vw, 60px); box-shadow: 0 35px 90px rgba(0,0,0,.25); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-form label { display: block; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 700; margin-bottom: 23px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 0; border-bottom: 1px solid #ccd2d7; padding: 13px 0; background: transparent; color: var(--ink); outline: none; resize: vertical; text-transform: none; letter-spacing: normal; font-size: 14px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); }
.quote-form .button { border: 0; margin-top: 5px; }
.quote-form > small { display: block; color: #7f8a94; margin-top: 14px; font-size: 10px; }

footer { background: #041321; color: white; padding: 70px max(5vw, 24px) 25px; }
.footer-main { display: grid; grid-template-columns: 1fr .8fr 1fr .8fr; gap: 6vw; align-items: start; padding-bottom: 60px; }
.footer-main > p { color: #8fa0b0; line-height: 1.7; margin: 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 13px; font-size: 12px; color: #bac5cf; }
.footer-contact a:first-child { color: var(--gold-light); font-family: Georgia, serif; font-size: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; color: #748697; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.mobile-bar { display: none; }

@media (max-width: 1120px) {
  .nav { gap: 18px; }
  .nav a:nth-child(2), .nav a:nth-child(3), .nav a:nth-child(4) { display: none; }
  .phone-link { display: none; }
  .service-content { padding: 55px; }
  .legacy { grid-template-columns: 1fr 1fr; }
  .legacy-number { display: none; }
}

@media (max-width: 760px) {
  body { padding-bottom: 58px; }
  .site-header { height: 72px; position: absolute; padding: 0 18px; }
  .brand { min-width: auto; }
  .brand strong { font-size: 22px; }
  .brand .crown { font-size: 28px; }
  .header-actions { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .nav { position: absolute; left: 0; right: 0; top: 72px; background: var(--navy); padding: 24px; display: none; flex-direction: column; border-bottom: 1px solid var(--gold); }
  .nav.open { display: flex; }
  .nav a, .nav a:nth-child(n) { display: block; font-size: 15px; padding: 5px 0; }
  .hero { min-height: 760px; height: 92svh; }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,15,27,.92), rgba(3,15,27,.3)), linear-gradient(0deg, rgba(3,15,27,.82), transparent 60%); }
  .hero-content { left: 22px; right: 22px; top: 43%; }
  .hero h1 { font-size: clamp(54px, 16vw, 78px); }
  .hero-copy { font-size: 16px; line-height: 1.55; }
  .hero-buttons { align-items: stretch; flex-direction: column; max-width: 290px; }
  .hero-rail { left: 22px; right: 22px; grid-template-columns: repeat(3, 1fr); }
  .hero-rail a { padding: 16px 6px 18px; text-align: center; }
  .hero-rail a > span, .hero-rail small { display: none; }
  .hero-rail strong { font-size: 13px; }
  .promise { padding: 18px 10px; min-height: 90px; }
  .promise > div { gap: 7px; text-align: center; flex-direction: column; }
  .promise-icon { font-size: 19px; }
  .promise strong { font-size: 8px; }
  .promise small { font-size: 7px; margin-top: 4px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro h2 { font-size: 45px; }
  .service, .service.reverse { grid-template-columns: 1fr; min-height: 0; }
  .service.reverse .service-image-wrap { order: 0; }
  .service-image-wrap { min-height: 390px; }
  .service-content { padding: 56px 24px 70px; }
  .service h2 { font-size: 48px; }
  .legacy { grid-template-columns: 1fr; }
  .legacy h2 { font-size: 51px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process article { margin-right: 15px; padding-right: 15px; }
  .process h3 { margin-top: 24px; }
  .quote { grid-template-columns: 1fr; }
  .quote h2 { font-size: 58px; }
  .quote-form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-main > p { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; height: 58px; }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; background: var(--navy); color: white; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 700; }
  .mobile-bar a:last-child { background: var(--gold); color: var(--navy); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
