:root {
  --navy-950: #03101f;
  --navy-900: #07172b;
  --navy-800: #0b223d;
  --navy-700: #17314e;
  --gold: #c99a4c;
  --gold-light: #e4bd78;
  --ivory: #f5f1e8;
  --paper: #ece5d8;
  --ink: #102238;
  --muted: #7d8791;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --pad: clamp(24px, 5.5vw, 104px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 96px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 78px;
  background: rgba(4, 17, 32, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
}
.brand { display: flex; align-items: center; gap: 13px; line-height: 1; }
.brand-mark { position: relative; width: 45px; height: 47px; color: var(--gold-light); font-family: var(--serif); }
.brand-mark b, .brand-mark i { position: absolute; font-size: 40px; font-weight: 500; font-style: normal; line-height: 1; }
.brand-mark b { left: 0; top: 0; }
.brand-mark i { right: 0; top: 8px; font-size: 31px; }
.brand-mark::after { content: ""; position: absolute; left: 22px; top: 3px; width: 1px; height: 39px; background: currentColor; transform: rotate(23deg); opacity: .7; }
.brand-copy { display: grid; gap: 7px; }
.brand-copy strong { font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: .01em; }
.brand-copy small { color: var(--gold-light); font-size: 8px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.brand-copy small i { display: inline-block; width: 3px; height: 3px; margin: 0 4px 2px; border-radius: 50%; background: currentColor; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.7vw, 47px); margin-left: auto; margin-right: clamp(28px, 4vw, 72px); }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold-light); transition: width .25s ease; }
.desktop-nav a:hover::after { width: 100%; }
.header-cta { padding: 13px 19px; color: var(--gold-light); border: 1px solid rgba(228,189,120,.55); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: .25s ease; }
.header-cta:hover { color: var(--navy-950); background: var(--gold-light); }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  color: white;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,14,28,.36) 0%, rgba(2,14,28,.06) 47%, rgba(2,14,28,.04) 100%), url("assets/hero-kateryna.webp") center/cover no-repeat;
  transform: scale(1.015);
  animation: heroReveal 1.6s cubic-bezier(.2,.7,.2,1) both;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,13,25,.45), transparent 24%, transparent 75%, rgba(2,13,25,.65));
  pointer-events: none;
}
.hero-grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 94px 94px; mask-image: linear-gradient(90deg, black, transparent 60%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 51vw); padding: clamp(175px, 22vh, 230px) 0 80px var(--pad); }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 27px; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 41px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #a97728; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: .96; letter-spacing: -.035em; }
h1 { max-width: 730px; font-size: clamp(68px, 7.1vw, 124px); }
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 570px; margin: 34px 0 0; color: rgba(255,255,255,.78); font-size: clamp(15px, 1.15vw, 18px); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 58px; padding: 0 26px; border: 1px solid transparent; font-size: 11px; font-weight: 700; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 35px rgba(201,154,76,.16); }
.button-gold:hover { box-shadow: 0 16px 40px rgba(201,154,76,.28); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.text-link { color: rgba(255,255,255,.86); font-family: var(--serif); font-size: 18px; border-bottom: 1px solid rgba(255,255,255,.28); }
.text-link span { margin-left: 7px; color: var(--gold-light); }
.hero-proof { display: flex; align-items: stretch; margin-top: clamp(50px, 7vh, 83px); }
.hero-proof div { display: flex; align-items: center; gap: 13px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-proof div:first-child { padding-left: 0; }
.hero-proof div:last-child { border: 0; }
.hero-proof strong { color: var(--gold-light); font-family: var(--serif); font-size: 27px; font-weight: 500; white-space: nowrap; }
.hero-proof span { color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .05em; line-height: 1.45; text-transform: uppercase; }
.hero-side-note { position: absolute; right: 27px; top: 50%; z-index: 3; display: flex; align-items: center; gap: 17px; transform: translateY(-50%) rotate(90deg); transform-origin: center; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .25em; text-transform: uppercase; }
.hero-side-note i { display: block; width: 55px; height: 1px; background: var(--gold); }
.scroll-cue { position: absolute; z-index: 3; right: var(--pad); bottom: 37px; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.57); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 27px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 30px; }
.scroll-cue b { position: absolute; top: 8px; left: 12px; width: 2px; height: 7px; background: var(--gold-light); border-radius: 5px; animation: scrollDot 1.8s infinite; }

.trust-strip { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 128px; padding: 0 var(--pad); color: white; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.08); }
.trust-strip article { display: flex; align-items: center; justify-content: center; gap: 17px; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-strip article:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.line-icon { display: grid; flex: 0 0 49px; width: 49px; height: 49px; place-items: center; color: var(--gold-light); border: 1px solid rgba(228,189,120,.45); border-radius: 50%; }
.line-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }
.trust-strip p { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.55; }
.trust-strip strong { display: block; color: white; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.section { padding: clamp(100px, 11vw, 180px) var(--pad); }
.services { position: relative; background: #f3eee5; }
.services::before { content: "SLUŽBY"; position: absolute; right: -35px; top: 50px; color: rgba(11,34,61,.035); font-family: var(--serif); font-size: clamp(100px, 16vw, 250px); font-weight: 600; letter-spacing: .03em; }
.section-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; max-width: 1370px; margin: 0 auto 75px; }
.section-heading h2, .about-copy h2 { color: var(--navy-900); font-size: clamp(51px, 5.3vw, 82px); }
.section-heading h2 em, .about-copy h2 em { color: #a97728; }
.section-heading > p { max-width: 480px; margin: 0 0 8px; color: #62707e; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1370px; margin: 0 auto; border: 1px solid #d9d0c0; }
.service-card { position: relative; min-height: 480px; padding: clamp(35px, 3.5vw, 58px); background: rgba(255,255,255,.36); border-right: 1px solid #d9d0c0; overflow: hidden; transition: transform .35s ease, background .35s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { z-index: 2; transform: translateY(-10px); background: #fff; box-shadow: 0 24px 55px rgba(19,30,43,.1); }
.service-card.featured { color: white; background: var(--navy-900); }
.service-card.featured::after { content: ""; position: absolute; width: 250px; height: 250px; right: -100px; bottom: -100px; border: 1px solid rgba(228,189,120,.22); border-radius: 50%; box-shadow: 0 0 0 35px rgba(228,189,120,.035), 0 0 0 70px rgba(228,189,120,.025); }
.card-number { color: #a9a092; font-family: var(--serif); font-size: 14px; }
.featured .card-number { color: rgba(255,255,255,.38); }
.service-icon { display: grid; width: 70px; height: 70px; margin: 54px 0 28px; place-items: center; color: #a97728; border: 1px solid rgba(169,119,40,.5); transform: rotate(45deg); }
.service-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; transform: rotate(-45deg); }
.featured .service-icon { color: var(--gold-light); border-color: rgba(228,189,120,.5); }
.service-card h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.service-card p { max-width: 340px; min-height: 94px; margin: 0; color: #71808b; font-size: 14px; }
.featured p { color: rgba(255,255,255,.62); }
.service-card a { position: relative; z-index: 1; display: inline-flex; gap: 25px; margin-top: 32px; color: #91651d; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.featured a { color: var(--gold-light); }

.audit { position: relative; display: grid; grid-template-columns: .92fr .75fr; align-items: center; gap: clamp(70px, 10vw, 170px); min-height: 820px; color: white; background: linear-gradient(135deg, #0b213a, #051426); overflow: hidden; }
.audit::before { content: ""; position: absolute; inset: 0; opacity: .07; background: radial-gradient(circle at 75% 30%, var(--gold) 0, transparent 25%), repeating-linear-gradient(135deg, transparent 0 50px, white 51px, transparent 52px); }
.audit-copy, .audit-panel { position: relative; z-index: 2; }
.audit-copy h2, .process h2, .contact h2 { font-size: clamp(56px, 5.5vw, 87px); }
.audit-intro { max-width: 600px; margin: 32px 0 34px; color: rgba(255,255,255,.65); }
.check-list { display: grid; gap: 16px; margin: 0 0 38px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 15px; color: rgba(255,255,255,.78); font-size: 13px; }
.check-list i { display: grid; flex: 0 0 25px; width: 25px; height: 25px; place-items: center; color: var(--gold-light); border: 1px solid rgba(228,189,120,.4); border-radius: 50%; font-style: normal; }
.audit-panel { display: flex; justify-content: center; perspective: 1000px; }
.audit-label { position: absolute; right: -8px; top: 80px; z-index: 2; padding: 10px 27px; color: var(--navy-950); background: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right top; }
.paper { width: min(460px, 100%); padding: 42px 48px 46px; color: var(--ink); background: #f4efe5; box-shadow: 25px 35px 80px rgba(0,0,0,.35); transform: rotate(2.5deg); }
.paper-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 25px; border-bottom: 1px solid #cfc5b4; }
.paper-mark { font-family: var(--serif); font-size: 32px; color: #a97728; }
.paper-head small { font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.score-ring { display: grid; width: 130px; height: 130px; margin: 32px auto; place-content: center; text-align: center; border: 1px solid #a97728; border-radius: 50%; box-shadow: inset 0 0 0 8px #f4efe5, inset 0 0 0 9px rgba(169,119,40,.3); }
.score-ring strong { color: var(--navy-900); font-family: var(--serif); font-size: 43px; font-weight: 500; line-height: 1; }
.score-ring span { color: #8a8379; font-size: 8px; text-transform: uppercase; }
.paper-row { display: flex; justify-content: space-between; margin-top: 19px; font-size: 10px; font-weight: 600; text-transform: uppercase; }
.paper-row b { color: #a97728; }
.bar { height: 3px; margin-top: 7px; background: #d8d0c2; }
.bar i { display: block; width: var(--value); height: 100%; background: linear-gradient(90deg, var(--navy-700), var(--gold)); }
.paper-note { display: flex; align-items: center; gap: 14px; margin: 23px 0 0; padding-top: 17px; border-top: 1px solid #dbd2c5; color: #716b62; font-size: 10px; }
.paper-note + .paper-note { margin-top: 0; border-top: 0; }
.paper-note span { color: #a97728; font-family: var(--serif); font-size: 19px; }

.about { position: relative; display: grid; grid-template-columns: .78fr 1fr; align-items: center; gap: clamp(60px, 9vw, 150px); background: #f3eee5; overflow: hidden; }
.about::before { content: "O MNĚ"; position: absolute; right: -22px; top: 50px; color: rgba(11,34,61,.035); font-family: var(--serif); font-size: clamp(100px, 16vw, 250px); font-weight: 600; line-height: 1; letter-spacing: .03em; white-space: nowrap; }
.about-portrait { position: relative; z-index: 1; min-height: 660px; }
.portrait-frame { position: absolute; inset: 0 0 50px; background: linear-gradient(180deg, transparent 65%, rgba(4,17,32,.6)), url("assets/hero-kateryna.webp") 77% center/auto 100% no-repeat; box-shadow: 0 30px 65px rgba(11,34,61,.13); filter: saturate(.78) contrast(1.02); }
.about-portrait::before { content: ""; position: absolute; left: -24px; top: -24px; z-index: 0; width: 58%; height: 72%; border: 1px solid rgba(169,119,40,.45); }
.about-portrait::after { content: "KF"; position: absolute; left: -48px; bottom: 43px; z-index: 2; color: rgba(169,119,40,.13); font-family: var(--serif); font-size: 150px; line-height: 1; }
.portrait-caption { position: absolute; right: -25px; bottom: 0; z-index: 3; display: grid; gap: 2px; min-width: 245px; padding: 22px 27px; color: rgba(255,255,255,.65); background: var(--navy-900); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; box-shadow: 0 20px 45px rgba(4,17,32,.16); }
.portrait-caption span:first-child { color: var(--gold-light); }
.about-copy { position: relative; z-index: 1; max-width: 690px; }
.about-copy blockquote { margin: 42px 0 30px; padding-left: 28px; color: #a97728; border-left: 1px solid #b8893c; font-family: var(--serif); font-size: clamp(23px, 2.2vw, 33px); font-style: italic; line-height: 1.35; }
.about-copy > p { color: #65717d; }
.credentials { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 43px; border-top: 1px solid #d5ccbd; border-bottom: 1px solid #d5ccbd; }
.credentials div { display: flex; align-items: center; gap: 14px; padding: 23px 18px; border-right: 1px solid #d5ccbd; }
.credentials div:last-child { border: 0; }
.credentials strong { color: #9a6d25; font-family: var(--serif); font-size: 25px; font-weight: 500; white-space: nowrap; }
.credentials span { color: #77818a; font-size: 9px; letter-spacing: .05em; line-height: 1.4; text-transform: uppercase; }

.process { color: white; background: var(--navy-900); }
.process-heading { display: flex; align-items: end; justify-content: space-between; max-width: 1370px; margin: 0 auto 75px; }
.process-heading::after { content: "UA  ↔  CZ"; margin-bottom: 10px; color: rgba(255,255,255,.12); font-family: var(--serif); font-size: 36px; letter-spacing: .18em; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1370px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.15); }
.process-list article { position: relative; min-height: 310px; padding: 45px 32px 35px 0; border-right: 1px solid rgba(255,255,255,.15); }
.process-list article:not(:first-child) { padding-left: 32px; }
.process-list article:last-child { border: 0; }
.process-list article::before { content: ""; position: absolute; left: 0; top: -1px; width: 0; height: 2px; background: var(--gold-light); transition: width .5s ease; }
.process-list article:hover::before { width: 100%; }
.process-list span { color: var(--gold-light); font-family: var(--serif); font-size: 17px; }
.process-list h3 { margin: 72px 0 19px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.process-list p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }

.quote-section { position: relative; display: grid; min-height: 470px; padding: 80px var(--pad); place-items: center; color: var(--navy-900); text-align: center; background: #e9e1d4; overflow: hidden; }
.quote-mark { position: absolute; top: -180px; color: rgba(169,119,40,.08); font-family: var(--serif); font-size: 590px; line-height: 1; }
.quote-section blockquote { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.8vw, 88px); font-weight: 400; line-height: 1.02; }
.quote-section em { color: #a97728; }

.contact { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, .72fr); align-items: center; gap: clamp(80px, 11vw, 180px); min-height: 880px; color: white; background: radial-gradient(circle at 12% 100%, #183b60, transparent 43%), linear-gradient(115deg, #06172a, #020c17); overflow: hidden; }
.contact::before { content: "KONTAKT"; position: absolute; left: -28px; bottom: -56px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: clamp(150px, 20vw, 330px); font-weight: 600; line-height: .8; letter-spacing: .04em; white-space: nowrap; }
.contact::after { content: ""; position: absolute; right: -220px; top: -240px; width: 620px; height: 620px; border: 1px solid rgba(228,189,120,.08); border-radius: 50%; box-shadow: 0 0 0 75px rgba(228,189,120,.025), 0 0 0 150px rgba(228,189,120,.015); }
.contact-copy, .contact-card { position: relative; z-index: 1; }
.contact-copy .eyebrow { margin-bottom: 35px; }
.contact-copy .contact-lead { max-width: 610px; margin: 36px 0 0; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.75; }
.contact-highlights { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 690px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-highlights > div { display: flex; gap: 14px; padding: 23px 18px 23px 0; border-right: 1px solid rgba(255,255,255,.16); }
.contact-highlights > div:not(:first-child) { padding-left: 18px; }
.contact-highlights > div:last-child { border-right: 0; }
.contact-highlights > div > span { color: var(--gold-light); font-family: var(--serif); font-size: 17px; }
.contact-highlights p { margin: 0; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .04em; line-height: 1.55; text-transform: uppercase; }
.contact-highlights strong { display: block; color: white; font-size: 10px; letter-spacing: .06em; }
.contact-actions { display: flex; align-items: center; gap: 38px; margin-top: 48px; }
.whatsapp-link { color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(228,189,120,.35); }
.contact-card { width: 100%; max-width: 550px; margin: 0; padding: clamp(45px, 4.4vw, 68px); color: var(--ink); background: linear-gradient(145deg, #f6f1e7, #e9e0d1); font-style: normal; box-shadow: 26px 30px 0 rgba(201,154,76,.11), 0 35px 90px rgba(0,0,0,.28); }
.contact-card::after { content: ""; position: absolute; right: 13px; bottom: 13px; width: 45px; height: 45px; border-right: 1px solid #b88433; border-bottom: 1px solid #b88433; }
.language-stamp { position: absolute; right: -31px; top: 56px; display: flex; align-items: center; gap: 7px; padding: 12px 16px; color: var(--navy-950); background: var(--gold-light); box-shadow: 0 10px 25px rgba(0,0,0,.15); transform: rotate(90deg); font-size: 10px; letter-spacing: .1em; }
.language-stamp span { font-size: 14px; }
.mini-brand { display: flex; align-items: center; gap: 17px; }
.mini-brand > span { display: grid; width: 53px; height: 53px; place-items: center; color: #a97728; border: 1px solid #a97728; font-family: var(--serif); font-size: 24px; }
.mini-brand p { margin: 0; font-family: var(--serif); font-size: 25px; line-height: 1.1; }
.mini-brand small { display: block; margin-top: 8px; color: #a97728; font-family: var(--sans); font-size: 7px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.contact-card hr { margin: 40px 0 30px; border: 0; border-top: 1px solid #cfc4b3; }
.contact-card dl { display: grid; gap: 0; margin: 0; }
.contact-card dl div { display: grid; grid-template-columns: 125px 1fr; gap: 14px; padding: 21px 0; border-bottom: 1px solid #d5ccbd; }
.contact-card dt { color: #918779; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-card dt i { margin-right: 9px; color: #a97728; font-family: var(--serif); font-size: 13px; font-style: normal; }
.contact-card dd { margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.35; }
.privacy { margin: 32px 0 0; padding-top: 23px; color: #8d8375; border-top: 1px solid #d0c6b7; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.privacy span { margin-right: 9px; color: #a97728; }

footer { position: relative; padding: 0 var(--pad); color: rgba(255,255,255,.45); background: #020b15; border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.footer-main { position: relative; display: grid; grid-template-columns: 1.35fr .55fr .8fr auto; gap: clamp(45px, 8vw, 130px); min-height: 330px; padding: 72px 0 58px; }
.footer-intro { max-width: 390px; }
.footer-brand { color: white; transform: none; }
.footer-intro > p { max-width: 330px; margin: 30px 0 0; color: rgba(255,255,255,.42); font-family: var(--serif); font-size: 20px; line-height: 1.45; }
.footer-nav, .footer-contact { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-nav > span, .footer-contact > span { margin-bottom: 13px; color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.footer-nav a, .footer-contact a, .footer-contact p { margin: 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.7; transition: color .2s ease; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact > a:first-of-type { color: white; font-family: var(--serif); font-size: 21px; }
.footer-contact .footer-whatsapp { margin-top: 8px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-top { display: flex; align-items: center; flex-direction: column; gap: 12px; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.footer-top span { display: grid; width: 52px; height: 52px; place-items: center; color: var(--gold-light); border: 1px solid rgba(228,189,120,.35); border-radius: 50%; font-family: var(--serif); font-size: 20px; transition: background .2s ease, color .2s ease; }
.footer-top:hover span { color: var(--navy-950); background: var(--gold-light); }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 76px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.footer-bottom i { display: inline-block; width: 3px; height: 3px; margin: 0 9px 2px; background: var(--gold); border-radius: 50%; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes heroReveal { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

@media (max-width: 1150px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; width: 46px; height: 46px; padding: 0; place-content: center; gap: 7px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.25); cursor: pointer; }
  .menu-toggle span { display: block; width: 20px; height: 1px; background: currentColor; transition: .25s ease; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: absolute; top: 100%; left: 0; display: grid; width: 100%; padding: 20px var(--pad) 30px; background: rgba(4,17,32,.98); border-top: 1px solid rgba(255,255,255,.1); opacity: 0; transform: translateY(-15px); visibility: hidden; transition: .25s ease; }
  .mobile-nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 22px; }
  .hero-content { width: 62vw; }
  .hero-bg { background-position: 57% center; }
  .hero-proof div { padding: 0 16px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip article { border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-heading { grid-template-columns: 1fr .65fr; gap: 40px; }
  .service-card { min-height: 500px; }
  .audit { grid-template-columns: 1fr .8fr; gap: 50px; }
  .about { grid-template-columns: .8fr 1fr; gap: 60px; }
  .credentials { grid-template-columns: 1fr; }
  .credentials div { border-right: 0; border-bottom: 1px solid #d5ccbd; }
  .credentials div:last-child { border: 0; }
  .contact { grid-template-columns: 1fr minmax(380px, .8fr); gap: 60px; }
  .footer-main { grid-template-columns: 1.2fr .65fr .85fr auto; gap: 45px; }
}

@media (max-width: 780px) {
  :root { --pad: 22px; }
  .site-header { height: 78px; }
  .brand-mark { width: 37px; height: 40px; }
  .brand-mark b { font-size: 34px; }
  .brand-mark i { font-size: 25px; }
  .brand-mark::after { left: 19px; height: 33px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 6px; }
  .hero { min-height: 880px; height: 100svh; }
  .hero-bg { background-position: 67% center; }
  .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,14,28,.2), rgba(2,14,28,.28) 30%, rgba(2,14,28,.91) 70%); }
  .hero-content { display: flex; flex-direction: column; justify-content: flex-end; width: 100%; height: 100%; padding: 120px var(--pad) 64px; }
  .hero-content .eyebrow { margin-bottom: 15px; }
  h1 { max-width: 520px; font-size: clamp(53px, 15vw, 76px); }
  .hero-lead { max-width: 520px; margin-top: 22px; font-size: 14px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 28px; }
  .hero-proof { margin-top: 34px; }
  .hero-proof div { display: grid; gap: 2px; padding: 0 13px; }
  .hero-proof strong { font-size: 21px; }
  .hero-proof span { font-size: 7px; }
  .hero-side-note, .scroll-cue { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 0; }
  .trust-strip article { justify-content: flex-start; padding: 21px 16px; }
  .trust-strip article:first-child { border-left: 0; }
  .line-icon { flex-basis: 39px; width: 39px; height: 39px; }
  .line-icon svg { width: 19px; }
  .trust-strip p, .trust-strip strong { font-size: 8px; }
  .section { padding-top: 92px; padding-bottom: 92px; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading h2, .about-copy h2 { font-size: clamp(48px, 14vw, 65px); }
  .section-heading > p { margin-top: 27px; font-size: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; border-right: 0; border-bottom: 1px solid #d9d0c0; }
  .service-icon { margin-top: 40px; }
  .audit { grid-template-columns: 1fr; gap: 75px; }
  .audit-copy h2, .process h2, .contact h2 { font-size: clamp(51px, 14vw, 68px); }
  .audit-intro { font-size: 14px; }
  .paper { padding: 35px 32px; transform: rotate(1deg); }
  .about { grid-template-columns: 1fr; }
  .about-portrait { min-height: 570px; order: 2; }
  .portrait-frame { background-position: 71% center; }
  .about-copy { order: 1; }
  .about-copy blockquote { margin-top: 32px; }
  .credentials { grid-template-columns: repeat(3, 1fr); }
  .credentials div { display: grid; gap: 4px; padding: 18px 8px; border-right: 1px solid #d5ccbd; border-bottom: 0; }
  .credentials strong { font-size: 19px; }
  .credentials span { font-size: 7px; }
  .process-heading { display: block; }
  .process-heading::after { display: none; }
  .process-list { grid-template-columns: 1fr; }
  .process-list article, .process-list article:not(:first-child) { min-height: 0; padding: 34px 0 40px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .process-list h3 { margin: 27px 0 13px; }
  .quote-section { min-height: 360px; }
  .contact { grid-template-columns: 1fr; gap: 70px; }
  .contact::before { left: -12px; bottom: -15px; font-size: 115px; }
  .contact::after { width: 350px; height: 350px; right: -220px; top: -120px; }
  .contact-copy .contact-lead { font-size: 14px; }
  .contact-highlights { grid-template-columns: 1fr; }
  .contact-highlights > div, .contact-highlights > div:not(:first-child) { padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .contact-highlights > div:last-child { border-bottom: 0; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 40px 28px; }
  .contact-card dl div { grid-template-columns: 105px 1fr; }
  .contact-card dd { font-size: 19px; }
  .language-stamp { right: -36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 50px 30px; padding-top: 65px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-top { position: absolute; right: 0; top: 65px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; min-height: 95px; }
  .footer-bottom p:last-child { line-height: 1.8; }
}

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