:root {
  --navy-950: #020814;
  --navy-900: #031025;
  --navy-850: #07172f;
  --navy-800: #0a1c38;
  --navy-700: #10284c;
  --gold-700: #8a5c16;
  --gold-600: #b77c22;
  --gold-500: #d4a43e;
  --gold-400: #e7c66f;
  --gold-300: #f2dda0;
  --gold-200: #f8ecc8;
  --ivory: #f7f1e5;
  --paper: #fffaf1;
  --ink: #10131a;
  --muted: #616775;
  --line: rgba(213, 164, 62, .28);
  --shadow: 0 34px 90px rgba(1, 8, 21, .26);
  --serif: "Bodoni 72", Didot, "Times New Roman", Georgia, serif;
  --sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold-400); color: var(--navy-950); }

.container { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.section { position: relative; padding: 128px 0; }

.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, #0b2345 0%, var(--navy-950) 55%, #01040b 100%);
  transition: opacity .65s ease, visibility .65s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-mark { width: 170px; text-align: center; }
.preloader-mark img { filter: drop-shadow(0 0 28px rgba(231, 198, 111, .24)); animation: breathe 1.6s ease-in-out infinite; }
.preloader-mark span { display: block; width: 0; height: 1px; margin: 22px auto 0; background: linear-gradient(90deg, transparent, var(--gold-300), transparent); animation: loading 1.3s ease forwards; }
@keyframes loading { to { width: 150px; } }
@keyframes breathe { 50% { transform: scale(1.025); filter: drop-shadow(0 0 40px rgba(231, 198, 111, .38)); } }

.scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 1500; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-700), var(--gold-300), #fff1bc); box-shadow: 0 0 18px rgba(231, 198, 111, .9); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 96px; padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(231, 198, 111, .12);
  background: linear-gradient(180deg, rgba(2, 8, 20, .93), rgba(2, 8, 20, .62));
  backdrop-filter: blur(18px) saturate(120%);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled { height: 78px; background: rgba(2, 8, 20, .96); box-shadow: 0 15px 40px rgba(0,0,0,.28); }
.brand { width: 322px; max-width: 42vw; }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); color: rgba(255,255,255,.86); }
.main-nav a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: color .25s ease; }
.main-nav a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold-400); transition: right .25s ease; }
.main-nav a:hover { color: var(--gold-300); }
.main-nav a:hover::after { right: 0; }
.nav-contact { padding: 13px 21px; border: 1px solid rgba(231,198,111,.52); color: var(--gold-300); background: rgba(231,198,111,.05); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 7px 0; background: var(--gold-300); transition: transform .25s, opacity .25s; }

.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  color: white; background: var(--navy-950);
}
.hero-image { position: absolute; inset: 0; background: url('assets/hero-villa.webp') 62% center/cover no-repeat; transform: scale(1.035); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(2,8,20,.98) 0%, rgba(3,16,37,.92) 34%, rgba(3,16,37,.54) 64%, rgba(2,8,20,.20) 100%),
  linear-gradient(180deg, rgba(2,8,20,.20) 0%, rgba(2,8,20,.12) 55%, rgba(2,8,20,.96) 100%);
}
.hero-lines { position: absolute; inset: 114px 3.2vw 42px; border: 1px solid rgba(231,198,111,.24); pointer-events: none; }
.hero-lines::before, .hero-lines::after { content: ""; position: absolute; width: 70px; height: 70px; border-color: var(--gold-400); opacity: .8; }
.hero-lines::before { left: -1px; top: -1px; border-left: 2px solid; border-top: 2px solid; }
.hero-lines::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.hero-emblem { position: absolute; width: min(43vw, 680px); right: -6vw; top: 14vh; opacity: .105; filter: drop-shadow(0 0 80px rgba(231,198,111,.2)); pointer-events: none; }
.hero-grid { position: relative; z-index: 3; min-height: 100svh; padding-top: 126px; padding-bottom: 125px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); align-items: center; gap: 70px; }
.hero-content { max-width: 790px; }
.overline, .eyebrow { margin: 0 0 20px; color: var(--gold-400); font-size: 11px; line-height: 1.2; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.hero h1, .section h2, .legacy-quote blockquote { font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; }
.hero h1 { margin: 0; font-size: clamp(58px, 7vw, 108px); line-height: .93; text-shadow: 0 10px 34px rgba(0,0,0,.38); }
.hero h1 em { color: var(--gold-300); font-style: italic; font-weight: 400; }
.hero-lead { max-width: 700px; margin: 32px 0 0; color: rgba(255,255,255,.77); font-size: clamp(17px, 1.6vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 14px 27px; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button-gold { color: #171006; background: linear-gradient(115deg, #8b5d17 0%, #d8a944 36%, #f6e3a9 60%, #bd8122 100%); box-shadow: 0 22px 55px rgba(183,124,34,.27); }
.button-gold:hover { transform: translateY(-3px); box-shadow: 0 28px 62px rgba(183,124,34,.36); }
.button-line { color: var(--gold-300); border: 1px solid rgba(231,198,111,.46); background: rgba(2,8,20,.24); backdrop-filter: blur(10px); }
.button-line:hover { transform: translateY(-3px); background: rgba(231,198,111,.09); }
.hero-seal { justify-self: end; width: 310px; aspect-ratio: 1; padding: 42px; display: flex; flex-wrap: wrap; gap: 7px; align-content: center; justify-content: center; text-align: center; border: 1px solid rgba(231,198,111,.40); border-radius: 50%; background: radial-gradient(circle, rgba(3,16,37,.82), rgba(2,8,20,.54)); box-shadow: inset 0 0 0 8px rgba(231,198,111,.035), 0 34px 80px rgba(0,0,0,.32); backdrop-filter: blur(14px); }
.seal-ring { width: 138px; margin-bottom: 17px; }
.hero-seal p { width: 100%; margin: 0; color: var(--gold-200); font-family: var(--serif); font-size: 16px; letter-spacing: .08em; }
.hero-seal > span { color: var(--gold-500); font-size: 11px; }
.hero-footer { position: absolute; z-index: 4; left: 50%; bottom: 41px; transform: translateX(-50%); display: flex; align-items: center; gap: 42px; color: rgba(255,255,255,.70); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-footer div { display: flex; gap: 10px; align-items: center; }
.hero-footer div span { color: var(--gold-400); }
.scroll-cue { margin-left: auto; width: 28px; height: 46px; border: 1px solid rgba(231,198,111,.45); border-radius: 18px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue i { width: 3px; height: 8px; border-radius: 4px; background: var(--gold-300); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: .2; } 50% { opacity: 1; } 100% { transform: translateY(20px); opacity: 0; } }

.gold-marquee { overflow: hidden; padding: 17px 0; color: #191005; background: linear-gradient(110deg, #9c691a, #e5bf63 28%, #f6e1a0 48%, #bf8427 72%, #8b5c16); border-top: 1px solid #f8e8bb; border-bottom: 1px solid #7f5212; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 30px; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 17px; letter-spacing: .12em; text-transform: uppercase; }
.marquee-track b { font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { background: linear-gradient(180deg, #fffaf1 0%, #f3e8d3 100%); overflow: hidden; }
.section-emblem { position: absolute; opacity: .06; pointer-events: none; }
.section-emblem-left { width: 560px; left: -250px; top: 60px; }
.intro-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 94px; align-items: center; }
.section h2 { margin: 0 0 28px; color: var(--navy-900); font-size: clamp(42px, 5vw, 72px); line-height: 1.02; }
.statement { color: var(--navy-800); font-family: var(--serif); font-size: clamp(23px, 2.4vw, 33px); line-height: 1.25; }
.intro-copy > p:not(.eyebrow):not(.statement) { color: #505665; font-size: 17px; }
.signature { margin-top: 38px; display: grid; grid-template-columns: 84px auto; column-gap: 16px; align-items: center; }
.signature-line { grid-row: 1 / 3; height: 1px; background: linear-gradient(90deg, var(--gold-700), var(--gold-300)); }
.signature strong { color: var(--navy-900); font-family: var(--serif); font-size: 20px; letter-spacing: .08em; }
.signature small { color: var(--gold-700); font-size: 9px; font-weight: 900; letter-spacing: .23em; text-transform: uppercase; }
.editorial-image { position: relative; min-height: 690px; }
.editorial-image > img { width: 100%; height: 690px; object-fit: cover; object-position: center; box-shadow: var(--shadow); filter: saturate(.82) contrast(1.04); }
.image-frame { position: absolute; inset: -24px 25px 24px -24px; border: 1px solid rgba(183,124,34,.55); z-index: -1; }
.image-medallion { position: absolute; right: -52px; top: 44px; width: 122px; height: 122px; padding: 13px; border-radius: 50%; background: var(--navy-900); border: 1px solid var(--gold-400); box-shadow: 0 20px 50px rgba(2,8,20,.28); }
.editorial-image > p { position: absolute; left: -54px; bottom: 34px; max-width: 330px; margin: 0; padding: 25px 28px; color: var(--gold-200); background: rgba(3,16,37,.94); border-left: 3px solid var(--gold-400); box-shadow: 0 20px 45px rgba(0,0,0,.22); font-family: var(--serif); font-size: 20px; line-height: 1.35; }

.tree-divider { width: min(1180px, calc(100% - 64px)); height: 74px; margin: -37px auto; position: relative; z-index: 4; display: grid; grid-template-columns: 1fr 60px 1fr; gap: 22px; align-items: center; }
.tree-divider span { height: 1px; background: linear-gradient(90deg, transparent, rgba(183,124,34,.55)); }
.tree-divider span:last-child { background: linear-gradient(90deg, rgba(183,124,34,.55), transparent); }
.tree-divider img { filter: drop-shadow(0 8px 16px rgba(183,124,34,.18)); }

.pillars { color: white; background:
  radial-gradient(circle at 10% 20%, rgba(212,164,62,.12), transparent 30%),
  radial-gradient(circle at 90% 80%, rgba(212,164,62,.08), transparent 30%),
  linear-gradient(145deg, var(--navy-950), var(--navy-850));
}
.section-heading { max-width: 790px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.pillars .section-heading h2, .pillars .section-heading p { color: white; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.pillars .section-heading > p:last-child { color: rgba(255,255,255,.64); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card { position: relative; overflow: hidden; min-height: 385px; padding: 40px 31px; border: 1px solid rgba(231,198,111,.27); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.pillar-card::before { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--gold-700), var(--gold-300), var(--gold-700)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.pillar-card:hover { transform: translateY(-10px); border-color: rgba(231,198,111,.60); background: linear-gradient(180deg, rgba(231,198,111,.10), rgba(255,255,255,.025)); }
.pillar-card:hover::before { transform: scaleX(1); }
.card-watermark { position: absolute; right: -82px; bottom: -86px; width: 250px; opacity: .07; }
.pillar-number { color: var(--gold-400); font-family: var(--serif); font-size: 26px; }
.pillar-card h3 { margin: 88px 0 20px; color: var(--gold-200); font-family: var(--serif); font-size: 38px; font-weight: 400; }
.pillar-card p { position: relative; margin: 0; color: rgba(255,255,255,.64); font-size: 15px; }

.domains { overflow: hidden; color: white; background: #061225; }
.domains-backdrop { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(2,8,20,.97), rgba(2,8,20,.87) 45%, rgba(2,8,20,.38)),
  url('assets/glass-building.webp') center/cover no-repeat; opacity: .42; }
.domains-layout { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.domains-copy h2 { color: white; }
.domains-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 17px; }
.eyebrow-light { color: var(--gold-300); }
.domain-list { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid rgba(231,198,111,.24); }
.domain-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(231,198,111,.18); }
.domain-list span { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.domain-list strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.domains-gallery { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 290px 290px; gap: 17px; }
.domain-photo { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(231,198,111,.25); box-shadow: 0 26px 70px rgba(0,0,0,.36); }
.domain-photo-main { grid-row: 1 / 3; }
.domain-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08); transition: transform .65s ease; }
.domain-photo:hover img { transform: scale(1.055); }
.domain-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(2,8,20,.74)); }
.domain-photo figcaption { position: absolute; z-index: 2; left: 20px; bottom: 17px; color: var(--gold-200); font-family: var(--serif); font-size: 20px; letter-spacing: .06em; }
.gallery-emblem { position: absolute; width: 122px; height: 122px; padding: 14px; left: 52%; top: 50%; transform: translate(-50%,-50%); z-index: 4; border-radius: 50%; background: rgba(2,8,20,.94); border: 1px solid var(--gold-400); box-shadow: 0 24px 55px rgba(0,0,0,.5); }

.visual-legacy { background: linear-gradient(180deg, #fffaf1, #eee0c4); }
.visual-legacy .section-heading h2 { font-size: clamp(52px, 6vw, 84px); }
.legacy-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 350px 350px; gap: 18px; }
.legacy-tile { position: relative; margin: 0; overflow: hidden; background: var(--navy-900); box-shadow: 0 24px 62px rgba(3,16,37,.18); }
.legacy-tile-large { grid-row: span 2; }
.legacy-tile-wide { grid-column: span 2; }
.legacy-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transition: transform .75s ease, filter .75s ease; }
.legacy-tile:hover img { transform: scale(1.045); filter: saturate(.95) contrast(1.04); }
.legacy-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(2,8,20,.78)); }
.legacy-tile figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; align-items: center; color: white; }
.legacy-tile figcaption span { color: var(--gold-400); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.legacy-tile figcaption strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }

.legacy-quote { position: relative; min-height: 740px; display: grid; place-items: center; overflow: hidden; color: white; }
.legacy-quote-image { position: absolute; inset: 0; background: url('assets/hero-villa.webp') center/cover no-repeat; background-attachment: fixed; }
.legacy-quote-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,8,20,.92), rgba(3,16,37,.68), rgba(2,8,20,.78)); }
.quote-logo { position: absolute; width: min(76vw, 1250px); opacity: .055; filter: drop-shadow(0 0 40px rgba(231,198,111,.25)); }
.quote-content { position: relative; z-index: 2; max-width: 1050px; text-align: center; }
.quote-content > img { width: 125px; margin: 0 auto 30px; filter: drop-shadow(0 0 32px rgba(231,198,111,.24)); }
.legacy-quote blockquote { margin: 0; color: var(--gold-200); font-size: clamp(35px, 4.8vw, 67px); line-height: 1.16; }

.contact { overflow: hidden; background: linear-gradient(135deg, #f8e8b8 0%, #c58c2c 34%, #f8dda0 60%, #936018 100%); }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 0%, rgba(255,255,255,.55), transparent 28%), linear-gradient(90deg, rgba(255,255,255,.08), transparent); }
.contact-emblem { position: absolute; width: 760px; right: -230px; top: -190px; opacity: .14; filter: grayscale(1) brightness(.2); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 470px; gap: 90px; align-items: center; }
.contact h2 { color: #191006; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; color: #3f2b13; font-size: 18px; }
.contact-copy .button { margin-top: 22px; background: var(--navy-900); color: var(--gold-200); box-shadow: 0 22px 50px rgba(3,16,37,.28); }
.contact-panel { position: relative; padding: 38px; color: white; background: linear-gradient(160deg, rgba(3,16,37,.98), rgba(2,8,20,.96)); border: 1px solid rgba(255,239,184,.50); box-shadow: 0 34px 80px rgba(3,16,37,.32); }
.contact-panel::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(231,198,111,.14); pointer-events: none; }
.contact-logo { width: 300px; margin-bottom: 30px; }
.contact-panel dl { position: relative; margin: 0; }
.contact-panel dl > div { display: grid; grid-template-columns: 108px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(231,198,111,.16); }
.contact-panel dt { color: var(--gold-400); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.contact-panel dd { margin: 0; color: rgba(255,255,255,.86); }
.contact-panel a:hover { color: var(--gold-300); }

.site-footer { position: relative; overflow: hidden; padding: 70px 0 28px; color: rgba(255,255,255,.62); background: var(--navy-950); border-top: 1px solid rgba(231,198,111,.25); }
.footer-tree { position: absolute; width: 390px; right: -100px; bottom: -170px; opacity: .055; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; align-items: end; }
.footer-brand img { width: 340px; }
.footer-brand p { margin: 19px 0 0; font-family: var(--serif); color: var(--gold-300); font-size: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 12px; letter-spacing: .08em; }
.footer-links a:hover { color: var(--gold-300); }
.footer-meta { text-align: right; font-size: 12px; }
.footer-meta p { margin: 5px 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; color: white; background: var(--navy-950); }
.legal-header { padding: 26px 4vw; border-bottom: 1px solid rgba(231,198,111,.18); }
.legal-header img { width: 300px; }
.legal-content { width: min(900px, calc(100% - 48px)); margin: 0 auto; padding: 95px 0; }
.legal-content h1 { color: var(--gold-300); font-family: var(--serif); font-size: 52px; font-weight: 400; }
.legal-content h2 { margin-top: 42px; color: var(--gold-400); font-family: var(--serif); font-weight: 400; }
.legal-content p, .legal-content li { color: rgba(255,255,255,.72); }
.legal-content a { color: var(--gold-300); }
.back-link { display: inline-block; margin-top: 40px; color: var(--gold-300); border-bottom: 1px solid rgba(231,198,111,.4); }

@media (max-width: 1080px) {
  .site-header { height: 82px; padding-inline: 24px; }
  .brand { width: 270px; }
  .menu-toggle { display: block; z-index: 1002; }
  .menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; justify-content: center; gap: 30px; background: radial-gradient(circle at 50% 35%, #0c2447, var(--navy-950) 60%); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity .3s, visibility .3s, transform .3s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: var(--serif); font-size: 28px; letter-spacing: .02em; text-transform: none; }
  .nav-contact { padding: 12px 26px; font-family: var(--sans) !important; font-size: 12px !important; text-transform: uppercase !important; }
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 150px; }
  .hero-seal { display: none; }
  .hero-content { margin-top: 70px; }
  .hero-footer { gap: 22px; }
  .intro-grid, .domains-layout, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 75px; }
  .editorial-image { width: min(720px, 90%); margin-inline: auto; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .domains-gallery { max-width: 820px; }
  .legacy-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 370px 300px 330px; }
  .legacy-tile-large { grid-row: span 2; }
  .legacy-tile-wide { grid-column: span 2; }
  .contact-grid { gap: 50px; }
  .contact-panel { max-width: 650px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: span 2; text-align: left; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 34px, 1240px); }
  .section { padding: 88px 0; }
  .site-header { padding-inline: 16px; }
  .brand { width: 238px; max-width: 72vw; }
  .hero-lines { inset: 92px 12px 26px; }
  .hero-grid { padding-top: 94px; padding-bottom: 150px; }
  .hero-content { margin-top: 50px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-footer { bottom: 38px; justify-content: center; flex-wrap: wrap; }
  .hero-footer div { display: none; }
  .scroll-cue { margin: 0; }
  .gold-marquee { padding: 13px 0; }
  .marquee-track span { font-size: 14px; }
  .section h2 { font-size: clamp(38px, 12vw, 54px); }
  .statement { font-size: 24px; }
  .editorial-image { min-height: 500px; width: 100%; }
  .editorial-image > img { height: 500px; }
  .image-frame { inset: -12px 12px 12px -12px; }
  .image-medallion { right: -4px; top: -46px; width: 92px; height: 92px; }
  .editorial-image > p { left: 16px; right: 16px; bottom: 17px; font-size: 17px; }
  .tree-divider { width: calc(100% - 34px); grid-template-columns: 1fr 46px 1fr; gap: 12px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 310px; }
  .pillar-card h3 { margin-top: 55px; }
  .domains-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .domain-photo-main { grid-row: auto; }
  .gallery-emblem { display: none; }
  .legacy-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 310px); }
  .legacy-tile-large, .legacy-tile-wide { grid-row: auto; grid-column: auto; }
  .legacy-quote { min-height: 610px; }
  .legacy-quote-image { background-attachment: scroll; }
  .contact-panel { padding: 30px 24px; }
  .contact-logo { width: 250px; }
  .contact-panel dl > div { grid-template-columns: 1fr; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-meta { grid-column: auto; }
  .footer-brand img { width: 280px; }
}

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