/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, figure, dl, dd { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }

/* 2. Variables */
:root {
  --cream: #f7eee7;
  --cream-deep: #ecdfd4;
  --navy: #283852;
  --navy-deep: #18253a;
  --ink: #1e2c42;
  --gold: #d7b673;
  --gold-soft: #e2c98f;
  --line: rgba(40, 56, 82, 0.18);
  --line-light: rgba(247, 238, 231, 0.23);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 4.2vw, 5.5rem);
  --header-height: 6.75rem;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* 3. Typography */
html { background: var(--cream); font-size: 17px; }
body { color: var(--navy); background: var(--cream); font-family: var(--sans); font-size: 1rem; font-weight: 500; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 500; line-height: .93; text-wrap: balance; }
h1, h2 { font-family: var(--serif); }
h2 { font-size: clamp(3.2rem, 5.75vw, 6.5rem); letter-spacing: -.05em; }
h2 em, h1 em { font-weight: 500; }
.overline, .eyebrow, .section-label, .portrait-caption, .lawyer-role { font-size: .78rem; font-weight: 700; letter-spacing: .13em; line-height: 1.45; text-transform: uppercase; }
.overline { color: var(--gold); }

/* 4. Global styles */
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .75rem 1rem; color: var(--cream); background: var(--navy); transform: translateY(-170%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.section-pad { padding: clamp(6rem, 11vw, 11.5rem) var(--page-gutter); }
.section-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1rem, 2.5vw, 3.5rem); position: relative; max-width: 1800px; margin: 0 auto; }
.section-label { grid-column: 1 / 3; display: flex; gap: .8rem; align-items: baseline; color: var(--navy); }
.section-label span { color: var(--gold); }
.section-label p { margin: 0; }
.section-label-light { color: var(--cream); }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-height: 3.85rem; padding: .75rem .9rem .75rem 1.35rem; gap: 2rem; font-size: .78rem; font-weight: 700; letter-spacing: .1em; line-height: 1.25; text-transform: uppercase; transition: background-color .35s var(--ease-out), color .35s var(--ease-out), transform .35s var(--ease-out); }
.button i { display: grid; width: 2.25rem; height: 2.25rem; place-items: center; border-radius: 50%; font-size: 1.1rem; font-style: normal; letter-spacing: 0; transition: transform .35s var(--ease-out); }
.button:hover { transform: translateY(-2px); }
.button:hover i { transform: rotate(45deg); }
.button-primary { color: var(--cream); background: var(--navy); }
.button-primary i { color: var(--navy); background: var(--gold); }
.button-primary:hover { color: var(--navy); background: var(--gold); }
.button-primary:hover i { color: var(--cream); background: var(--navy); }
.button-light { color: var(--navy); background: var(--cream); margin-top: 2.3rem; }
.button-light i { color: var(--cream); background: var(--navy); }
.button-light:hover { color: var(--cream); background: var(--gold); }
.button-gold { color: var(--navy); background: var(--gold); }
.button-gold i { color: var(--navy); background: var(--cream); }
.button-gold:hover { background: var(--cream); }
.text-link, .arrow-link { display: inline-flex; gap: .65rem; align-items: center; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link span, .arrow-link span { color: var(--gold); font-size: 1.1rem; transition: transform .3s var(--ease-out); }
.text-link:hover span, .arrow-link:hover span { transform: translateX(.35rem); }
.arrow-link { padding-bottom: .45rem; border-bottom: 1px solid var(--navy); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* 5. Loader + header */
.page-loader { position: fixed; inset: 0; z-index: 120; display: grid; place-content: center; gap: 1rem; color: var(--cream); background: var(--navy); transition: opacity .55s var(--ease-out), visibility .55s step-end; }
.loader-logo { width: clamp(5rem, 9vw, 7.5rem); height: clamp(5rem, 9vw, 7.5rem); margin: 0 auto; object-fit: contain; filter: brightness(0) invert(88%) sepia(27%) saturate(661%) hue-rotate(358deg) brightness(91%) contrast(87%); }
.loader-line { width: 4.5rem; height: 1px; background: var(--gold); transform-origin: left; animation: loaderLine .7s var(--ease-out) infinite alternate; }
body.is-ready .page-loader { opacity: 0; visibility: hidden; }
.site-header { position: fixed; z-index: 40; top: 0; width: 100%; height: var(--header-height); color: var(--navy); transition: height .4s var(--ease-out), background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out); }
.site-header.is-scrolled { height: 5rem; background-color: rgba(247, 238, 231, .84); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 2 * var(--page-gutter), 1800px); height: 100%; margin: 0 auto; }
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: .6rem; min-width: 11rem; }
.brand img { width: 3.2rem; height: 3.2rem; object-fit: contain; }
.brand-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: -.04em; line-height: .75; }
.brand-name span { display: block; margin-top: .4rem; font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.3rem, 2.5vw, 3rem); }
.nav-link, .header-contact { position: relative; padding: .6rem 0; font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.site-header:not(.is-scrolled) .desktop-nav .nav-link[href="#adwokat"] { color: var(--gold); mix-blend-mode: difference; }
.nav-link::after, .header-contact::after { position: absolute; right: 0; bottom: .15rem; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out); }
.nav-link:hover::after, .nav-link.is-active::after, .header-contact:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact { display: flex; gap: .5rem; margin-left: 2rem; color: var(--cream); background: var(--navy); padding: .85rem 1.1rem; transition: color .3s ease, background-color .3s ease; }
.header-contact:hover { color: var(--navy); background: var(--gold); }
.header-contact:hover::after { background: var(--navy); }
.menu-toggle, .mobile-menu { display: none; }

/* 6. Hero */
.hero { position: relative; min-height: max(43rem, 100svh); isolation: isolate; overflow: hidden; background: var(--cream); }
.hero-surface { position: absolute; z-index: -2; top: 0; right: 0; bottom: 0; width: 45%; background: linear-gradient(145deg, #314561 0%, var(--navy) 52%, #202f47 100%); clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); }
.hero-grid-lines { position: absolute; z-index: -1; inset: 0 var(--page-gutter); opacity: .55; background-image: linear-gradient(to right, transparent calc(16.666% - .5px), rgba(40,56,82,.1) calc(16.666% - .5px), rgba(40,56,82,.1) calc(16.666% + .5px), transparent calc(16.666% + .5px)), linear-gradient(to right, transparent calc(50% - .5px), rgba(40,56,82,.1) calc(50% - .5px), rgba(40,56,82,.1) calc(50% + .5px), transparent calc(50% + .5px)); pointer-events: none; }
.hero-content { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 3.5rem); width: min(100% - 2 * var(--page-gutter), 1800px); min-height: max(43rem, 100svh); padding: calc(var(--header-height) + 4.5rem) 0 7rem; margin: 0 auto; }
.hero-main { z-index: 2; grid-column: 1 / 8; align-self: center; max-width: 48rem; padding-bottom: 1rem; }
.eyebrow { display: flex; align-items: center; gap: .75rem; color: var(--navy); }
.eyebrow span { display: inline-block; width: 2.65rem; height: 1px; background: var(--gold); }
.hero-title { margin: 1.8rem 0 1.8rem; color: var(--navy); font-size: clamp(5.2rem, 10.4vw, 10.4rem); letter-spacing: -.075em; }
.title-line { display: block; overflow: hidden; padding-right: .15em; }
.title-line > span, .title-line > em { display: block; }
.title-line-offset { margin-top: -.2em; margin-bottom: -.2em; margin-left: clamp(2.8rem, 8vw, 10rem); padding-top: .2em; padding-bottom: .2em; }
.hero-title em { color: var(--gold); }
.hero-description { max-width: 30rem; font-size: clamp(1.05rem, 1.15vw, 1.2rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; margin-top: 2.75rem; }
.hero-brand-mark { --mark-opacity: .09; position: absolute; z-index: 0; top: 6rem; bottom: 4.7rem; left: 0; width: auto; height: auto; aspect-ratio: 1; opacity: var(--mark-opacity); pointer-events: none; transform: translateX(-50%); }
.hero-brand-mark img { width: 100%; max-width: none; height: 100%; object-fit: contain; filter: grayscale(1) sepia(.22) contrast(1.12); }
.hero-art { position: absolute; z-index: 1; top: 6rem; right: clamp(-2.5rem, -1.5vw, -1rem); bottom: 4.7rem; width: clamp(23rem, 31vw, 37rem); }
.hero-art img { position: absolute; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; mix-blend-mode: screen; filter: saturate(.74) contrast(1.04); }
.hero-art-index { position: absolute; z-index: 2; top: 4.2rem; right: clamp(1.5rem, 5vw, 5rem); color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .13em; }
.hero-art-caption { position: absolute; z-index: 2; right: 1rem; bottom: 11%; color: rgba(247,238,231,.65); font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.8rem); font-style: italic; letter-spacing: -.08em; transform: rotate(-90deg); transform-origin: right bottom; }
.scroll-cue { position: absolute; z-index: 3; bottom: 1.8rem; left: var(--page-gutter); display: inline-flex; align-items: center; gap: .8rem; color: var(--navy); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 1px; height: 2.4rem; background: var(--gold); overflow: hidden; }
.scroll-cue i::after { display: block; width: 100%; height: 70%; content: ""; background: var(--navy); animation: scrollLine 1.9s ease-in-out infinite; }

/* 7. About */
.about { overflow: hidden; background: var(--cream); }
.about-intro { grid-column: 4 / 11; }
.about-intro h2 { max-width: 47rem; margin-top: 1.15rem; }
.about-copy { grid-column: 7 / 11; align-self: end; margin-top: 4.5rem; }
.about-copy p { max-width: 34rem; font-size: clamp(1.08rem, 1.25vw, 1.3rem); line-height: 1.8; }
.about-copy > p + p { margin-top: 1.15rem; }
.about-network { max-width: 29rem; padding: 1.35rem 0 0 1.35rem; margin-top: 1.5rem; border-top: 1px solid var(--line); border-left: 2px solid var(--gold); }
.about-network p { font-size: 1rem; line-height: 1.75; }
.about-copy .arrow-link { margin-top: 2rem; }
.about-portrait { position: relative; z-index: 1; grid-column: 1 / 6; grid-row: 2 / span 2; min-height: 35rem; margin-top: 5.5rem; overflow: hidden; background: var(--navy-deep); }
.portrait-ground { position: absolute; right: -15%; bottom: 0; left: -15%; height: 38%; background: var(--gold); clip-path: ellipse(70% 46% at 50% 100%); opacity: .65; }
.about-portrait img { position: absolute; z-index: 1; right: 5%; bottom: -1%; width: 88%; height: 104%; object-fit: contain; object-position: bottom center; filter: contrast(1.04); }
.portrait-caption { position: absolute; z-index: 2; top: 1.4rem; left: 1.4rem; color: var(--cream); }
.about-mark { position: absolute; z-index: 0; right: -2%; bottom: -9%; color: rgba(215, 182, 115, .17); font-family: var(--serif); font-size: clamp(16rem, 29vw, 35rem); line-height: .7; letter-spacing: -.2em; pointer-events: none; }
.about-mark span { font-style: italic; }

/* 8. Practice / accordion */
.practice { color: var(--cream); background: var(--navy); }
.practice-heading { grid-column: 4 / 12; }
.practice-heading h2 { max-width: 58rem; margin-top: 1.15rem; }
.practice-heading h2 em { color: var(--gold); }
.services { grid-column: 3 / 12; margin-top: clamp(4.2rem, 8vw, 8rem); border-top: 1px solid var(--line-light); }
.service { border-bottom: 1px solid var(--line-light); }
.service-trigger { display: grid; grid-template-columns: 4.3rem 1fr 2.3rem; align-items: center; width: 100%; min-height: clamp(5.6rem, 8vw, 8.2rem); padding: .85rem 0; color: inherit; border: 0; background: transparent; cursor: pointer; text-align: left; transition: color .3s ease, padding .4s var(--ease-out); }
.service-number { align-self: start; padding-top: .6rem; color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.service-name { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.8rem); letter-spacing: -.05em; line-height: .95; transition: transform .4s var(--ease-out); }
.service-symbol { position: relative; width: 2.25rem; height: 2.25rem; border: 1px solid rgba(247,238,231,.45); border-radius: 50%; transition: background-color .35s ease, border-color .35s ease, transform .35s var(--ease-out); }
.service-symbol::before, .service-symbol::after { position: absolute; top: 50%; left: 50%; width: .62rem; height: 1px; background: var(--cream); content: ""; transform: translate(-50%, -50%); transition: transform .35s var(--ease-out); }
.service-symbol::after { transform: translate(-50%, -50%) rotate(90deg); }
.service-trigger:hover, .service.is-open .service-trigger { color: var(--gold); }
.service-trigger:hover .service-name { transform: translateX(.45rem); }
.service-trigger:hover .service-symbol, .service.is-open .service-symbol { border-color: var(--gold); background: var(--gold); transform: rotate(90deg); }
.service-trigger:hover .service-symbol::before, .service-trigger:hover .service-symbol::after, .service.is-open .service-symbol::before, .service.is-open .service-symbol::after { background: var(--navy); }
.service.is-open .service-symbol::after { transform: translate(-50%, -50%) rotate(0); }
.service-details { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-out); }
.service.is-open .service-details { grid-template-rows: 1fr; }
.service-details > div { display: grid; grid-template-columns: minmax(4rem, 1fr) minmax(13rem, 2.5fr) minmax(11rem, 1fr); gap: 1rem; min-height: 0; overflow: hidden; padding-left: 4.3rem; }
.service-details p { grid-column: 2; max-width: 42rem; padding-bottom: 1rem; color: rgba(247,238,231,.86); font-size: 1.12rem; line-height: 1.75; }
.service-scope { grid-column: 2; padding-bottom: 2.35rem; color: rgba(247,238,231,.86); font-size: 1rem; line-height: 1.75; }
.service-scope li { position: relative; padding-left: 1rem; }
.service-scope li::before { position: absolute; top: .72em; left: 0; width: .32rem; height: .32rem; border-radius: 50%; background: var(--gold); content: ""; }
.service-details a { grid-column: 3; grid-row: 1 / span 2; align-self: start; padding-top: .1rem; color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-details a span { margin-left: .35rem; font-size: 1rem; }

/* 9. Clients */
.clients { overflow: hidden; background: var(--cream); }
.clients-heading { grid-column: 4 / 12; }
.clients-heading h2 { margin-top: 1.15rem; }
.clients-heading h2 em { color: var(--gold); }
.clients-heading > p:last-child { max-width: 52rem; margin-top: 1.7rem; font-size: 1.16rem; line-height: 1.8; }
.client-grid { display: grid; grid-column: 2 / 13; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(.8rem, 1.5vw, 1.5rem); margin-top: clamp(4rem, 7vw, 7rem); }
.client-card { position: relative; display: flex; aspect-ratio: 1 / 1; min-height: 18rem; overflow: hidden; flex-direction: column; justify-content: flex-end; padding: clamp(1.35rem, 2vw, 2rem); border: 1px solid var(--gold); background: var(--cream-deep); }
.client-card::after { position: absolute; top: -.1rem; right: -.1rem; width: 3.8rem; height: 3.8rem; border: 1px solid var(--gold); border-radius: 0 0 0 100%; content: ""; opacity: .8; }
.client-card:nth-child(even) { background: #f2e8df; }
.client-card-art { position: absolute; top: 12%; left: clamp(1.35rem, 2vw, 2rem); width: 45%; aspect-ratio: 1; border: 1px solid rgba(40,56,82,.3); border-radius: 50%; opacity: .72; }
.client-card-art::before, .client-card-art::after, .client-card-art span { position: absolute; content: ""; }
.client-card-art::before { inset: 21%; border: 1px solid var(--gold); border-radius: 50%; }
.client-card-art::after { top: 50%; left: 50%; width: 72%; height: 1px; background: var(--navy); transform: translate(-50%, -50%) rotate(-35deg); }
.client-card-art span { right: -34%; bottom: -12%; width: 55%; height: 55%; background: var(--gold); clip-path: polygon(0 0, 100% 0, 100% 100%); opacity: .75; }
.client-card-number { position: relative; z-index: 1; margin-bottom: .7rem; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.client-card h3 { position: relative; z-index: 1; max-width: 13rem; font-family: var(--serif); font-size: clamp(1.75rem, 2.25vw, 2.7rem); letter-spacing: -.04em; line-height: 1; }
.client-card > p:last-child { position: relative; z-index: 1; max-width: 20rem; margin-top: .9rem; font-size: 1rem; line-height: 1.7; }

/* 10. Principles */
.principles { background: var(--cream-deep); }
.principles-heading { grid-column: 4 / 12; }
.principles-heading h2 { margin-top: 1.15rem; }
.principles-list { display: grid; grid-column: 3 / 12; grid-template-columns: repeat(2, 1fr); gap: 0 4rem; margin-top: clamp(4rem, 7vw, 7.2rem); }
.principle { position: relative; display: grid; grid-template-columns: 3rem 1fr; column-gap: 1rem; padding: 1.65rem 0 2.1rem; border-top: 1px solid var(--line); }
.principle:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.principle > span { color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.principle h3 { grid-column: 2; margin-bottom: .8rem; font-family: var(--serif); font-size: clamp(1.75rem, 2.4vw, 2.65rem); letter-spacing: -.04em; }
.principle p { grid-column: 2; max-width: 25rem; font-size: 1rem; line-height: 1.75; }

/* 11. Consultation */
.consultation { color: var(--cream); background: var(--navy-deep); }
.consultation-intro { grid-column: 4 / 8; }
.consultation-intro h2 { margin-top: 1.15rem; }
.consultation-intro h2 em { color: var(--gold); }
.consultation-intro > p:last-of-type { max-width: 25rem; margin-top: 1.8rem; color: rgba(247,238,231,.82); font-size: 1.05rem; line-height: 1.75; }
.price-list { grid-column: 8 / 13; margin-top: .3rem; border-top: 1px solid var(--line-light); }
.price-list > div { display: grid; grid-template-columns: 1.05fr 1.35fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line-light); }
.price-list dt { font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.price-list dd { color: var(--gold-soft); font-family: var(--serif); font-size: 1.34rem; line-height: 1.3; }
.price-list dd small { display: block; margin-top: .25rem; color: rgba(247,238,231,.72); font-family: var(--sans); font-size: .75rem; letter-spacing: .06em; }

/* 12. FAQ */
.faq { background: var(--cream-deep); }
.faq-heading { grid-column: 4 / 12; }
.faq-heading h2 { margin-top: 1.15rem; }
.faq-heading h2 em { color: var(--gold); }
.faq-list { grid-column: 3 / 12; margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.7rem 4rem 1.7rem 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.3vw, 2.55rem); letter-spacing: -.035em; line-height: 1.15; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 50%; right: .2rem; width: 2.15rem; height: 2.15rem; border: 1px solid var(--line); border-radius: 50%; transform: translateY(-50%); }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: .7rem; height: 1px; background: var(--navy); content: ""; transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary { color: var(--gold); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > div { max-width: 49rem; padding: 0 4rem 1.8rem 0; }
.faq-list details p { font-size: 1rem; line-height: 1.8; }
.faq-list details a { color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--gold); }
.faq-note { max-width: 48rem; margin-top: 1.6rem; color: rgba(40,56,82,.76); font-size: .82rem; line-height: 1.75; }

/* 13. Lawyer */
.lawyer { position: relative; overflow: hidden; background: var(--cream); }
.lawyer-heading { grid-column: 4 / 8; }
.lawyer-heading h2 { margin-top: 1.1rem; font-size: clamp(4rem, 7vw, 8.2rem); }
.lawyer-heading h2 em { color: var(--gold); }
.lawyer-role { margin-top: 1.8rem; }
.lawyer-photo { position: relative; z-index: 1; grid-column: 1 / 6; grid-row: 2 / span 2; min-height: 39rem; margin-top: 5rem; overflow: hidden; background: var(--navy); }
.lawyer-photo-bg { position: absolute; top: 14%; right: -14%; width: 105%; aspect-ratio: 1; border-radius: 50%; background: var(--gold); opacity: .82; }
.lawyer-photo img { position: absolute; z-index: 1; right: -4%; bottom: -1%; width: 105%; height: 105%; object-fit: contain; object-position: bottom center; }
.lawyer-photo figcaption { position: absolute; z-index: 2; right: 1.35rem; bottom: 1.2rem; color: var(--cream); font-size: .72rem; font-weight: 700; letter-spacing: .13em; }
.lawyer-profile { grid-column: 7 / 12; align-self: end; margin-top: 5rem; }
.lawyer-profile > p { max-width: 35rem; font-size: clamp(1.1rem, 1.28vw, 1.32rem); line-height: 1.75; }
.profile-facts { margin-top: 3rem; border-top: 1px solid var(--line); }
.profile-facts > div { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.profile-facts dt { color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.profile-facts dd { font-size: 1rem; line-height: 1.72; }

/* 14. CTA + contact */
.contact-cta { position: relative; display: grid; min-height: clamp(39rem, 52vw, 49rem); overflow: hidden; color: var(--cream); background: var(--navy); }
.contact-cta::before { position: absolute; inset: 1.25rem; border: 1px solid rgba(247,238,231,.15); content: ""; pointer-events: none; }
.cta-inner { z-index: 1; align-self: center; width: min(100% - 2 * var(--page-gutter), 1800px); padding: 7rem 0; margin: 0 auto; }
.cta-inner h2 { max-width: 47rem; margin-top: 1.2rem; font-size: clamp(4.2rem, 8.5vw, 9.5rem); }
.cta-inner h2 em { color: var(--gold); }
.cta-inner > p:last-of-type { max-width: 25rem; margin-top: 1.8rem; color: rgba(247,238,231,.75); }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; margin-top: 2.8rem; }
.text-link-light { color: var(--cream); }
.cta-statue { position: absolute; top: -6%; right: -5%; bottom: -3%; width: min(48vw, 45rem); opacity: .17; }
.cta-statue::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, var(--navy) 0%, transparent 50%), linear-gradient(0deg, var(--navy) 0%, transparent 35%); }
.cta-statue img { width: 100%; height: 100%; object-fit: cover; object-position: center top; mix-blend-mode: screen; filter: saturate(.4); }
.contact-details { background: var(--cream); }
.contact-list { display: grid; grid-column: 3 / 13; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.contact-item { min-height: 11rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact-item p { margin-bottom: 1.9rem; color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-item > a, .contact-item > span { display: block; font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.8rem); letter-spacing: -.035em; line-height: 1.25; }
.contact-item a { transition: color .3s ease; }
.contact-item a:hover { color: var(--gold); }
.contact-item a span { display: inline-block; margin-top: .5rem; color: var(--navy); font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .03em; }
.contact-item small { display: inline-block; margin-top: .55rem; font-family: var(--sans); font-size: .82rem; letter-spacing: .01em; }
.contact-map { grid-column: 3 / 13; margin-top: clamp(3rem, 5vw, 5rem); }
.contact-map-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.4rem; }
.contact-map-heading h3 { max-width: 38rem; margin-top: .65rem; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.8rem); letter-spacing: -.04em; line-height: 1.05; }
.contact-map-heading > a { flex: 0 0 auto; padding-bottom: .25rem; border-bottom: 1px solid var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-map-heading > a span { color: var(--gold); font-size: 1rem; }
.contact-map-frame { position: relative; min-height: clamp(24rem, 38vw, 38rem); overflow: hidden; border: 1px solid var(--line); background: var(--cream-deep); }
.contact-map-frame iframe { position: absolute; width: 100%; height: 100%; border: 0; inset: 0; }
.contact-identifiers { display: flex; grid-column: 3 / 13; gap: 1.3rem; align-items: center; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: rgba(40,56,82,.76); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-identifiers a { margin-left: auto; color: var(--navy); }
.contact-identifiers i { color: var(--gold); font-size: .95rem; font-style: normal; }

/* 15. Footer */
.site-footer { padding: 4rem var(--page-gutter) 1.5rem; color: var(--cream); background: var(--navy-deep); }
.footer-top, .footer-bottom { display: flex; align-items: center; width: min(100%, 1800px); margin: 0 auto; }
.footer-top { justify-content: space-between; gap: 2rem; padding-bottom: 4rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; font-family: var(--serif); font-size: 1.1rem; letter-spacing: -.02em; line-height: 1.15; }
.footer-brand img { width: 3.2rem; height: 3.2rem; object-fit: contain; }
.footer-brand strong { color: var(--gold); font-weight: 500; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a, .footer-mail { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease; }
.footer-nav a:hover, .footer-mail:hover { color: var(--gold); }
.footer-mail span { color: var(--gold); font-size: 1rem; }
.footer-bottom { justify-content: space-between; padding-top: 1.3rem; border-top: 1px solid var(--line-light); color: rgba(247,238,231,.68); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

/* Contact form page */
.contact-page .site-header { color: var(--navy); }
.contact-page .contact-form-section { min-height: 100vh; padding: calc(var(--header-height) + clamp(4rem, 7vw, 7rem)) var(--page-gutter) clamp(6rem, 10vw, 10rem); background: var(--cream); }
.contact-form-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(2.5rem, 5vw, 6rem) clamp(1rem, 2.5vw, 3.5rem); width: min(100%, 1800px); margin: 0 auto; }
.contact-form-intro { grid-column: 1 / 7; position: sticky; top: 8rem; align-self: start; }
.contact-form-intro h1, .thank-you-card h1 { margin-top: 1.2rem; font-family: var(--serif); font-size: clamp(4.2rem, 7vw, 8rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.contact-form-intro h1 em, .thank-you-card h1 em { color: var(--gold); font-weight: 500; }
.contact-form-intro > p:last-of-type { max-width: 36rem; margin-top: 2rem; font-size: 1.1rem; line-height: 1.8; }
.contact-form-direct { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; max-width: 38rem; margin-top: 4rem; }
.contact-form-direct > div { padding-top: 1.1rem; border-top: 1px solid var(--line); }
.contact-form-direct span { display: block; margin-bottom: .65rem; color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form-direct a { font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; transition: color .25s ease; }
.contact-form-direct a:hover { color: var(--gold); }
.form-panel { grid-column: 7 / 13; padding: clamp(1.6rem, 3.5vw, 3.75rem); color: var(--cream); background: var(--navy); }
.form-panel fieldset { min-width: 0; padding: 0; border: 0; opacity: 1; }
.form-status { margin-bottom: 2rem; padding: 1rem; color: var(--cream); border: 1px solid rgba(215,182,115,.55); font-size: .9rem; line-height: 1.75; }
.form-status strong { color: var(--gold-soft); }
.form-status a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: .2em; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.form-field { margin-bottom: 1.45rem; }
.form-field label { display: block; margin-bottom: .55rem; color: var(--gold-soft); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 3.6rem; padding: .85rem 1rem; color: var(--cream); border: 1px solid rgba(247,238,231,.32); border-radius: 0; outline: 0; background: rgba(247,238,231,.045); font: 500 1rem/1.5 var(--sans); transition: border-color .25s ease, background-color .25s ease; }
.form-field textarea { min-height: 11rem; resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-repeat: no-repeat; background-size: 6px 6px; }
.form-field select option { color: var(--navy); background: var(--cream); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background-color: rgba(247,238,231,.08); }
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #f2a7a7; background-color: rgba(242,167,167,.08); }
.form-field textarea::placeholder { color: rgba(247,238,231,.45); }
.form-field-hint { margin-top: .5rem; color: rgba(247,238,231,.68); font-size: .76rem; line-height: 1.55; }
.consent-field { display: grid; grid-template-columns: 1.2rem 1fr; gap: .75rem; align-items: start; cursor: pointer; }
.consent-field input { width: 1rem; height: 1rem; margin: .22rem 0 0; accent-color: var(--gold); }
.consent-field span { color: rgba(247,238,231,.76); font-size: .82rem; line-height: 1.7; }
.consent-field strong { color: var(--gold); }
.form-submit { width: 100%; margin-top: 2rem; border: 0; cursor: pointer; }
.form-note { margin-top: 1rem; color: rgba(247,238,231,.65); font-size: .76rem; line-height: 1.65; }
.form-note span { color: var(--gold); }

/* Netlify form confirmation */
.thank-you-main { display: grid; min-height: 100svh; padding: var(--page-gutter); place-items: center; color: var(--cream); background: var(--navy-deep); }
.thank-you-card { width: min(100%, 57rem); padding: clamp(2rem, 6vw, 6rem); border: 1px solid var(--line-light); background: var(--navy); }
.thank-you-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: clamp(3rem, 7vw, 6rem); font-family: var(--serif); font-size: 1.1rem; line-height: 1.15; }
.thank-you-brand img { width: 3.2rem; height: 3.2rem; object-fit: contain; }
.thank-you-brand strong { color: var(--gold); font-weight: 500; }
.thank-you-card > p:not(.overline) { max-width: 36rem; margin-top: 2rem; color: rgba(247,238,231,.76); line-height: 1.8; }
.thank-you-card > p a { color: var(--gold-soft); white-space: nowrap; }
.thank-you-card .button { margin-top: 2.5rem; }

/* Blog */
.blog-page .site-header { color: var(--navy); }
.blog-hero { padding: calc(var(--header-height) + clamp(4rem, 8vw, 8rem)) var(--page-gutter) clamp(4rem, 7vw, 7rem); background: var(--cream); }
.blog-hero-inner { width: min(100%, 1800px); margin: 0 auto; }
.blog-hero h1 { margin-top: 1rem; font-family: var(--serif); font-size: clamp(7rem, 18vw, 20rem); font-weight: 500; letter-spacing: -.075em; line-height: .75; }
.blog-rule { display: flex; align-items: center; gap: 1.2rem; margin-top: clamp(4rem, 7vw, 7rem); color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.blog-rule::before { flex: 1; height: 1px; background: var(--line); content: ""; }
.blog-content { min-height: clamp(16rem, 28vw, 28rem); padding: 0 var(--page-gutter) clamp(5rem, 9vw, 9rem); background: var(--cream); }
.blog-posts { width: min(100%, 1800px); min-height: inherit; margin: 0 auto; }
.blog-index { padding-top: clamp(4rem, 7vw, 7rem); }
.blog-article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-card { aspect-ratio: auto; min-height: clamp(27rem, 35vw, 34rem); justify-content: flex-start; color: var(--navy); transition: color .3s ease, background-color .3s ease, transform .3s var(--ease-out); }
.blog-card:hover { color: var(--cream); background: var(--navy); transform: translateY(-5px); }
.blog-card .client-card-number { margin-bottom: auto; }
.blog-card-mark { position: absolute; top: 1.3rem; right: 1.3rem; color: rgba(40,56,82,.08); font-family: var(--serif); font-size: clamp(5rem, 8vw, 9rem); line-height: .7; transition: color .3s ease; }
.blog-card:hover .blog-card-mark { color: rgba(247,238,231,.08); }
.blog-card h3 { max-width: 24rem; margin-top: 5rem; font-size: clamp(2.05rem, 2.6vw, 3.3rem); }
.blog-card > p { position: relative; z-index: 1; max-width: 29rem; margin-top: 1.2rem; font-size: 1rem; line-height: 1.75; }
.blog-card-link { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; width: 100%; padding-top: 1.15rem; margin-top: auto; color: var(--gold); border-top: 1px solid currentColor; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-card-link i { font-size: 1rem; font-style: normal; }

/* Article pages */
.article-page .site-header { color: var(--navy); }
.article-breadcrumbs { display: flex; align-items: center; width: min(100% - 2 * var(--page-gutter), 1800px); padding-top: calc(var(--header-height) + 1.4rem); margin: 0 auto; gap: .65rem; color: rgba(40,56,82,.7); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.article-breadcrumbs a { border-bottom: 1px solid rgba(40,56,82,.32); }
.article-hero { padding: clamp(3.5rem, 6vw, 7rem) var(--page-gutter) clamp(4.5rem, 8vw, 8rem); color: var(--cream); background: var(--navy-deep); }
.article-hero-inner { width: min(100%, 1500px); margin: 0 auto; }
.article-category { color: var(--gold-soft); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-hero h1 { max-width: 82rem; margin-top: 1.5rem; font-family: var(--serif); font-size: clamp(3.8rem, 7.2vw, 8.2rem); font-weight: 500; letter-spacing: -.055em; line-height: .91; }
.article-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 72rem; margin-top: clamp(2.5rem, 5vw, 5rem); border-top: 1px solid rgba(247,238,231,.25); }
.article-meta p { padding: 1rem 1.2rem 0 0; color: rgba(247,238,231,.78); font-size: .77rem; line-height: 1.55; }
.article-content-wrap { padding: clamp(4rem, 8vw, 8rem) var(--page-gutter); background: var(--cream); }
.article-body { width: min(100%, 940px); margin: 0 auto; }
.article-body > p { margin: 1.15rem 0; color: var(--ink); font-size: 1.06rem; line-height: 1.9; }
.article-body > p:first-child { margin-top: 0; font-family: var(--serif); font-size: clamp(1.8rem, 2.7vw, 2.7rem); line-height: 1.35; }
.article-body h2 { margin: clamp(3.5rem, 6vw, 6rem) 0 1.35rem; color: var(--navy); font-size: clamp(2.55rem, 4.5vw, 4.8rem); line-height: .98; }
.article-body h3 { margin: 2.7rem 0 .8rem; color: var(--navy); font-family: var(--serif); font-size: clamp(1.75rem, 2.5vw, 2.6rem); line-height: 1.1; }
.article-comparison { margin: 2rem 0 3.5rem; overflow: hidden; border: 1px solid var(--line); }
.article-comparison-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); border-bottom: 1px solid var(--line); }
.article-comparison-row:last-child { border-bottom: 0; }
.article-comparison-row span { padding: .85rem 1rem; border-right: 1px solid var(--line); font-size: .9rem; line-height: 1.6; }
.article-comparison-row span:last-child { border-right: 0; }
.article-comparison-row:first-child { color: var(--cream); background: var(--navy); }
.article-comparison-row [role="columnheader"] { font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.article-contact-line { padding: .8rem 1rem; margin: 0 !important; color: var(--cream) !important; background: var(--navy); border-bottom: 1px solid rgba(247,238,231,.14); }
.article-contact-line + .article-contact-line { margin-top: 0 !important; }
.article-disclaimer { padding: 1.3rem; margin-top: 2.5rem !important; border: 1px solid var(--gold); background: var(--cream-deep); font-size: .86rem !important; line-height: 1.75 !important; }
.article-navigation { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); background: var(--cream-deep); }
.article-navigation a { min-height: 12rem; padding: clamp(1.5rem, 4vw, 4rem) var(--page-gutter); }
.article-navigation a + a { text-align: right; border-left: 1px solid var(--gold); }
.article-navigation small { display: block; margin-bottom: .7rem; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.article-navigation span { display: inline-block; max-width: 34rem; font-family: var(--serif); font-size: clamp(1.5rem, 2.3vw, 2.6rem); line-height: 1.05; }

@media (max-width: 1000px) {
  .blog-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .blog-article-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 27rem; }
  .article-breadcrumbs { overflow: hidden; white-space: nowrap; }
  .article-breadcrumbs span[aria-current="page"] { overflow: hidden; text-overflow: ellipsis; }
  .article-hero h1 { font-size: clamp(3.25rem, 13.5vw, 5rem); }
  .article-meta { grid-template-columns: 1fr; }
  .article-meta p { padding-top: .8rem; }
  .article-content-wrap { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .article-body > p { font-size: 1rem; line-height: 1.82; }
  .article-comparison { overflow-x: auto; }
  .article-comparison-row { min-width: 39rem; }
  .article-navigation { grid-template-columns: 1fr; }
  .article-navigation a { min-height: 9rem; }
  .article-navigation a + a { text-align: left; border-top: 1px solid var(--gold); border-left: 0; }
}

/* Privacy */
.privacy-page .site-header { color: var(--navy); }
.privacy-main { padding: calc(var(--header-height) + clamp(3rem, 6vw, 6rem)) var(--page-gutter) clamp(5rem, 9vw, 9rem); background: var(--cream); }
.privacy-article { width: min(100%, 52rem); margin: 0 auto; }
.privacy-article h1 { margin: 1rem 0 2rem; font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.privacy-article h2 { margin: 2.8rem 0 .8rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.privacy-article p { color: rgba(40,56,82,.82); line-height: 1.8; }
.privacy-article ul { display: grid; gap: .65rem; padding-left: 1.25rem; margin: .9rem 0 1.5rem; list-style: disc; }
.privacy-article li { padding-left: .25rem; line-height: 1.75; }
.privacy-article a:not(.button) { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .2em; }
.privacy-lead { max-width: 45rem; font-size: 1.15rem; }
.privacy-updated { margin-top: 3rem; font-size: .88rem; }
.privacy-article .button { margin-top: 1.5rem; }

/* 14. Cookie consent and policy */
.cookie-table-wrap { max-width: 100%; margin: 1.25rem 0 2rem; overflow-x: auto; border: 1px solid var(--line); }
.cookie-table { width: 100%; min-width: 720px; border-collapse: collapse; background: rgba(255,255,255,.2); }
.cookie-table th, .cookie-table td { padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.65; }
.cookie-table th { color: var(--cream); background: var(--navy); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.cookie-table tr:last-child td { border-bottom: 0; }
.cookie-table th:last-child, .cookie-table td:last-child { border-right: 0; }
.cookie-table code { font-size: .86em; overflow-wrap: anywhere; }
.footer-legal { display: inline-flex; align-items: center; gap: 1.2rem; }
.footer-legal a, .footer-legal button, .footer-cookie-settings { color: inherit; border: 0; background: none; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.footer-legal a:hover, .footer-legal button:hover, .footer-cookie-settings:hover { color: var(--gold-soft); }
.thank-you-legal { margin-top: 1.25rem !important; font-size: .72rem !important; }
.thank-you-legal a, .thank-you-legal button { color: var(--gold-soft); border: 0; border-bottom: 1px solid currentColor; background: none; font: inherit; cursor: pointer; }
.cookie-banner { position: fixed; z-index: 200; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem); left: clamp(1rem, 2.5vw, 2rem); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; max-width: 1120px; padding: clamp(1.35rem, 2.7vw, 2.2rem); margin: 0 auto; gap: 2rem; color: var(--cream); border: 1px solid rgba(226,201,143,.55); background: rgba(24,37,58,.98); box-shadow: 0 1.5rem 4rem rgba(9,17,29,.32); }
.cookie-banner-copy { max-width: 44rem; }
.cookie-banner .overline, .cookie-settings .overline { margin-bottom: .65rem; font-size: .68rem; }
.cookie-banner h2, .cookie-settings h2 { color: var(--cream); font-size: clamp(2rem, 3.2vw, 3.2rem); letter-spacing: -.035em; line-height: 1; }
.cookie-banner p:not(.overline), .cookie-settings > p:not(.overline) { margin-top: .75rem; color: rgba(247,238,231,.84); font-size: .92rem; line-height: 1.65; }
.cookie-banner-copy > a, .cookie-policy-link { display: inline-block; margin-top: .8rem; color: var(--gold-soft); border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.cookie-banner-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, 29rem); gap: .7rem; }
.cookie-button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.4rem; padding: .75rem 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; cursor: pointer; }
.cookie-button-primary { color: var(--navy-deep); border: 1px solid var(--gold); background: var(--gold); }
.cookie-button-secondary { color: var(--cream); border: 1px solid rgba(247,238,231,.58); background: transparent; }
.cookie-button:hover { transform: translateY(-1px); }
.cookie-text-button { grid-column: 1 / -1; justify-self: center; padding: .3rem; color: var(--gold-soft); border: 0; border-bottom: 1px solid currentColor; background: none; font-size: .72rem; font-weight: 700; cursor: pointer; }
.cookie-settings-backdrop { position: fixed; z-index: 210; inset: 0; display: grid; padding: 1rem; place-items: center; overflow-y: auto; background: rgba(9,17,29,.72); }
.cookie-settings { position: relative; width: min(100%, 760px); max-height: calc(100vh - 2rem); padding: clamp(1.5rem, 4vw, 3rem); overflow-y: auto; color: var(--cream); border: 1px solid rgba(226,201,143,.55); background: var(--navy-deep); box-shadow: 0 2rem 5rem rgba(0,0,0,.35); }
.cookie-settings-close { position: absolute; top: 1rem; right: 1rem; display: grid; width: 2.6rem; height: 2.6rem; place-items: center; color: var(--cream); border: 1px solid rgba(247,238,231,.42); border-radius: 50%; background: transparent; font-size: 1.55rem; line-height: 1; cursor: pointer; }
.cookie-category { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; padding: 1.2rem 0; gap: 1.5rem; border-bottom: 1px solid rgba(247,238,231,.2); }
.cookie-category:first-of-type { margin-top: 1.5rem; border-top: 1px solid rgba(247,238,231,.2); }
.cookie-category strong { display: block; color: var(--gold-soft); font-size: 1rem; }
.cookie-category div > span { display: block; margin-top: .25rem; color: rgba(247,238,231,.75); font-size: .84rem; line-height: 1.55; }
.cookie-switch { display: inline-flex; align-items: center; gap: .55rem; color: var(--cream); font-size: .72rem; font-weight: 700; white-space: nowrap; }
.cookie-switch input { width: 1.2rem; height: 1.2rem; accent-color: var(--gold); }
.cookie-settings-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.5rem; gap: .75rem; }
.cookie-settings-open { overflow: hidden; }
.external-content-consent { position: absolute; z-index: 1; inset: 0; display: grid; place-content: center; padding: 2rem; text-align: center; background: linear-gradient(145deg, var(--cream-deep), var(--cream)); }
.external-content-consent-inner { max-width: 34rem; }
.external-content-consent h4 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.external-content-consent p { margin-top: .9rem; line-height: 1.7; }
.external-content-consent .cookie-button { margin: 1.2rem auto 0; }

@media (max-width: 760px) {
  .cookie-banner { grid-template-columns: 1fr; max-height: calc(100vh - 2rem); overflow-y: auto; gap: 1.2rem; }
  .cookie-banner-actions, .cookie-settings-actions { grid-template-columns: 1fr; width: 100%; }
  .cookie-text-button { grid-column: auto; }
  .cookie-category { grid-template-columns: 1fr; gap: .75rem; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: .55rem; }
}

/* 15. Reveals and animation */
.js .reveal, .js .hero-reveal { opacity: 0; transform: translateY(1.7rem); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.is-revealed, .js .hero-reveal.is-revealed { opacity: 1; transform: translateY(0); }
.js .reveal-delay-1 { transition-delay: .1s; }
.js .reveal-delay-2 { transition-delay: .2s; }
.js .reveal-delay-3 { transition-delay: .3s; }
.js .hero-brand-mark.hero-reveal { transform: translate(-50%, 1.7rem); }
.js .hero-brand-mark.hero-reveal.is-revealed { opacity: var(--mark-opacity); transform: translateX(-50%); }
.js .hero-title .title-line > span, .js .hero-title .title-line > em { transform: translateY(110%); transition: transform 1.05s var(--ease-out); }
.js .hero-title.is-revealed .title-line > span, .js .hero-title.is-revealed .title-line > em { transform: translateY(0); }
.js .hero-title .title-line:nth-child(2) > em { transition-delay: .12s; }
@keyframes loaderLine { from { transform: scaleX(.15); opacity: .4; } to { transform: scaleX(1); opacity: 1; } }
@keyframes scrollLine { 0% { transform: translateY(-110%); } 45%, 55% { transform: translateY(15%); } 100% { transform: translateY(180%); } }

/* 15. Responsive */
@media (min-width: 1200px) {
  html { font-size: 18px; }
}

@media (min-width: 1800px) {
  html { font-size: 20px; }
}

@media (min-width: 2560px) {
  html { font-size: 22px; }
}

@media (min-width: 1101px) and (max-width: 1400px) {
  .desktop-nav { transform: translateX(-2.25rem); }
}

@media (max-width: 1100px) {
  :root { --header-height: 5.75rem; }
  .desktop-nav, .header-contact { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; flex: 0 0 2.8rem; width: 2.8rem; height: 2.8rem; padding: 0; place-content: center; gap: .38rem; color: var(--navy); border: 1px solid rgba(40,56,82,.28); background: rgba(247,238,231,.92); cursor: pointer; }
  .menu-toggle span { display: block; width: 1rem; height: 1px; background: currentColor; transition: transform .3s var(--ease-out); }
  .menu-toggle.is-open span:first-child { transform: translateY(2.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-2.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 41; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: space-between; padding: 1.35rem var(--page-gutter) 2rem; color: var(--cream); background: var(--navy-deep); opacity: 0; pointer-events: none; transition: opacity .45s var(--ease-out), visibility .45s step-end; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; transition: opacity .45s var(--ease-out); }
  .mobile-menu-top { display: flex; align-items: center; justify-content: space-between; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .menu-close { display: grid; width: 2.8rem; height: 2.8rem; padding: 0; place-items: center; color: var(--cream); border: 1px solid var(--line-light); background: none; font-size: 1.8rem; font-weight: 300; cursor: pointer; }
  .mobile-menu nav { display: grid; gap: 1.05rem; }
  .mobile-menu nav a { display: flex; gap: 1.15rem; align-items: baseline; font-family: var(--serif); font-size: clamp(2.7rem, 9vw, 4.4rem); letter-spacing: -.055em; line-height: 1; }
  .mobile-menu nav small { color: var(--gold); font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
  .mobile-menu-phone { align-self: flex-start; padding-bottom: .45rem; border-bottom: 1px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
  body.menu-open { overflow: hidden; }
  .site-header:not(.is-scrolled) .menu-toggle { color: var(--cream); border-color: var(--line-light); background: rgba(24,37,58,.2); }
  .contact-page .site-header .menu-toggle { color: var(--navy); border-color: rgba(40,56,82,.28); background: rgba(247,238,231,.96); }
  .blog-page .site-header .menu-toggle { color: var(--navy); border-color: rgba(40,56,82,.28); background: rgba(247,238,231,.96); }
  .hero-surface { width: 50%; }
  .hero-main { grid-column: 1 / 8; }
  .hero-art { right: -9rem; width: 29rem; }
  .about-intro, .practice-heading, .clients-heading, .principles-heading, .consultation-intro, .faq-heading, .lawyer-heading { grid-column: 4 / 13; }
  .about-copy { grid-column: 7 / 13; }
  .about-portrait { grid-column: 1 / 6; }
  .services { grid-column: 2 / 13; }
  .client-grid { grid-column: 2 / 13; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lawyer-profile { grid-column: 7 / 13; }
  .contact-list { grid-template-columns: repeat(2, 1fr); }
  .contact-item { min-height: 9.5rem; }
  .contact-form-intro { grid-column: 1 / 6; }
  .form-panel { grid-column: 6 / 13; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 720px) {
  :root { --page-gutter: 1.2rem; --header-height: 4.9rem; }
  h2 { font-size: clamp(3.1rem, 13vw, 4.65rem); }
  .section-pad { padding-top: 5rem; padding-bottom: 5rem; }
  .section-grid { display: block; }
  .section-label { margin-bottom: 2.85rem; }
  .section-label-light { margin-bottom: 2.85rem; }
  .site-header.is-scrolled { height: 4.25rem; }
  .site-header:not(.is-scrolled) { color: var(--navy); }
  .site-header:not(.is-scrolled) .brand img { filter: none; opacity: 1; }
  .site-header:not(.is-scrolled) .brand-name { color: var(--navy); }
  .brand { min-width: auto; }
  .brand img { width: 2.4rem; height: 2.4rem; }
  .brand-name { font-size: 1.08rem; }
  .hero { min-height: max(43rem, 100svh); color: var(--navy); background: var(--cream); }
  .hero-surface { inset: 0 0 0 auto; width: 52%; clip-path: polygon(58% 0, 100% 0, 100% 100%, 0 100%); background: linear-gradient(145deg, #30435e, var(--navy-deep)); }
  .hero-grid-lines { inset: 0 var(--page-gutter); opacity: .35; background-image: linear-gradient(to right, transparent calc(50% - .5px), rgba(40,56,82,.14) calc(50% - .5px), rgba(40,56,82,.14) calc(50% + .5px), transparent calc(50% + .5px)); }
  .hero-content { display: block; min-height: max(43rem, 100svh); padding-top: calc(var(--header-height) + 4.25rem); padding-bottom: 7rem; }
  .hero-main { position: relative; z-index: 3; max-width: 65%; padding-bottom: 0; }
  .eyebrow { gap: .45rem; font-size: .66rem; letter-spacing: .1em; white-space: nowrap; }
  .eyebrow span { width: 1.3rem; }
  .eyebrow, .hero-title, .hero-description { color: var(--navy); }
  .hero-title { margin-top: 1.45rem; margin-bottom: 1.35rem; font-size: clamp(3.5rem, 14vw, 4.75rem); }
  .title-line-offset { margin-left: 1.25rem; }
  .hero-description { max-width: 16rem; font-size: .95rem; line-height: 1.7; }
  .hero-actions { gap: 1.2rem; margin-top: 2rem; }
  .hero-actions .button { gap: .75rem; font-size: .72rem; letter-spacing: .08em; }
  .button { min-height: 3.55rem; padding-left: 1rem; gap: 1.25rem; }
  .button-primary { color: var(--cream); background: var(--navy); }
  .button-primary i { color: var(--navy); background: var(--gold); }
  .text-link { font-size: .68rem; }
  .hero-brand-mark { --mark-opacity: .12; top: 5.9rem; right: auto; bottom: auto; width: min(46.85rem, 180vw); height: auto; }
  .hero-art { top: 7rem; right: calc(45vw - 15.3125rem); bottom: 3rem; width: 15rem; opacity: .82; clip-path: none; }
  .hero-art-index, .hero-art-caption { display: none; }
  .hero-art img { mix-blend-mode: screen; }
  .scroll-cue { bottom: 1.35rem; color: var(--navy); }
  .scroll-cue i::after { background: var(--navy); }
  .about-intro, .practice-heading, .clients-heading, .principles-heading, .consultation-intro, .faq-heading, .lawyer-heading { max-width: 35rem; }
  .about-intro h2, .practice-heading h2, .clients-heading h2, .principles-heading h2, .consultation-intro h2, .faq-heading h2, .lawyer-heading h2 { margin-top: .85rem; }
  .about-copy { margin-top: 2rem; }
  .about-copy p { font-size: 1.05rem; }
  .about-portrait { min-height: 25rem; margin-top: 3.2rem; }
  .about-portrait img { right: 2%; width: 95%; }
  .about-mark { right: -1rem; bottom: -2rem; font-size: 18rem; }
  .services { margin-top: 3.5rem; }
  .client-grid { grid-template-columns: 1fr; margin-top: 3.5rem; }
  .client-card { aspect-ratio: auto; min-height: 22rem; }
  .service-trigger { grid-template-columns: 2.6rem 1fr 2rem; min-height: 5.3rem; }
  .service-name { font-size: clamp(2rem, 9vw, 3.35rem); }
  .service-symbol { width: 2rem; height: 2rem; }
  .service-details > div { display: block; padding-left: 2.6rem; }
  .service-details p { padding: .1rem 0 1rem; font-size: 1rem; }
  .service-scope { padding-bottom: 1.2rem; font-size: .92rem; }
  .service-details a { display: inline-block; padding-bottom: 1.85rem; font-size: .7rem; }
  .principles-list { display: block; margin-top: 3.5rem; }
  .principle { grid-template-columns: 2.5rem 1fr; padding: 1.4rem 0 1.7rem; }
  .principle:nth-last-child(-n+2) { border-bottom: 0; }
  .principle:last-child { border-bottom: 1px solid var(--line); }
  .principle h3 { font-size: 2rem; }
  .consultation-intro > p:last-of-type { margin-top: 1.3rem; }
  .price-list { margin-top: 3.5rem; }
  .price-list > div { grid-template-columns: 1fr; gap: .35rem; }
  .price-list dd { font-size: 1.3rem; }
  .faq-list { margin-top: 3.5rem; }
  .faq-list summary { padding: 1.4rem 3.2rem 1.4rem 0; font-size: 1.75rem; }
  .faq-list details > div { padding-right: 0; }
  .lawyer-heading h2 { font-size: clamp(4rem, 18vw, 6.4rem); }
  .lawyer-photo { min-height: 28rem; margin-top: 3.5rem; }
  .lawyer-profile { margin-top: 2.7rem; }
  .lawyer-profile > p { font-size: 1.06rem; }
  .profile-facts { margin-top: 2rem; }
  .profile-facts > div { grid-template-columns: 1fr; gap: .4rem; }
  .contact-cta { min-height: 37rem; }
  .contact-cta::before { inset: .7rem; }
  .cta-inner { padding: 5.5rem 0; }
  .cta-inner h2 { font-size: clamp(3.25rem, 15.2vw, 6rem); }
  .cta-actions { align-items: flex-start; flex-direction: column; gap: 1.6rem; margin-top: 2.2rem; }
  .cta-statue { top: 3rem; right: -12rem; width: 28rem; opacity: .13; }
  .contact-list { display: block; }
  .contact-item { min-height: auto; padding: 1.2rem 0 1.8rem; }
  .contact-item p { margin-bottom: .9rem; }
  .contact-map { margin-top: 2.6rem; }
  .contact-map-heading { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .contact-map-heading h3 { font-size: 2.25rem; }
  .contact-map-frame { min-height: 24rem; }
  .contact-identifiers { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
  .contact-identifiers a { margin-left: 0; grid-column: 1 / -1; margin-top: .35rem; }
  .contact-page .contact-form-section { padding-top: calc(var(--header-height) + 3.5rem); }
  .contact-form-grid { display: block; }
  .contact-form-intro { position: static; }
  .contact-form-intro h1, .thank-you-card h1 { font-size: clamp(3.6rem, 15vw, 5.5rem); }
  .contact-form-direct { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
  .form-panel { margin-top: 3.5rem; padding: 1.35rem; }
  .thank-you-main { padding: .7rem; }
  .thank-you-card { padding: 2rem 1.4rem; }
  .blog-hero { padding-top: calc(var(--header-height) + 4rem); }
  .blog-hero h1 { font-size: clamp(6rem, 32vw, 10rem); }
  .blog-rule { align-items: flex-end; flex-direction: column-reverse; gap: 1rem; }
  .blog-rule::before { flex: none; width: 100%; }
  .site-footer { padding-top: 3rem; }
  .footer-top { display: grid; gap: 2.7rem; padding-bottom: 2.7rem; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
  .footer-bottom { display: grid; gap: .55rem; }
}

/* 16. Accessibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal, .js .hero-reveal { opacity: 1; transform: none; }
  .js .hero-brand-mark.hero-reveal, .js .hero-brand-mark.hero-reveal.is-revealed { transform: translateX(-50%); }
  .js .hero-title .title-line > span, .js .hero-title .title-line > em { transform: none; }
}
