:root {
  --navy: #07111f;
  --navy-2: #0b1728;
  --navy-3: #10243b;
  --paper: #f3efe6;
  --paper-2: #e9e2d6;
  --ink: #17202b;
  --muted: #6c7480;
  --gold: #c6a15b;
  --gold-2: #ead39a;
  --white: #ffffff;
  --line: rgba(198, 161, 91, 0.28);
  --shadow: 0 24px 70px rgba(2, 10, 20, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--paper); }
.section-muted { background: linear-gradient(180deg, #eee8de 0%, #f7f3ec 100%); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7, 17, 31, .82);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { background: rgba(7, 17, 31, .96); box-shadow: 0 12px 45px rgba(0,0,0,.18); }
.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: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold-2); font: 700 21px/1 Georgia, serif;
  box-shadow: inset 0 0 20px rgba(198,161,91,.08);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: .2px; }
.brand-copy small { margin-top: 5px; color: #aeb9c8; text-transform: uppercase; letter-spacing: 1.6px; font-size: 9px; font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 27px; color: #dfe5ec; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 28px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 20px; width: 0; height: 1px; background: var(--gold); transition: width .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 11px 17px; border: 1px solid var(--gold); color: var(--gold-2); border-radius: 999px; transition: .25s ease; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--gold-2); margin: 5px 0; transition: .3s ease; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 158px 0 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 30%, rgba(28,61,94,.34), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #081522 55%, #0b1b2e 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 78%);
  pointer-events: none;
  z-index: -1;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .6; z-index: -1; }
.hero-glow-one { width: 460px; height: 460px; right: 4%; top: 14%; background: radial-gradient(circle, rgba(198,161,91,.16), transparent 66%); }
.hero-glow-two { width: 340px; height: 340px; left: -8%; bottom: 10%; background: radial-gradient(circle, rgba(62,112,157,.18), transparent 68%); }
.legal-lines { position: absolute; right: 4%; top: 120px; width: 420px; height: 520px; border: 1px solid rgba(198,161,91,.1); transform: rotate(9deg); z-index: -1; }
.legal-lines::before, .legal-lines::after { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(198,161,91,.07); }
.legal-lines::after { inset: 58px; }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; min-height: 560px; }
.eyebrow, .kicker { margin: 0 0 22px; text-transform: uppercase; letter-spacing: 2.3px; font-size: 12px; font-weight: 800; }
.eyebrow { color: var(--gold-2); display: flex; align-items: center; gap: 12px; }
.eyebrow span { display: inline-block; width: 44px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(48px, 6.3vw, 84px); line-height: .98; letter-spacing: -2.2px; }
.hero h1 em { color: var(--gold-2); font-style: normal; }
.hero-lead { max-width: 660px; margin: 30px 0 0; color: #c5ceda; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.hero-meta { display: flex; gap: 0; margin: 38px 0 34px; border-top: 1px solid rgba(255,255,255,.11); border-bottom: 1px solid rgba(255,255,255,.11); width: min(100%, 580px); }
.hero-meta div { flex: 1; padding: 17px 25px 17px 0; display: grid; }
.hero-meta div + div { border-left: 1px solid rgba(255,255,255,.11); padding-left: 25px; }
.hero-meta b { font-family: Georgia, serif; font-size: 21px; color: var(--white); }
.hero-meta span { font-size: 11px; color: #8f9caf; text-transform: uppercase; letter-spacing: 1.5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border-radius: 4px; font-weight: 800; font-size: 13px; letter-spacing: .2px; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #d1b36f, #b98d3f); color: #0a1420; box-shadow: 0 12px 30px rgba(198,161,91,.18); }
.btn-outline { color: #f4ead6; border: 1px solid rgba(234,211,154,.42); background: rgba(255,255,255,.025); }
.btn-outline:hover { border-color: var(--gold); background: rgba(198,161,91,.08); }
.btn-icon { font-size: 16px; }

.hero-visual { position: relative; min-height: 520px; }
.monogram-card {
  position: absolute; inset: 5% 3% 7% 7%;
  display: grid; place-items: center; align-content: center; gap: 26px;
  border: 1px solid rgba(198,161,91,.25);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  box-shadow: inset 0 0 70px rgba(17,49,78,.18), 0 45px 90px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}
.monogram-card::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.045); }
.monogram-ring {
  width: 235px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(198,161,91,.55); box-shadow: 0 0 0 15px rgba(198,161,91,.025), 0 0 0 35px rgba(198,161,91,.018);
}
.monogram-ring span { font: 400 61px/1 Georgia, serif; letter-spacing: 5px; color: var(--gold-2); }
.monogram-card p { margin: 0; text-transform: uppercase; letter-spacing: 4px; color: #a9b4c3; font-size: 11px; }
.floating-card { position: absolute; width: 185px; padding: 18px 19px; background: #0d1d30; border: 1px solid rgba(198,161,91,.22); box-shadow: 0 18px 50px rgba(0,0,0,.25); display: grid; gap: 4px; }
.floating-card span { color: var(--gold); font: 13px Georgia, serif; }
.floating-card b { color: #eef2f6; font-size: 13px; }
.card-a { left: -3%; top: 13%; }
.card-b { right: -4%; top: 44%; }
.card-c { left: 1%; bottom: 7%; }

.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; border-top: 1px solid rgba(255,255,255,.08); background: rgba(5,13,23,.72); backdrop-filter: blur(12px); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-grid > div { padding: 24px 32px; display: grid; gap: 5px; }
.strip-grid > div + div { border-left: 1px solid rgba(255,255,255,.08); }
.strip-grid span { color: #79879a; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.strip-grid strong { color: #e6eaf0; font: 400 18px Georgia, serif; }

.section-heading .kicker, .coverage-copy .kicker, .contact-copy .kicker { color: #9b7536; }
.section-heading h2, .coverage-copy h2, .contact-copy h2 { margin: 0; font: 400 clamp(39px, 5vw, 62px)/1.05 Georgia, "Times New Roman", serif; letter-spacing: -1.5px; }
.section-heading h2 span, .coverage-copy h2 span, .contact-copy h2 span { color: #9f7737; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-card { padding: 32px; border: 1px solid rgba(23,32,43,.11); background: rgba(255,255,255,.42); display: flex; gap: 23px; align-items: center; box-shadow: var(--shadow); }
.intro-mark { flex: 0 0 86px; width: 86px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid #b9924c; border-radius: 50%; font: 400 21px Georgia, serif; color: #8b652a; }
.intro-name { margin: 0 0 4px; font-weight: 800; }
.intro-text { margin: 0; color: var(--muted); }
.centered { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 300px; padding: 31px; background: rgba(255,255,255,.66); border: 1px solid rgba(23,32,43,.09); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 26px 55px rgba(44,38,29,.12); border-color: rgba(159,119,55,.35); }
.service-card.featured { background: var(--navy); color: var(--white); }
.service-number { color: #a98445; font: 15px Georgia, serif; }
.service-icon { margin-top: 44px; font: 38px Georgia, serif; color: #b9904e; }
.service-card h3 { margin: 18px 0 46px; max-width: 290px; font: 400 28px/1.2 Georgia, serif; }
.service-line { position: absolute; left: 31px; right: 31px; bottom: 29px; height: 1px; background: linear-gradient(90deg, #b58b47, transparent); }

.specialty-banner { padding: 84px 0; position: relative; overflow: hidden; }
.specialty-banner::before { content: "TINOCO"; position: absolute; right: -20px; top: -30px; font: 700 170px/1 Georgia, serif; color: rgba(255,255,255,.025); letter-spacing: 8px; }
.specialty-inner p { color: var(--gold-2); text-transform: uppercase; font-size: 11px; letter-spacing: 2px; font-weight: 800; }
.specialty-inner h2 { max-width: 990px; margin: 12px 0 0; font: 400 clamp(30px, 4vw, 48px)/1.25 Georgia, serif; }
.specialty-inner i, .final-inner i { color: var(--gold); font-style: normal; padding: 0 7px; }

.coverage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.coverage-visual { min-height: 400px; display: grid; place-items: center; }
.map-shape {
  position: relative; width: min(440px, 90%); aspect-ratio: 1.4;
  clip-path: polygon(4% 34%, 16% 29%, 23% 12%, 34% 18%, 42% 28%, 57% 30%, 73% 40%, 93% 49%, 89% 60%, 75% 61%, 69% 73%, 56% 68%, 51% 86%, 40% 80%, 36% 65%, 23% 61%, 18% 48%, 7% 46%);
  background: linear-gradient(135deg, #0a1727, #173451);
  box-shadow: 0 24px 80px rgba(7,17,31,.15);
}
.map-shape::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 55% 45%, rgba(198,161,91,.22), transparent 40%); }
.map-shape strong { position: absolute; z-index: 3; left: 47%; top: 50%; transform: translate(-50%, -50%); color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: 4px; }
.map-dot { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 6px rgba(198,161,91,.12); }
.dot-1 { left: 31%; top: 33%; }.dot-2 { left: 49%; top: 42%; }.dot-3 { left: 63%; top: 52%; }.dot-4 { left: 43%; top: 59%; }.dot-5 { left: 71%; top: 45%; }
.coverage-copy h2 { max-width: 600px; }
.coverage-pill { display: inline-block; margin-top: 30px; padding: 11px 17px; border: 1px solid #b99860; border-radius: 999px; color: #8e662b; font-weight: 800; font-size: 13px; }

.availability { padding: 72px 0; }
.availability-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.kicker.light { color: var(--gold-2); margin-bottom: 9px; }
.availability h2 { margin: 0; font: 400 clamp(42px, 5vw, 68px)/1 Georgia, serif; }
.availability h2 span { color: var(--gold-2); }
.btn-large { min-width: 225px; min-height: 60px; }

.contact-section { background: #ede6dc; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-note { margin: 26px 0 0; color: #6e6a64; font-weight: 700; }
.contact-panel { border-top: 1px solid rgba(23,32,43,.14); }
.contact-row { display: grid; grid-template-columns: 160px 1fr auto; gap: 22px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(23,32,43,.14); transition: padding .25s ease, color .25s ease; }
a.contact-row:hover { padding-left: 10px; color: #8c672b; }
.contact-label { color: #77716a; font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 800; }
.contact-row strong { overflow-wrap: anywhere; font: 400 21px Georgia, serif; }
.contact-arrow { font-size: 20px; color: #9b7536; }

.final-cta { padding: 110px 0; position: relative; text-align: center; }
.final-inner { max-width: 880px; }
.final-inner .eyebrow { justify-content: center; }
.final-inner h2 { margin: 0; font: 400 clamp(38px, 5vw, 64px)/1.06 Georgia, serif; }
.final-inner > p:not(.eyebrow) { color: #9aa7b8; letter-spacing: 1px; }
.final-actions { justify-content: center; margin-top: 28px; }

.site-footer { background: #040b13; color: #b3bfcc; padding: 38px 0 102px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 40px; align-items: start; }
.footer-grid > div { display: grid; gap: 5px; }
.footer-grid strong { color: var(--white); font: 400 19px Georgia, serif; }
.footer-grid span, .footer-contact a { font-size: 12px; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-meta { text-align: right; }

.mobile-call { display: none; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.animate-pending { opacity: 0; transform: translateY(24px); }
.reveal.animate-pending.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .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: 78px 0 auto 0; min-height: calc(100dvh - 78px);
    flex-direction: column; align-items: stretch; gap: 0; padding: 24px 20px 100px;
    background: rgba(7,17,31,.985); transform: translateX(105%); transition: transform .35s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a:not(.nav-cta) { padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; }
  .nav-cta { margin-top: 22px; text-align: center; padding: 15px; }
  .hero { min-height: auto; padding-top: 136px; padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; padding-bottom: 150px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 400px; max-width: 650px; width: 100%; margin: 0 auto; }
  .two-col, .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: 1 / -1; }
  .coverage-visual { order: 2; }
  .availability-grid { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 78px 0; }
  .brand-copy strong { font-size: 16px; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); letter-spacing: -1.4px; }
  .hero-lead { font-size: 18px; }
  .hero-meta { margin-top: 30px; }
  .hero-meta b { font-size: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-visual { min-height: 365px; }
  .monogram-card { inset: 5% 5% 10% 5%; }
  .monogram-ring { width: 180px; }
  .monogram-ring span { font-size: 46px; }
  .floating-card { width: 150px; padding: 13px; }
  .card-a { left: 0; }.card-b { right: 0; }.card-c { left: 4%; }
  .strip-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .hero-strip { position: relative; margin-top: -112px; }
  .strip-grid > div { padding: 13px 7px; grid-template-columns: 105px 1fr; align-items: center; }
  .strip-grid > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .specialty-banner { padding: 66px 0; }
  .coverage-visual { min-height: 300px; }
  .availability-grid { display: grid; }
  .contact-row { grid-template-columns: 1fr auto; gap: 5px 15px; }
  .contact-label { grid-column: 1 / -1; }
  .contact-row strong { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding-bottom: 115px; }
  .mobile-call {
    position: fixed; left: 14px; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); z-index: 950;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 56px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
    background: linear-gradient(135deg, #d3b570, #b98d3f); color: #07111f; box-shadow: 0 18px 45px rgba(0,0,0,.3); font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-meta div { padding: 15px 12px 15px 0; }
  .hero-meta div + div { padding-left: 12px; }
  .floating-card { width: 136px; }
  .floating-card b { font-size: 12px; }
  .intro-card { align-items: flex-start; padding: 24px; }
  .intro-mark { flex-basis: 66px; width: 66px; }
}
