/* PRAVAH stylesheet — consolidated 2026-09-18.
   Prior rounds of edits had left ~120 duplicate/overridden declarations
   scattered through the file (same selector redeclared 2-6x at the same
   nesting level, with only the last one actually taking effect). This pass
   merged every such group into one rule, verified property-by-property
   against the original file so the computed styles are unchanged for every
   selector in every media context. Cross-selector cascade order and every
   media query boundary are untouched. */

* {box-sizing: border-box;
}

html, body {margin: 0; min-width: 1101px;
}

body {background: var(--navy-deep); font-family: var(--sans);
}

/* Reset WordPress core block defaults that would otherwise fight the
   precise vw-based spacing throughout this file — margins on
   wp-block-group/image/buttons, and the editor's own default gaps. */
.wp-block-group, .wp-block-buttons, figure.wp-block-image {
  margin: 0;
}
.wp-block-image img { display: block; max-width: 100%; }
.wp-block-navigation-item, .wp-block-navigation-item__content {
  margin: 0;
}
/* ===================================================================
   Site header — replaces the old custom .site-nav with the native
   WordPress Navigation block, restyled to match. This is the one part
   of the port that couldn't be tested in a live browser — if anything
   here looks off on staging, it's the first place to check.
   =================================================================== */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 5vw;
  color: var(--white);
  background: rgba(2, 31, 50, .94);
  border-bottom: 1px solid rgba(211, 161, 70, .12);
  transition: height 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.site-header.is-compact {
  height: 4.1vw;
  background: rgba(2, 31, 50, .985);
  border-bottom-color: rgba(211, 161, 70, .28);
}

.site-header .wp-block-site-logo {
  width: 10.2vw;
  transition: width 280ms ease;
}
.site-header.is-compact .wp-block-site-logo {
  width: 8.8vw;
}
.site-header .wp-block-site-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Nav links — desktop inline state */
.site-header__nav {
  flex-grow: 1;
}
.site-header__nav .wp-block-navigation__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35vw;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav .wp-block-navigation-item__content {
  position: relative;
  display: inline-block;
  padding: .7vw 0;
  color: rgba(255, 252, 245, .82);
  font-size: clamp(11px, .73vw, 13px);
  font-weight: 400;
  letter-spacing: .025em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header__nav .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .3vw;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}
.site-header__nav .wp-block-navigation-item__content:hover,
.site-header__nav .wp-block-navigation-item__content:focus-visible {
  color: var(--gold-light);
}
.site-header__nav .wp-block-navigation-item__content.is-active {
  color: var(--gold-light);
}
.site-header__nav .wp-block-navigation-item__content.is-active::after {
  transform: scaleX(1);
}

/* Mobile hamburger toggle — WP renders this as .wp-block-navigation__responsive-container-open */
.site-header__nav .wp-block-navigation__responsive-container-open {
  display: none;
}

.site-header__cta {
  flex: 0 0 auto;
}
.site-header__cta .wp-block-button__link {
  min-height: 2.55vw;
  padding: 0 1.05vw !important;
  font-size: clamp(11px, .72vw, 13px) !important;
}

@media (max-width: 1100px) {
  .site-header,
  .site-header.is-compact {
    height: auto;
    min-height: 76px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .site-header .wp-block-site-logo,
  .site-header.is-compact .wp-block-site-logo {
    width: 118px;
  }
  .site-header__cta {
    display: none;
  }

  /* Show the native hamburger button, styled to match the old square
     gold-bordered toggle. */
  .site-header__nav .wp-block-navigation__responsive-container-open {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(211, 161, 70, .45);
    border-radius: 4px;
    background: transparent;
  }
  .site-header__nav .wp-block-navigation__responsive-container-open svg,
  .site-header__nav .wp-block-navigation__responsive-container-close svg {
    stroke: var(--gold);
    fill: var(--gold);
  }

  /* Off-canvas panel — WP's overlay container, restyled to slide in from
     the right instead of its default centered-modal look. */
  .site-header__nav .wp-block-navigation__responsive-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 90;
    width: min(80vw, 320px);
    height: 100vh;
    margin: 0;
    padding: 24px 28px 32px;
    background: var(--navy-deep);
    border-left: 1px solid rgba(211, 161, 70, .22);
    transform: translateX(100%);
    transition: transform 280ms ease;
    opacity: 1;
  }
  .site-header__nav .wp-block-navigation__responsive-container.is-menu-open {
    transform: translateX(0);
  }
  .site-header__nav .wp-block-navigation__responsive-container .wp-block-navigation__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 40px;
  }
  .site-header__nav .wp-block-navigation-item {
    width: 100%;
  }
  .site-header__nav .wp-block-navigation__responsive-container .wp-block-navigation-item__content {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 252, 245, .1);
    font-size: 16px;
    color: rgba(255, 252, 245, .9);
  }
  .site-header__nav .wp-block-navigation__responsive-container-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(211, 161, 70, .45);
    border-radius: 4px;
    background: transparent;
  }
  /* Dim backdrop WP renders behind the open overlay */
  .wp-block-navigation__responsive-container.is-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(2, 31, 50, .55);
  }
}

.hero {position: relative;
  min-height: 64vw;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero__copy {position: relative;
  z-index: 3;
  width: 52%;
  padding: 5vw 0 5.2vw 4.8vw;
}

h1 {max-width: 48vw;
  margin: 0;
  font-family: var(--display-serif);
  font-size: 5.24vw;
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.02em;
}

h1 em {color: var(--gold); font-style: normal;
}

.ornament {position: relative;
  width: 20.4vw;
  height: .8vw;
  margin-top: 2.45vw;
  border-top: 1px solid var(--gold);
}

.ornament i {position: absolute;
  top: -.3vw;
  left: 49.5%;
  width: .58vw;
  height: .58vw;
  border-radius: 50%;
  background: var(--pravah-turquoise);
}

.hero__message > p {width: 36vw;
  margin: 2.35vw 0 3.4vw;
  font-size: 1.42vw;
  line-height: 1.68;
}

.hero__contacts {display: flex; gap: 1vw;
}

.contact-pill,
.contact-pill .wp-block-button__link {min-height: 5.27vw;
  padding: 0 1.64vw;
  border: 1px solid;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: .91vw;
  color: inherit;
  font-size: 1.3vw;
  text-decoration: none;
}

.contact-pill span,
.contact-pill .wp-block-button__link {font-size: 1.69vw; line-height: 1;
}

.contact-pill--gold,
.contact-pill--gold .wp-block-button__link {border-color: var(--gold); color: var(--gold-light);
}

.hero__cta:hover, .hero__cta:focus-visible {background: var(--gold); color: var(--navy-deep);
}

.hero__mandala {position: absolute;
  z-index: 1;
  right: -28.5vw;
  bottom: -22vw;
  width: 68vw;
  height: 68vw;
  overflow: hidden;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.hero__mandala img {width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services__heading h2 em {color: var(--pravah-turquoise);
  font-style: normal;
}

.services__ornament {position: relative;
  width: 14.2vw;
  height: .7vw;
  margin: 2vw 0 1.55vw;
  border-top: 1px solid var(--gold);
}

.services__ornament i {position: absolute;
  top: -.27vw;
  left: 49%;
  width: .5vw;
  height: .5vw;
  border-radius: 50%;
  background: var(--pravah-turquoise);
}

.service:last-child {border-bottom: 1px solid rgba(2, 31, 50, .15);
}

.closing h2 em {color: var(--gold-light);
  font-style: normal;
}

.closing__ornament {position: relative;
  width: 17vw;
  height: .7vw;
  margin: 2.25vw 0 1.8vw;
  border-top: 1px solid var(--gold);
}

.closing__ornament i {position: absolute;
  top: -.27vw;
  left: 49%;
  width: .5vw;
  height: .5vw;
  border-radius: 50%;
  background: var(--pravah-turquoise);
}

.closing__contact:hover,
.closing__contact:focus-visible {color: var(--gold-light);
}

.closing__icon--email {border: 1.4px solid currentColor;
}

.closing__icon--email::before {left: .12vw;
  transform: rotate(34deg);
}

.closing__icon--email::after {right: .12vw;
  transform: rotate(-34deg);
}

.site-footer p {margin: 0;
  display: flex;
  align-items: center;
  gap: 1.05vw;
  color: rgba(255, 253, 251, .76);
  font-size: .86vw;
  letter-spacing: .03em;
}

.site-footer strong {color: var(--gold-light);
  font-weight: 500;
  letter-spacing: .17em;
}

.site-footer i {width: .3vw;
  height: .3vw;
  border-radius: 50%;
  background: var(--gold);
}

.section-label {margin: 0 0 1.35vw;
  color: var(--gold);
  font-size: .82vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label--dark {color: var(--gold-light);
}

.services__heading > p.section-label {font-size: .82vw;
}

.section-ornament {position: relative;
  width: 13.4vw;
  height: .7vw;
  margin: 2vw 0 1.65vw;
  border-top: 1px solid var(--gold);
}

.section-ornament i {position: absolute;
  top: -.27vw;
  left: 49%;
  width: .5vw;
  height: .5vw;
  border-radius: 50%;
  background: var(--pravah-turquoise);
}

.section-ornament--dark {border-top-color: rgba(211, 161, 70, .86);
}

.about-pravah {padding: 5.6vw 5.3vw 5.9vw;
  display: grid;
  grid-template-columns: 41.5% 51.5%;
  gap: 7%;
  align-items: center;
  color: var(--navy-deep);
  background: #f4eee7;
}

.about-pravah__portrait img {width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% center;
}

.about-pravah__editorial {min-width: 0;
}

.about-pravah h2,
.ai-law h2,
.workshops h2,
.personal h2 {margin: 0;
  font-family: var(--display-serif);
  font-weight: 400;
  letter-spacing: -.018em;
}

.about-pravah h2 {max-width: 48vw;
  font-size: 3.8vw;
  line-height: 1.02;
}

.about-pravah h2 em,
.workshops h2 em,
.personal h2 em {color: var(--pravah-turquoise);
  font-style: normal;
}

.about-pravah__copy {max-width: 45vw;
  color: rgba(2, 31, 50, .82);
  font-size: 1.02vw;
  line-height: 1.78;
}

.about-pravah__copy p {margin: 0 0 .92vw;
}

.about-pravah__copy strong {color: var(--navy-deep);
  font-weight: 500;
}

.editorial-principle__icon svg {width: 77%;
  height: 77%;
}

.services__heading > p {max-width: 56vw;
  margin: 0;
  color: rgba(2, 31, 50, .8);
  font-size: 1.03vw;
  line-height: 1.8;
}

.service p {max-width: 32vw;
  margin: 0;
  color: rgba(2, 31, 50, .72);
  font-size: .91vw;
  line-height: 1.72;
}

.ai-law h2 em {color: var(--pravah-turquoise);
  font-style: normal;
}

.ai-law__copy p {margin: 0 0 1.2vw;
}

.workshops__content > div > p {margin: 0 0 1.2vw;
  color: rgba(2, 31, 50, .82);
  font-size: 1.03vw;
  line-height: 1.84;
}

.ai-law__image img {width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 45% center;
}

.workshops__content {display: grid;
  grid-template-columns: 47% 47%;
  gap: 6%;
  align-items: center;
}

.personal h2 {max-width: 52vw;
  font-size: 4.05vw;
  line-height: 1.02;
}

.proof-grid {margin-top: 1.1vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@keyframes flow-reveal {
  to {stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice {transition: none;
  }

  .reveal,
  .reveal-stagger > *,
  .gold-line-animate,
  .gold-line-animate i,
  .personal__manifesto.gold-line-animate-v::before,
  .image-reveal {transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .card-hover,
  .card-hover::after {transition: none !important;
  }

  .image-parallax,
  .hero-mandala-parallax {transform: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .service,
  .proof {position: relative;
    transition: background-color 300ms ease;
  }

  .service h3,
  .proof > span,
  .proof h3 {transition: color 300ms ease, opacity 300ms ease, font-weight 300ms ease;
  }

  .proof > span {opacity: .72;
  }

  .service:hover {background: rgba(211, 161, 70, .038);
  }

  .service:hover::before,
  .proof:hover::before {transform: scaleX(1);
  }

  .service:hover .service__number,
  .proof:hover > span {color: var(--gold);
    opacity: 1;
  }

  .service::before,
  .proof::before {content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--turquoise-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
  }

  .proof:hover {background: rgba(33, 100, 106, .12);
  }

  .proof:hover h3 {color: var(--turquoise-dark);
  }

  .service:hover h3 {font-weight: 400;
  }

  .editorial-principle {position: relative;
    overflow: hidden;
  }

  .editorial-principle::before {content: "";
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--turquoise-light));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms ease;
  }

  .editorial-principle:hover::before {transform: scaleX(1);
  }

  .editorial-principle:hover .editorial-principle__icon {color: var(--turquoise-light);
    border-color: var(--gold);
    transform: translateY(-1px);
  }

  .service__icon,
  .proof__icon {opacity: .82;
  }

  .service:hover .service__icon {color: var(--turquoise-light);
    opacity: 1;
    transform: translateY(-1px);
  }

  .proof:hover .proof__icon {color: var(--turquoise-dark);
    opacity: 1;
  }

  .editorial-principle:hover {background: rgba(255, 253, 251, .78);
  border-color: rgba(211, 161, 70, .72);
  box-shadow: 0 9px 24px rgba(2, 31, 50, .08), 0 0 0 1px rgba(211, 161, 70, .12);
  transform: translateY(-2px);
  }

  .personal__proofs .proof:hover {background: rgba(89, 163, 169, .06);
  }

  .personal__proofs .proof:hover h3,
  .personal__proofs .proof:hover .proof__icon {color: var(--gold-light);
  }
}

:root {--navy: #032a42;
  --navy-deep: #021f32;
  --gold: #d3a146;
  --gold-light: #edbd66;
  --pravah-turquoise: var(--turquoise-light);
  --white: #fffdfb;
  --serif: "EB Garamond", serif;
  --display-serif: "EB Garamond", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --turquoise-light: #2e7e84;
  --turquoise-dark: #21646a;
}

html {scroll-behavior: smooth;
}

section[id] {scroll-margin-top: 5.4vw;
}

body,
button,
input,
textarea,
select {font-family: var(--sans);
}

/* NOTE on the selectors below: .primary-cta is applied two different ways —
   directly on a raw element (the contact form's submit <button>), and as
   the className on a WordPress Button block, where WP puts the class on
   the OUTER wrapping <div>, not the visible <a class="wp-block-button__link">
   inside it. Both forms are targeted throughout so the gold pill + shine +
   arrow render correctly either way. */

.primary-cta::before,
.primary-cta .wp-block-button__link::before {content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, .3) 48%, transparent 78%);
  transform: translateX(-125%);
  transition: transform 480ms cubic-bezier(.22, .61, .36, 1);
}

.primary-cta::after,
.primary-cta .wp-block-button__link::after {content: "→";
  position: relative;
  z-index: 1;
  margin-left: .72em;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 260ms ease;
}

.primary-cta > span,
.primary-cta .wp-block-button__link {position: relative;
  z-index: 1;
}

.primary-cta:hover::before,
.primary-cta:focus-visible::before,
.primary-cta .wp-block-button__link:hover::before,
.primary-cta .wp-block-button__link:focus-visible::before {transform: translateX(125%);
}

.primary-cta:hover::after,
.primary-cta:focus-visible::after,
.primary-cta .wp-block-button__link:hover::after,
.primary-cta .wp-block-button__link:focus-visible::after {transform: translateX(.22em);
}

.hero .ornament i,
.ai-law .section-ornament i,
.closing__ornament i {background: var(--turquoise-dark);
}

.hero h1 em,
.ai-law h2 em,
.closing h2 em {color: var(--turquoise-dark);
}

.about-pravah h2 em,
.services h2 em,
.workshops h2 em,
.personal h2 em,
.personal__manifesto p:last-child {color: var(--turquoise-light);
}

.about-pravah__copy,
  .services__heading > p:not(.section-label),
  .service p,
  .ai-law__copy,
  .workshops__content > div > p,
  .personal__copy,
  .proof p,
  .closing__message p {font-size: clamp(15.5px, 1.02vw, 17px);
  line-height: 1.78;
}

.service h3 {margin: 0 0 .64vw;
  color: var(--navy-deep);
  font-size: clamp(21px, 1.5vw, 27px);
  font-weight: 400;
  line-height: 1.22;
  font-family: var(--display-serif);
  letter-spacing: 0;
  text-transform: none;
}

.ai-law__image img,
.workshops__image img {object-position: center;
}

.proof > span {color: var(--gold);
  font-size: clamp(11px, .78vw, 13px);
  font-weight: 500;
  letter-spacing: .12em;
}

.proof:nth-child(3n + 2),
.proof:nth-child(3n + 3) {border-left: 1px solid rgba(2, 31, 50, .12);
  border-left-color: rgba(211, 161, 70, .22);
}

.proof p {margin: 0;
  color: rgba(255, 252, 245, .76);
  line-height: 1.72;
}

.site-footer a {color: rgba(255, 252, 245, .72);
  text-decoration: none;
  transition: color 220ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {color: var(--gold-light);
}

.about-pravah__portrait {height: 40vw;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.about-pravah__meaning strong {display: block;
  margin-bottom: .62vw;
  color: var(--gold-light);
  font-family: var(--display-serif);
  font-size: clamp(24px, 1.85vw, 33px);
  font-weight: 400;
  line-height: 1.12;
}

.about-pravah__meaning p {max-width: 34vw;
  margin: 0;
  font-size: clamp(14px, .9vw, 16px);
  line-height: 1.62;
}

.about-pravah__principles {margin-top: 2.5vw;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15vw 1.25vw;
}

.editorial-principle__icon {width: 3.35vw;
  height: 3.35vw;
  border: 1px solid rgba(211, 161, 70, .82);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  border-color: rgba(211, 161, 70, .95);
  border-width: 1px;
  transition: color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.editorial-principle h3 {margin: .08vw 0 .45vw;
  font-size: clamp(12px, .83vw, 14px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .045em;
  text-transform: uppercase;
  margin-top: .05vw;
}

.editorial-principle p {margin: 0;
  color: rgba(2, 31, 50, .72);
  font-size: clamp(13px, .88vw, 15px);
  line-height: 1.58;
}

.service {min-height: 9.1vw;
  padding: 1.5vw 0 1.75vw;
  display: grid;
  grid-template-columns: 3.7vw minmax(0, 1fr);
  gap: 1.15vw;
  border-top: 1px solid rgba(2, 31, 50, .15);
}

.service__icon,
.proof__icon {color: var(--gold);
  display: grid;
  place-items: center;
  transition: color 300ms ease, transform 300ms ease, opacity 300ms ease;
}

.service__icon {width: 2.9vw;
  height: 2.9vw;
  margin-top: .05vw;
}

.service__icon svg,
.proof__icon svg {width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.ai-law h2 {max-width: 48vw;
  font-size: 3.65vw;
  line-height: 1.04;
}

.ai-law__copy {max-width: 44vw;
  color: rgba(255, 253, 251, .82);
  line-height: 1.84;
}

.workshops h2 {font-size: 3.65vw;
  line-height: 1.03;
}

.personal__copy p:nth-child(3),
.personal__copy p:nth-child(5) {max-width: 43.5vw;
  margin-left: 1.55vw;
  padding-left: 1.45vw;
  border-left: 1px solid rgba(211, 161, 70, .58);
}

.proof {min-height: 13vw;
  padding: 1.8vw 2.2vw 2vw;
  border-top: 1px solid rgba(2, 31, 50, .15);
  border-top-color: rgba(211, 161, 70, .34);
  padding-top: 1.55vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof__icon {width: 2.65vw;
  height: 2.65vw;
}

.proof h3 {margin: 1.05vw 0 .62vw;
  font-size: .95vw;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 1vw;
}

.services__heading > p:not(.section-label):not(.services__lead) {margin-bottom: 0;
}

.personal__copy {max-width: 48vw;
  color: rgba(2, 31, 50, .82);
  line-height: 1.84;
}

.personal__copy p,
.personal__copy p:nth-child(3),
.personal__copy p:nth-child(5) {max-width: 46vw;
  margin: 0;
  padding: 0;
  border-left: 0;
}

.personal__opening {color: var(--navy-deep);
  font-weight: 500;
}

.personal__pull + p {max-width: 44vw;
  margin-bottom: 2.25vw;
}

.personal__manifesto p {margin: 0 0 .28vw;
  margin-bottom: .38vw;
}

.personal__proofs {grid-column: 1 / -1;
  margin: 4.35vw -6.4vw 0 -8vw;
  padding: 4.15vw 8vw 3.3vw;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(211, 161, 70, .34);
}

.personal__proofs .proof-grid {margin-top: 0;
}

.personal__proofs .proof {border-color: rgba(211, 161, 70, .32);
}

.personal__proofs .proof h3 {color: var(--white);
}

.personal__proofs .proof p {color: rgba(255, 253, 251, .74);
}

.personal__proofs .proof__icon {color: var(--gold);
}

.feature-cta,
.feature-cta .wp-block-button__link {min-height: 3.15vw;
  margin-top: 1.55vw;
  padding: 0 1.25vw;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, .8vw, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-decoration: none;
}

.primary-cta,
.primary-cta .wp-block-button__link {position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: var(--gold) !important;
  color: var(--navy-deep) !important;
  background: var(--gold) !important;
  transition: color 260ms ease, border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  box-shadow: 0 0 0 rgba(2, 31, 50, 0);
}

.primary-cta:hover,
.primary-cta:focus-visible,
.primary-cta .wp-block-button__link:hover,
.primary-cta .wp-block-button__link:focus-visible {color: var(--navy-deep) !important;
  background: #c99537 !important;
  transform: translateY(-2px);
  border-color: #c18c2e !important;
  box-shadow: 0 8px 20px rgba(2, 31, 50, .2);
}

.closing {position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.closing__message {padding-right: 7vw;
  padding: .45vw 0 0;
}

.closing__message p {max-width: 34vw;
  margin: 0;
  color: rgba(255, 253, 251, .82);
  line-height: 1.86;
}

.closing__panel {position: relative;
  z-index: 2;
  padding-left: 3.8vw;
  border-left: 1px solid rgba(211, 161, 70, .54);
}

.contact-form {display: grid;
  gap: 1.15vw;
}

.contact-form__grid {display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15vw;
}

.contact-form label:not(.contact-form__consent) {display: grid;
  gap: .42vw;
  color: rgba(255, 253, 251, .72);
  font-size: clamp(11px, .7vw, 12px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form label small {font-size: .9em;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {width: 100%;
  border: 1px solid rgba(211, 161, 70, .38);
  border-radius: 2px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 253, 251, .035);
  font-size: clamp(14px, .9vw, 16px);
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.contact-form input:not([type="checkbox"]) {min-height: 3.1vw;
  padding: .65vw .8vw;
}

.contact-form textarea {min-height: 7.7vw;
  padding: .75vw .8vw;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {border-color: var(--gold);
  background: rgba(255, 253, 251, .055);
  box-shadow: 0 0 0 2px rgba(211, 161, 70, .1);
}

.contact-form__honeypot {position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__consent {display: flex;
  align-items: flex-start;
  gap: .65vw;
  color: rgba(255, 253, 251, .68);
  font-size: clamp(12px, .76vw, 13.5px);
  line-height: 1.5;
}

.contact-form__consent input {width: 1vw;
  height: 1vw;
  margin-top: .17vw;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.contact-form__turnstile {min-height: 65px;
}

.contact-form__submit {width: fit-content;
  min-height: 3.25vw;
  padding: 0 1.35vw;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(12px, .8vw, 14px);
  font-weight: 400;
}

.contact-form__status,
.contact-form__note {margin: 0;
  color: rgba(255, 253, 251, .58);
  font-size: clamp(11px, .72vw, 13px);
  line-height: 1.5;
}

.personal__career {max-width: 44vw;
  margin: 0 0 2.45vw;
  padding-left: 1.45vw;
  border-left: 1px solid rgba(211, 161, 70, .58);
  padding: .25vw 0 .25vw 1.5vw;
}

.personal__career p {margin: 0;
}

.personal__approach {max-width: 43.5vw;
  color: rgba(2, 31, 50, .72);
}

.personal__portrait img {width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 25% top;
}

.closing__botanical img {display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__message {margin-top: 7.25vw;
  transform: none;
}

.hero__eyebrow,
.hero__message > p.hero__eyebrow {width: auto;
  margin: 0 0 1.15vw;
  display: flex;
  align-items: center;
  gap: .85vw;
  color: rgba(237, 189, 102, .88);
  font-size: clamp(11px, .74vw, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero__eyebrow span {width: 3.7vw;
  border-top: 1px solid rgba(211, 161, 70, .78);
}

.hero .ornament {margin-top: 2.05vw;
}

.hero__message > p:not(.hero__eyebrow) {margin-top: 1.85vw;
  margin-bottom: 2.75vw;
}

.editorial-principle {padding-top: 1.35vw;
  display: grid;
  grid-template-columns: 3.35vw minmax(0, 1fr);
  gap: 1.05vw;
  border-top: 1px solid rgba(2, 31, 50, .14);
  min-height: 7.1vw;
  padding: 1.22vw 1.15vw 1.25vw;
  border-top-color: rgba(211, 161, 70, .82);
  background: rgba(255, 253, 251, .62);
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
  border: 1px solid rgba(211, 161, 70, .38);
  box-shadow: 0 4px 14px rgba(2, 31, 50, .035);
}

.services {min-height: 0;
  padding: 5.9vw 8vw 6.1vw;
  color: var(--navy-deep);
  background: #fbf8f3;
  padding-top: 5vw;
  padding-bottom: 5.55vw;
}

.services__heading h2 {max-width: 61vw;
  margin: 0;
  font-family: var(--display-serif);
  font-size: 4.05vw;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.018em;
}

.services__heading > p.services__lead {max-width: 46vw;
  margin-top: .82vw;
  color: rgba(2, 31, 50, .62);
  font-family: var(--sans);
  font-size: clamp(15.5px, 1.02vw, 17px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .055em;
}

.services__grid {margin-top: 2.15vw;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 7vw;
}

/* Unwrap the column divs so all 6 service cards become direct grid children,
   sharing row tracks -- otherwise each column's dividers line up
   independently and drift out of alignment with the other column whenever
   card text wraps to a different number of lines. Applies at every width
   where the grid is two columns (tablet and desktop); harmless at the
   single-column mobile width since it just stacks the same cards in the
   same order. */
.services__column {
  display: contents;
}

.personal {padding: 5.7vw 6.4vw 6vw 8vw;
  display: grid;
  grid-template-columns: 60% 34%;
  gap: 6%;
  align-items: start;
  color: var(--navy-deep);
  background: #f2ebe3;
  padding-top: 5.35vw;
  padding-bottom: 0;
  overflow: hidden;
}

.personal__copy,
.personal__intro,
.personal__pull,
.personal__career,
.personal__approach,
.personal__copy p,
.personal__copy p:nth-child(3),
.personal__copy p:nth-child(5) {width: 100%;
  max-width: 46vw !important;
}

.personal__copy p {margin: 0 0 1.05vw;
  position: relative;
  max-width: 46vw;
  margin-bottom: 1.55vw;
  text-align: justify;
  text-justify: inter-word;
}

.personal__intro {max-width: 44vw;
  margin-bottom: 1.15vw;
}

.personal__intro p + p {margin-top: 0;
}

.personal__approach p + p {margin-top: 1.05vw;
}

.personal__pull {display: block;
  margin-bottom: .72vw;
  color: var(--gold);
  font-family: var(--display-serif);
  font-size: clamp(23px, 1.55vw, 28px) !important;
  font-weight: 400;
  line-height: 1.32 !important;
  max-width: 40vw !important;
  margin: .35vw 0 1.2vw !important;
  padding: 0 !important;
  border-left: 1px solid var(--gold) !important;
  border: 0 !important;
  text-align: left !important;
}

.personal__career,
.personal__approach {margin: 1.05vw 0 0;
  padding: 0;
  border: 0;
  color: rgba(2, 31, 50, .82);
}

.personal__manifesto {max-width: 44vw;
  margin-top: 2.15vw;
  padding-top: 1.8vw;
  border-top: 0;
  font-family: var(--display-serif);
  font-size: clamp(27px, 1.92vw, 35px);
  line-height: 1.22;
  padding: .25vw 0 .35vw 1.65vw;
  border-left: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
}

.personal__manifesto p,
.personal__manifesto p:last-child {margin: 0 0 .34vw;
  color: inherit;
}

.personal__manifesto p:last-child {color: #2e7e84;
  margin-top: .6vw;
  font-size: 1.45em;
  font-style: italic;
}

.personal__portrait {height: 42vw;
  margin: 3.3vw 0 0;
  overflow: hidden;
  margin-top: 2.25vw;
  position: relative;
}

.workshops {padding: 4.4vw 8vw;
  color: var(--navy-deep);
  background: #f7f1ea;
  padding-top: 3.35vw;
  padding-bottom: 3.35vw;
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
}

.workshops__image {height: 23vw;
  margin: 0;
  overflow: hidden;
}

.workshops__image img {width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 14%;
}

.ai-law {padding: 5.9vw 7.2vw 6.1vw 8vw;
  display: grid;
  grid-template-columns: 54% 40%;
  gap: 6%;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding-top: 3.1vw;
  padding-bottom: 3.1vw;
}

.ai-law__image {height: 22.5vw;
  margin: 0;
  overflow: hidden;
}

.closing__main {position: relative;
  z-index: 2;
  min-height: 0;
  padding: 5vw 8vw 4.2vw;
  display: grid;
  grid-template-columns: 42% 51%;
  align-items: start;
  gap: 7%;
  padding-top: 4.5vw;
  padding-bottom: 3.35vw;
}

.closing h2 {margin: 0;
  font-family: var(--display-serif);
  font-size: 3.8vw;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
  max-width: 37vw;
}

.closing__message > p {max-width: 35vw;
}

.closing__contacts {min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.05vw;
  border-left: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 1.45vw;
  max-width: 32vw;
  margin-top: 2vw;
}

.closing__icon {position: relative;
  width: 1.8vw;
  height: 1.8vw;
  flex: 0 0 2.15vw;
  color: var(--gold);
  flex-basis: 1.8vw;
  border: 0;
  background-color: transparent;
}

.closing__icon svg {width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.closing__icon--email::before,
.closing__icon--email::after {content: none;
  position: absolute;
  top: .31vw;
  width: 1.04vw;
  border-top: 1.4px solid currentColor;
}

.closing__icon--email i {position: absolute;
  right: .3vw;
  bottom: .27vw;
  left: .3vw;
  height: .5vw;
  border-right: 1px solid var(--pravah-turquoise);
  border-left: 1px solid var(--pravah-turquoise);
  transform: skewY(-26deg);
  display: none;
}

.closing__icon--phone {border: 0;
  background: url("assets/phone-handset.svg") center / 72% 72% no-repeat;
  background-size: 78% 78%;
}

.site-footer {position: relative;
  z-index: 2;
  height: 7.25vw;
  margin: 0 8vw;
  border-top: 1px solid rgba(211, 161, 70, .45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing__botanical {position: absolute;
  z-index: 0;
  right: .35vw;
  bottom: .2vw;
  width: 21.5vw;
  height: 24.5vw;
  opacity: .28;
  pointer-events: none;
  overflow: visible;
}

@media (max-width: 1100px) {
  html,
  body {min-width: 0;
  }

  section[id] {scroll-margin-top: 88px;
  }

  .hero {min-height: min(600px, 100svh);
  }

  .hero__copy {width: 100%;
    padding: 154px 24px 48px;
  }

  .hero__message {margin-top: 0;
  }

  .hero__eyebrow,
  .hero__message > p.hero__eyebrow {margin-bottom: 18px;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .12em;
    white-space: nowrap;
  }

  .hero__eyebrow span {width: 28px;
  }

  h1 {max-width: 100%;
    font-size: clamp(48px, 13vw, 62px);
    line-height: .98;
  }

  h1 span {white-space: normal !important;
  }

  .hero .ornament {width: 33vw;
    height: 10px;
    margin-top: 26px;
  }

  .hero__message > p:not(.hero__eyebrow) {width: min(100%, 420px);
    margin: 24px 0 30px;
    font-size: 17px;
    line-height: 1.65;
  }

  .contact-pill,
.contact-pill .wp-block-button__link {min-height: 54px;
    padding: 0 20px;
    font-size: 17px;
  }

  .contact-pill span,
.contact-pill .wp-block-button__link {font-size: 17px;
  }

  .hero__mandala {right: -45vw;
    bottom: -45vw;
    width: 90vw;
    height: 90vw;
    opacity: .5;
  }

  .about-pravah,
  .workshops__content,
  .ai-law,
  .closing__main {display: grid;
    grid-template-columns: 1fr;
  }

  .personal {display: flex;
    flex-direction: column;
  }

  .about-pravah,
  .services,
  .personal,
  .workshops,
  .ai-law,
  .closing__main {padding: 64px 24px;
  }

  .about-pravah__portrait,
  .personal__portrait {height: auto;
    margin: 36px 0 0;
    order: 2;
  }

  .about-pravah__editorial {order: 1;
  }

  .about-pravah__portrait img,
  .personal__portrait img,
  .workshops__image img,
  .ai-law__image img {height: auto;
    object-fit: contain;
  }

  .personal__content {order: 1;
  }

  .personal__proofs {order: 3;
    margin: 48px -24px -64px;
    padding: 48px 24px;
  }

  .personal__copy,
  .personal__intro,
  .personal__pull,
  .personal__career,
  .personal__approach,
  .personal__copy p,
  .personal__copy p:nth-child(3),
  .personal__copy p:nth-child(5),
  .personal__manifesto {max-width: none !important;
  }

  .personal__copy p {margin-bottom: 16px;
    text-align: left;
  }

  .personal__pull {margin: 18px 0 !important;
    font-size: 24px !important;
  }

  .personal__manifesto {margin-top: 28px;
    padding-left: 18px;
    font-size: 27px;
  }

  .personal__copy,
  .personal__opening,
  .personal__career,
  .personal__approach {color: rgba(2, 31, 50, .82);
    font-weight: 400;
  }

  .services__grid,
  .proof-grid,
  .contact-form__grid {grid-template-columns: 1fr;
  }

  .workshops__content > div,
  .ai-law__content {order: 1;
  }

  .workshops__image,
  .ai-law__image {height: auto;
  margin: 34px 0 0;
  order: 2;
  }

  .closing__message > p,
  .closing__contacts,
  .closing h2 {max-width: none;
  }

  .closing__panel {margin-top: 16px;
    padding: 0;
    border-left: 0;
  }

  .closing__contacts {margin-top: 30px;
    gap: 14px;
  }

  .closing__contact {min-height: 46px;
    font-size: 16px;
  }

  .site-footer {height: auto;
    min-height: 120px;
    margin: 0 24px;
    padding: 28px 0;
  }

  .site-footer p {flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
  }

  .service p {max-width: none;
  }

  .about-pravah__meaning p {max-width: none;
  }

  .services__heading > p.services__lead {max-width: none;
  }

  .about-pravah h2,
  .services__heading h2,
  .personal h2,
  .workshops h2,
  .ai-law h2,
  .closing h2 {max-width: none;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .about-pravah__copy,
  .about-pravah__copy p {max-width: none;
  }

  .section-label {font-size: 12px;
  }

  .services__heading > p.section-label {font-size: 12px;
  }

  .proof h3 {font-size: 15px;
  }

  .editorial-principle__icon {width: 34px;
    height: 34px;
  }

  .service__icon {width: 30px;
    height: 30px;
  }

  .proof__icon {width: 28px;
    height: 28px;
  }

  .closing__icon {width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .proof:nth-child(3n + 2),
  .proof:nth-child(3n + 3) {border-left: 0;
  }

  .editorial-principle {grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px;
  }

  .service {grid-template-columns: 30px 1fr;
    gap: 14px;
  }

  .services__grid {gap: 0;
  }

  .services__column:not(:last-child) .service:last-child {border-bottom: 0;
  }

  .section-ornament,
  .services__ornament,
  .closing__ornament {width: 33vw;
    height: 2px;
    margin: 20px 0 18px;
  }

  .section-ornament i,
  .services__ornament i,
  .closing__ornament i {top: -3px;
    width: 6px;
    height: 6px;
  }

  .feature-cta,
.feature-cta .wp-block-button__link {min-height: 54px;
    margin-top: 24px;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
  }

  .contact-form__submit {min-height: 54px;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
  }

  .contact-form__turnstile {min-height: 40px;
  }

  .ai-law__copy {max-width: none;
  }

  .contact-form__consent {gap: 10px;
    font-size: 14px;
  }

  .contact-form__consent input {width: 18px;
    height: 18px;
    margin-top: 1px;
  }

  .cookie-notice {left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cookie-notice button {align-self: flex-end;
  }
}

.about-pravah__meaning {position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 4vw 1.8vw 1.65vw;
  color: rgba(255, 253, 251, .9);
  background: linear-gradient(
    to bottom,
    rgba(2, 31, 50, 0) 0%,
    rgba(2, 31, 50, .58) 24%,
    rgba(2, 31, 50, .84) 58%,
    rgba(2, 31, 50, .92) 100%
  );
}

.closing__contact {position: relative;
  width: 100%;
  min-width: 0;
  padding: 0 0 1.15vw;
  display: flex;
  align-items: center;
  gap: .85vw;
  color: var(--white);
  border-bottom: 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1.03vw, 18px);
  line-height: 1.3;
  text-decoration: none;
  padding-bottom: .65vw;
}

@media (min-width: 1101px) {
  .hero {min-height: 56vw;
  }

  /* Now that .services__column is display:contents at every width, the two
     bottom-row cards each pick up their own border-bottom (from the base
     .service:last-child rule) instead of one full-width edge -- matches
     the tablet breakpoint's treatment of the same shared-row layout. */
  .service:last-child {
    border-bottom: 0;
  }

  .hero__eyebrow,
  .hero__message > p.hero__eyebrow {font-size: clamp(12px, .84vw, 14.5px);
  }

  .personal {grid-template-columns: 59% 35%;
    gap: 6%;
  }

  .personal__copy,
  .personal__intro,
  .personal__pull,
  .personal__career,
  .personal__approach,
  .personal__copy p,
  .personal__copy p:nth-child(3),
  .personal__copy p:nth-child(5) {max-width: 49.5vw !important;
  }

  .personal__copy,
  .personal__opening,
  .personal__career,
  .personal__approach {font-family: var(--sans);
    font-size: clamp(15.5px, 1.02vw, 17px);
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: 0;
    color: rgba(2, 31, 50, .82);
  }

  .personal__copy p {margin-bottom: .82vw;
    text-align: justify;
    text-justify: inter-word;
  }

  .personal__opening {font-weight: 400;
  }

  .personal__intro {margin-bottom: .75vw;
  }

  .personal__pull {max-width: 46.5vw !important;
    margin: .35vw 0 .9vw !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--display-serif) !important;
    font-size: clamp(22px, 1.46vw, 27px) !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
  }

  .personal__career,
  .personal__approach {margin: 0;
    padding: 0;
    border: 0;
  }

  .personal__manifesto {max-width: 46vw;
    margin-top: 1.55vw;
    padding: .25vw 0 .35vw 1.65vw;
    border-left: 1px solid var(--gold);
    color: #b5822c;
    background: transparent;
    font-size: clamp(27px, 1.85vw, 34px);
    line-height: 1.22;
  }

  .personal__manifesto p:last-child {color: inherit;
    font-size: 1.1em;
    font-style: italic;
  }

  .personal__portrait {height: auto;
    min-height: 36.5vw;
    margin-top: 2.15vw;
    margin-bottom: 0;
    align-self: stretch;
  }

  .personal__portrait img {object-position: 25% top;
  }

  .personal__proofs {margin-top: 3.2vw;
    margin-bottom: 40px;
    padding-top: 3.65vw;
    padding-bottom: clamp(48px, 4.2vw, 90px);
  }

  .personal__proofs .proof {min-height: clamp(130px, 13vw, 210px);
    padding: 24px 2.2vw;
  }

  .closing__contacts {gap: 1.45vw;
  }

  .closing__contact {padding-bottom: 0;
  }
}

.cookie-notice {position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  padding: 12px 16px;
  background: rgba(2, 31, 50, .94);
  color: rgba(255, 253, 251, .82);
  border: 1px solid rgba(211, 161, 70, .3);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.cookie-notice.is-visible {opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-notice p {margin: 0;
}

.cookie-notice a {color: var(--gold-light, #edbd66);
  text-decoration: underline;
}

.cookie-notice button {flex: 0 0 auto;
  border: 1px solid rgba(211, 161, 70, .55);
  background: transparent;
  color: rgba(255, 253, 251, .92);
  font: inherit;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cookie-notice button:hover,
.cookie-notice button:focus-visible {background: rgba(211, 161, 70, .16);
  border-color: rgba(211, 161, 70, .85);
}

@media (min-width: 641px) and (max-width: 1100px) {
  .services__grid {grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
  }

  .service:last-child {border-bottom: 0;
  }

  .proof-grid {grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof:nth-child(3n + 2),
  .proof:nth-child(3n + 3) {border-left: 0;
  }

  .proof:nth-child(odd) {border-left: 0;
  }

  .proof:nth-child(even) {border-left: 1px solid rgba(2, 31, 50, .12);
  }

  .personal__proofs {margin-bottom: 32px;
  }
}

@media (min-width: 1600px) {
  h1 {font-size: 84px;
  }

  .hero__message > p:not(.hero__eyebrow) {font-size: 22px;
  }

  .about-pravah h2,
  .services__heading h2,
  .personal h2,
  .workshops h2,
  .ai-law h2,
  .closing h2 {font-size: clamp(28px, 3.8vw, 64px);
  }
}

.js-motion .reveal,
.js-motion .reveal-stagger > * {opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-stagger.is-visible > * {opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) {transition-delay: 0ms;
}

.reveal-stagger.is-visible > *:nth-child(2) {transition-delay: 80ms;
}

.reveal-stagger.is-visible > *:nth-child(3) {transition-delay: 160ms;
}

.reveal-stagger.is-visible > *:nth-child(4) {transition-delay: 240ms;
}

.reveal-stagger.is-visible > *:nth-child(5) {transition-delay: 320ms;
}

.reveal-stagger.is-visible > *:nth-child(6) {transition-delay: 400ms;
}

.js-motion .gold-line-animate {transform: scaleX(0);
  transform-origin: left;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gold-line-animate.is-visible {transform: scaleX(1);
}

.js-motion .gold-line-animate i {opacity: 0;
  transition: opacity 280ms ease 620ms;
}

.gold-line-animate.is-visible i {opacity: 1;
}

.personal__manifesto.gold-line-animate-v {position: relative;
  border-left: none !important;
}

.personal__manifesto.gold-line-animate-v::before {content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
}

.js-motion .personal__manifesto.gold-line-animate-v::before {transform: scaleY(0);
  transform-origin: top;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.personal__manifesto.gold-line-animate-v.is-visible::before {transform: scaleY(1);
}

.js-motion .image-reveal {opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-reveal.is-visible {opacity: 1;
  transform: scale(1);
}

.image-parallax,
.hero-mandala-parallax {will-change: transform;
}

.card-hover {position: relative;
  transition: background-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-hover::after {content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.card-hover:hover,
.card-hover:focus-within {transform: translateY(-2px);
}

.card-hover:hover::after,
.card-hover:focus-within::after {width: 100%;
}

.editorial-principle.card-hover:hover,
.editorial-principle.card-hover:focus-within {background: rgba(255, 253, 251, .85);
  border-color: rgba(211, 161, 70, .9);
}

.editorial-principle.card-hover:hover .editorial-principle__icon,
.editorial-principle.card-hover:focus-within .editorial-principle__icon {border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211, 161, 70, .12);
}

.service.card-hover:hover,
.service.card-hover:focus-within {background: rgba(2, 31, 50, .035);
}

.service.card-hover:hover .service__icon,
.service.card-hover:focus-within .service__icon {color: var(--pravah-turquoise);
  border-color: currentColor;
}

.proof.card-hover:hover,
.proof.card-hover:focus-within {background: rgba(255, 255, 255, .05);
}

.personal__proofs .proof.card-hover:hover .proof__icon,
.personal__proofs .proof.card-hover:focus-within .proof__icon {color: var(--gold-light);
}
/* ===================================================================
   Generic page template (index.html) — used for ordinary WP Pages such
   as Politika zasebnosti / Splošni pogoji poslovanja. Keeps the same
   design language (fonts, colors, content width) as the one-page sections
   above without needing a dedicated pattern for every legal/basic page.
   =================================================================== */
.generic-page {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(5vw + 64px) 24px 96px;
  color: var(--navy-deep);
  background: #faf6f0;
}
.generic-page .wp-block-post-title {
  font-family: var(--display-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .3em;
}
.generic-page h2 {
  font-family: var(--display-serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--navy-deep);
  margin: 2.4em 0 .6em;
  padding-top: .5em;
  border-top: 1px solid rgba(2, 31, 50, .12);
}
.generic-page h2:first-child { border-top: 0; padding-top: 0; margin-top: .4em; }
.generic-page p { margin: 0 0 1em; line-height: 1.7; }
.generic-page ul { margin: 0 0 1em; padding-left: 1.3em; }
.generic-page a { color: var(--turquoise-dark); }
.generic-page strong { color: var(--navy-deep); }

@media (max-width: 1100px) {
  .generic-page { padding-top: 112px; }
}
