@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Libre+Caslon+Display&display=swap");

:root {
  --ink: #0a0e14;
  --ink-soft: #111923;
  --navy: #182a3a;
  --navy-light: #243c4f;
  --cream: #f1ece3;
  --cream-deep: #e7dfd2;
  --paper: #f8f5ef;
  --wine: #6c2630;
  --wine-dark: #48151e;
  --bronze: #c39a70;
  --bronze-soft: #d8b991;
  --white: #fff;
  --muted: #71777c;
  --line: rgba(19, 31, 43, .16);
  --line-dark: rgba(255, 255, 255, .14);
  --container: 1360px;
  --serif: "Libre Caslon Display", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--wine);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  transform: none;
}

.topline {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  height: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.topline__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topline__phone {
  transition: color .25s ease;
}

.topline__phone:hover {
  color: var(--white);
}

.language-switcher {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher button {
  border: 0;
  padding: 2px 4px;
  color: inherit;
  background: none;
  font-size: 10px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: color .2s ease;
}

.language-switcher button.is-active {
  color: var(--bronze-soft);
}

.site-header {
  position: absolute;
  z-index: 25;
  top: 36px;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: transform .45s var(--ease), background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(10, 14, 20, .94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.header__inner {
  height: 94px;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 32px;
}

.wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wordmark--image {
  width: 156px;
  height: 104px;
  justify-content: center;
}

.wordmark--image img {
  width: auto;
  height: 102px;
  object-fit: contain;
  transition: filter .3s ease, opacity .3s ease;
}

.site-header:not(.is-scrolled) .wordmark--image img {
  filter: brightness(0) invert(1);
}

.wordmark--footer {
  width: 180px;
  height: 150px;
  justify-content: flex-start;
}

.wordmark--footer img {
  height: 142px;
  filter: brightness(0) invert(1);
  opacity: .88;
}

.wordmark__symbol {
  position: relative;
  width: 43px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-top-width: 3px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
}

.wordmark__symbol::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 4px;
  width: 33px;
  height: 8px;
  border-top: 1px solid currentColor;
  transform: skew(-28deg);
}

.wordmark__symbol::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -5px;
  left: -4px;
  border-bottom: 1px solid currentColor;
}

.wordmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark__text strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .09em;
}

.wordmark__text small {
  margin-top: 7px;
  font-size: 8px;
  letter-spacing: .43em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.7vw, 46px);
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  letter-spacing: .05em;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-current {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.desktop-nav__whatsapp {
  padding-left: 13px;
  color: var(--bronze-soft);
}

.desktop-nav a.desktop-nav__whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .12);
  transform: translateY(-50%);
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .32);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.header-cta:hover {
  color: var(--ink);
  border-color: var(--bronze-soft);
  background: var(--bronze-soft);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  color: currentColor;
  background: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::after {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 18px;
}

.mobile-nav {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 30px clamp(24px, 8vw, 70px);
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, visibility .35s ease, transform .5s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  letter-spacing: .18em;
  font-family: var(--serif);
}

.menu-close {
  border: 0;
  color: rgba(255, 255, 255, .65);
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-nav nav {
  display: grid;
  margin: auto 0;
}

.mobile-nav nav a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding: 12px 0;
}

.mobile-nav nav span {
  color: var(--bronze);
  font-size: 10px;
}

.mobile-nav nav strong {
  font-family: var(--serif);
  font-size: clamp(32px, 9vw, 54px);
  font-weight: 400;
  line-height: 1.1;
}

.mobile-nav__phone {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: var(--bronze-soft);
  letter-spacing: .08em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroScale 1.8s var(--ease) both;
}

@keyframes heroScale {
  from { opacity: .65; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .93) 0%, rgba(5, 8, 12, .82) 33%, rgba(5, 8, 12, .18) 66%, rgba(5, 8, 12, .16) 100%),
    linear-gradient(0deg, rgba(5, 8, 12, .6), transparent 45%);
}

.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent calc(25% - .5px), rgba(255, 255, 255, .08) 25%, transparent calc(25% + .5px), transparent calc(50% - .5px), rgba(255, 255, 255, .08) 50%, transparent calc(50% + .5px), transparent calc(75% - .5px), rgba(255, 255, 255, .08) 75%, transparent calc(75% + .5px));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 96px;
}

.hero__copy {
  width: min(680px, 57%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--bronze-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.1vw, 106px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--bronze-soft);
  font-style: italic;
}

.hero__intro {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 25px;
  border: 1px solid transparent;
  background: var(--wine);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.button::after {
  content: "↗";
  font-size: 17px;
  font-weight: 300;
}

.button:hover {
  color: var(--ink);
  background: var(--bronze-soft);
  transform: translateY(-2px);
}

.button--line {
  border-color: rgba(255, 255, 255, .3);
  background: transparent;
}

.button--line:hover {
  border-color: var(--bronze-soft);
}

.button--dark {
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}

.text-link::after {
  content: "→";
  font-size: 18px;
}

.text-link:hover {
  color: var(--bronze-soft);
  border-color: var(--bronze-soft);
}

.hero__index {
  position: absolute;
  right: 40px;
  bottom: 44px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.hero__stamp {
  position: absolute;
  z-index: 3;
  right: clamp(46px, 5vw, 96px);
  top: 180px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 185, 145, .42);
  border-radius: 50%;
  color: var(--bronze-soft);
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -.05em;
  opacity: .8;
}

.hero__stamp::after {
  content: "PARTHENON · HUKUK ·";
  position: absolute;
  inset: 8px;
  display: grid;
  place-items: start center;
  border: 1px dashed rgba(216, 185, 145, .22);
  border-radius: 50%;
  padding-top: 5px;
  font-family: var(--sans);
  font-size: 6px;
  letter-spacing: .19em;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section--cream {
  background: var(--cream);
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.65fr);
  gap: 80px;
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  color: var(--wine);
}

.section--dark .section-heading .eyebrow,
.section--navy .section-heading .eyebrow {
  color: var(--bronze-soft);
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.1vw, 78px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.section-title em {
  color: var(--wine);
  font-weight: 400;
}

.section--dark .section-title em,
.section--navy .section-title em {
  color: var(--bronze-soft);
}

.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #5d6265;
  font-size: 16px;
  line-height: 1.8;
}

.section--dark .lead,
.section--navy .lead {
  color: rgba(255, 255, 255, .62);
}

.principle-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: end;
}

.principle-copy {
  padding-left: 9vw;
}

.principle-copy p {
  color: #62676a;
  font-size: 16px;
  line-height: 1.85;
}

.brand-portrait {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 65px;
  overflow: hidden;
  background: #e9e7e3;
}

.brand-portrait::before,
.brand-portrait::after {
  content: "";
  position: absolute;
  background: var(--line);
}

.brand-portrait::before {
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 1px;
}

.brand-portrait::after {
  top: 50%;
  left: 40px;
  right: 40px;
  height: 1px;
}

.brand-portrait img {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  mix-blend-mode: multiply;
}

.brand-portrait__number {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 20px;
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1;
  color: rgba(24, 42, 58, .13);
}

.values {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.value {
  display: grid;
  grid-template-columns: 100px .65fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.value span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 15px;
}

.value h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.value p {
  margin: 0;
  color: #656a6c;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.practice-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease);
}

.practice-card:hover {
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-5px);
}

.practice-card--wide {
  grid-column: span 2;
}

.practice-card__number {
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: .18em;
}

.practice-card h3 {
  max-width: 300px;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.15;
}

.practice-card p {
  min-height: 78px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
}

.practice-card:hover p {
  color: #666b6e;
}

.practice-card .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.practice-card:hover .card-link {
  border-color: var(--line);
}

.method {
  overflow: hidden;
}

.method::after {
  content: "Π";
  position: absolute;
  right: 0;
  bottom: -180px;
  color: rgba(255, 255, 255, .035);
  font-family: var(--serif);
  font-size: 700px;
  line-height: 1;
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 110px;
}

.method-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.method-intro .section-title {
  font-size: clamp(42px, 4.5vw, 68px);
}

.method-steps {
  counter-reset: method;
}

.method-step {
  counter-increment: method;
  position: relative;
  padding: 42px 0 42px 78px;
  border-top: 1px solid var(--line-dark);
}

.method-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.method-step::before {
  content: "0" counter(method);
  position: absolute;
  top: 48px;
  left: 0;
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: .12em;
}

.method-step h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, .57);
}

.languages-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  min-height: 510px;
  overflow: hidden;
}

.languages-band__visual {
  position: relative;
  height: 100%;
  min-height: 510px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--cream-deep);
}

.languages-band__visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(24, 42, 58, .23);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(24, 42, 58, .035), 0 0 0 110px rgba(24, 42, 58, .025);
}

.languages-band__visual strong {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: -.08em;
}

.languages-band__copy {
  padding: 80px 10vw;
}

.languages-band__copy .section-title {
  font-size: clamp(40px, 4.2vw, 66px);
}

.consultation {
  overflow: hidden;
}

.consultation__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}

.consultation__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60%;
  width: 1px;
  background: var(--line);
}

.consultation__copy .section-title {
  max-width: 820px;
}

.consultation__action {
  position: relative;
  z-index: 1;
}

.consultation__action p {
  margin: 0 0 30px;
  color: #656a6d;
}

.site-footer {
  color: var(--white);
  background: #070a0e;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.3fr .65fr .8fr;
  gap: 90px;
  padding-top: 88px;
  padding-bottom: 72px;
}

.wordmark--footer {
  color: var(--bronze-soft);
}

.footer__brand p {
  max-width: 420px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .55);
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer__nav h3,
.footer__contact h3 {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__contact a,
.footer__contact span {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  transition: color .2s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line-dark);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  letter-spacing: .04em;
}

.agency-credit a {
  color: rgba(216, 185, 145, .64);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  min-width: 172px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 21px 0 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(18, 102, 72, .96);
  box-shadow: 0 16px 42px rgba(5, 39, 28, .3);
  backdrop-filter: blur(14px);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, .28);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .3s ease, transform .3s ease;
}

.floating-whatsapp:hover {
  background: #16875e;
  box-shadow: 0 20px 50px rgba(5, 39, 28, .38);
  transform: translateY(-4px);
}

.floating-whatsapp:hover::before {
  opacity: 1;
  transform: scale(1);
}

.floating-whatsapp__icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
}

.floating-whatsapp__icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.floating-whatsapp__icon path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.floating-whatsapp__icon path:last-child {
  fill: currentColor;
}

/* Inner pages */
.inner-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 220px 0 105px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 35%, rgba(195, 154, 112, .18), transparent 25%),
    linear-gradient(135deg, transparent 60%, rgba(108, 38, 48, .17)),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, .055) 25%);
}

.inner-hero::after {
  content: attr(data-number);
  position: absolute;
  right: 4vw;
  bottom: -90px;
  color: rgba(255, 255, 255, .035);
  font-family: var(--serif);
  font-size: clamp(260px, 35vw, 520px);
  line-height: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero__content {
  max-width: 1020px;
}

.inner-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.inner-hero__lead {
  max-width: 650px;
  margin: 30px 0 0 auto;
  padding-left: 32px;
  border-left: 1px solid var(--bronze);
  color: rgba(255, 255, 255, .66);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
}

.manifesto-copy p {
  max-width: 670px;
  margin: 0 0 22px;
  color: #5f6467;
  font-size: 16px;
  line-height: 1.85;
}

.manifesto-quote {
  align-self: start;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.manifesto-quote .section-title {
  font-size: clamp(34px, 3.2vw, 48px);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.principle-card {
  min-height: 260px;
  padding: 35px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle-card span {
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: .15em;
}

.principle-card h3 {
  margin: 64px 0 10px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.principle-card p {
  margin: 0;
  color: rgba(255, 255, 255, .57);
}

.identity-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.identity-logo {
  min-height: 550px;
  display: grid;
  place-items: center;
  padding: 60px;
  background: #ebe9e5;
}

.identity-logo img {
  width: min(100%, 520px);
  mix-blend-mode: multiply;
}

.identity-copy .section-title {
  font-size: clamp(42px, 4.6vw, 68px);
}

.draft-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 185, 145, .35);
  color: var(--bronze-soft);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.draft-notice::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px .8fr 1.2fr;
  gap: 50px;
  align-items: start;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.service-row__number {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 18px;
}

.service-row h2 {
  max-width: 380px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.service-row__copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-row__copy p {
  max-width: 650px;
  margin: 0;
  color: #62676a;
}

.insights-stage {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.insights-stage__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
  background: var(--cream);
}

.insights-stage__message .section-title {
  font-size: clamp(46px, 5.2vw, 76px);
}

.insights-stage__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--navy);
}

.topic-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 335px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.topic-card span {
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: .13em;
}

.topic-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-detail {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.contact-detail p {
  margin: 0;
  color: #62676a;
}

.form-panel {
  padding: clamp(30px, 5vw, 68px);
  color: var(--white);
  background: var(--navy);
}

.form-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 400;
}

.form-panel > p {
  max-width: 580px;
  margin: 16px 0 36px;
  color: rgba(255, 255, 255, .6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
}

.field {
  position: relative;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .23);
  border-radius: 0;
  padding: 11px 0;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: border-color .2s ease;
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--bronze-soft);
}

.checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.checkbox input {
  margin-top: 4px;
  accent-color: var(--bronze);
}

.booking-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.booking-aside {
  position: sticky;
  top: 130px;
}

.booking-aside__card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.booking-aside__card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.booking-aside__card p {
  margin: 0;
  color: #64696b;
}

.booking-embed {
  display: none;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.booking-embed.is-live {
  display: block;
}

.booking-embed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 22px;
}

.booking-embed__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.booking-embed__head a {
  color: var(--wine);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-embed iframe {
  width: 100%;
  min-height: 800px;
  border: 0;
}

.booking-fallback[hidden] {
  display: none;
}

.booking-fallback .form-panel {
  background: var(--ink-soft);
}

/* V2 editorial first viewport */
body[data-page="home"] .topline {
  color: rgba(10, 14, 20, .66);
  border-color: rgba(10, 14, 20, .12);
}

body[data-page="home"] .site-header:not(.is-scrolled) {
  color: var(--ink);
}

body[data-page="home"] .site-header:not(.is-scrolled) .wordmark--image img {
  filter: none;
}

body[data-page="home"] .site-header:not(.is-scrolled) .desktop-nav a {
  color: rgba(10, 14, 20, .7);
}

body[data-page="home"] .site-header:not(.is-scrolled) .desktop-nav a:hover,
body[data-page="home"] .site-header:not(.is-scrolled) .desktop-nav a.is-current {
  color: var(--wine);
}

body[data-page="home"] .site-header:not(.is-scrolled) .header-cta {
  color: var(--cream);
  border-color: var(--wine-dark);
  background: var(--wine-dark);
}

body[data-page="home"] .site-header:not(.is-scrolled) .header-cta:hover {
  color: var(--cream);
  background: var(--wine);
}

body[data-page="home"] .hero {
  min-height: max(780px, 100svh);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, .72), transparent 30%),
    linear-gradient(105deg, var(--paper), var(--cream) 65%);
  border-bottom: 1px solid var(--line);
}

body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body[data-page="home"] .hero__content {
  padding-top: 155px;
  padding-bottom: 76px;
}

body[data-page="home"] .hero__copy {
  width: 51%;
  max-width: 700px;
}

body[data-page="home"] .hero h1 {
  max-width: 690px;
  font-size: clamp(61px, 5.25vw, 91px);
  line-height: .93;
}

body[data-page="home"] .hero h1 .accent {
  color: var(--wine);
}

body[data-page="home"] .hero__intro {
  max-width: 550px;
  color: #575c5f;
}

body[data-page="home"] .hero__actions {
  margin-top: 34px;
}

body[data-page="home"] .hero .text-link {
  color: var(--ink);
  border-color: rgba(10, 14, 20, .32);
}

body[data-page="home"] .hero .text-link:hover {
  color: var(--wine);
  border-color: var(--wine);
}

body[data-page="home"] .hero__media {
  top: 132px;
  right: 0;
  bottom: 52px;
  left: auto;
  width: 51.5%;
  overflow: visible;
}

body[data-page="home"] .hero__media::after {
  display: none;
}

.hero__portrait-frame {
  position: absolute;
  inset: 0 72px 0 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(24, 32, 40, .16);
}

.hero__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .18), transparent 42%),
    linear-gradient(0deg, rgba(5, 8, 12, .62), transparent 38%);
}

body[data-page="home"] .hero__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(.78) contrast(1.03);
}

.hero__photo-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .65);
  font-size: 7px;
  letter-spacing: .2em;
}

.hero__photo-caption strong {
  font-size: inherit;
  font-weight: 500;
}

.hero__file-card {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: -47px;
  width: 205px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  color: var(--ink);
  border: 1px solid rgba(10, 14, 20, .17);
  background: rgba(248, 245, 239, .92);
  box-shadow: 0 18px 50px rgba(10, 14, 20, .14);
  backdrop-filter: blur(12px);
}

.hero__file-card small,
.hero__file-card span {
  font-size: 7px;
  letter-spacing: .19em;
}

.hero__file-card small {
  color: var(--wine);
}

.hero__file-card strong {
  margin: 6px 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.hero__file-card span {
  color: #6d7173;
}

.hero__year {
  position: absolute;
  z-index: 3;
  top: 43%;
  right: 24px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 13px;
}

.hero__year i {
  width: 1px;
  height: 35px;
  background: rgba(72, 21, 30, .4);
}

body[data-page="home"] .hero__lines {
  z-index: 1;
  background-image:
    linear-gradient(90deg, transparent calc(5% - .5px), rgba(10, 14, 20, .08) 5%, transparent calc(5% + .5px)),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(10, 14, 20, .08) 50%, transparent calc(50% + .5px));
}

body[data-page="home"] .hero__stamp {
  top: 158px;
  right: 76px;
  width: 98px;
  height: 98px;
  color: rgba(248, 245, 239, .76);
  border-color: rgba(248, 245, 239, .4);
  font-size: 24px;
}

body[data-page="home"] .hero__stamp::after {
  border-color: rgba(248, 245, 239, .2);
}

body[data-page="home"] .hero__index {
  right: 25px;
  bottom: 60px;
  color: rgba(10, 14, 20, .46);
}

.brand-portrait img,
.identity-logo img {
  width: min(100%, 330px);
  max-height: 320px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.brand-portrait {
  background:
    radial-gradient(circle at center, rgba(195, 154, 112, .13), transparent 45%),
    #e9e7e3;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero__copy {
    width: min(700px, 70%);
  }

  .hero__stamp {
    display: none;
  }

  .principle-grid,
  .method-grid,
  .manifesto-grid,
  .identity-grid,
  .contact-grid {
    gap: 60px;
  }

  .principle-copy {
    padding-left: 0;
  }

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

  .consultation__inner {
    grid-template-columns: 1fr .75fr;
    gap: 60px;
  }

  .footer__main {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .topline {
    height: 32px;
  }

  .topline__inner {
    justify-content: space-between;
  }

  .site-header {
    top: 32px;
  }

  .site-header.is-scrolled {
    top: 0;
  }

  .header__inner {
    height: 78px;
  }

  .wordmark__symbol {
    width: 36px;
    height: 34px;
    font-size: 19px;
  }

  .wordmark__symbol::before {
    top: -7px;
    width: 27px;
  }

  .wordmark__text strong {
    font-size: 18px;
  }

  .wordmark__text small {
    font-size: 6px;
  }

  .hero {
    min-height: 830px;
    align-items: flex-end;
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(5, 8, 12, .97) 0%, rgba(5, 8, 12, .78) 48%, rgba(5, 8, 12, .14) 100%),
      linear-gradient(90deg, rgba(5, 8, 12, .68), transparent);
  }

  .hero__content {
    padding-top: 200px;
    padding-bottom: 60px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(51px, 14vw, 78px);
  }

  .hero__intro {
    max-width: 620px;
  }

  .hero__index {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading,
  .principle-grid,
  .method-grid,
  .manifesto-grid,
  .identity-grid,
  .contact-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 50px;
  }

  .principle-grid {
    gap: 50px;
  }

  .brand-portrait {
    min-height: 400px;
    padding: 38px;
  }

  .value {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .value p {
    grid-column: 2;
  }

  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .practice-card {
    min-height: 330px;
    padding: 26px;
  }

  .method-intro,
  .booking-aside {
    position: static;
  }

  .languages-band {
    grid-template-columns: 1fr;
  }

  .languages-band__visual {
    min-height: 390px;
  }

  .languages-band__copy {
    padding: 70px 8vw;
  }

  .consultation__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .consultation__inner::before {
    display: none;
  }

  .footer__main {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inner-hero {
    min-height: 600px;
    padding: 190px 0 80px;
  }

  .inner-hero__lead {
    margin-left: 0;
  }

  .identity-logo {
    min-height: 420px;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
    gap: 24px;
  }

  .service-row__copy {
    grid-column: 2;
  }

  .insights-stage {
    grid-template-columns: 1fr;
  }

  .insights-stage__message {
    min-height: 460px;
  }

  .booking-layout {
    gap: 35px;
  }

  .booking-embed__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topline__phone span {
    display: none;
  }

  .menu-toggle span {
    display: none;
  }

  .hero {
    min-height: 790px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .section-title {
    font-size: clamp(39px, 12vw, 58px);
  }

  .value {
    grid-template-columns: 40px 1fr;
  }

  .practice-grid,
  .principles-grid,
  .insights-stage__topics {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: 300px;
  }

  .practice-card--wide {
    grid-column: auto;
  }

  .languages-band__visual {
    min-height: 330px;
  }

  .languages-band__visual::before {
    width: 240px;
    height: 240px;
  }

  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 56px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .inner-hero {
    min-height: 570px;
  }

  .inner-hero__lead {
    padding-left: 18px;
  }

  .manifesto-quote {
    padding: 30px;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full,
  .checkbox {
    grid-column: auto;
  }

  .form-panel {
    padding: 28px 20px;
  }
}

/* V2 responsive editorial hero */
@media (max-width: 820px) {
  .wordmark--image {
    width: 122px;
    height: 88px;
  }

  .wordmark--image img {
    height: 84px;
  }

  body[data-page="home"] .hero {
    min-height: 1050px;
    align-items: start;
  }

  body[data-page="home"] .hero__media {
    top: 126px;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    height: 340px;
  }

  body[data-page="home"] .hero__portrait-frame {
    inset: 0;
  }

  body[data-page="home"] .hero__portrait-frame img {
    object-position: 63% center;
  }

  body[data-page="home"] .hero__content {
    width: min(calc(100% - 36px), var(--container));
    padding-top: 510px;
    padding-bottom: 64px;
  }

  body[data-page="home"] .hero__copy {
    width: 100%;
    max-width: none;
  }

  body[data-page="home"] .hero h1 {
    max-width: 690px;
    font-size: clamp(50px, 12.7vw, 68px);
    line-height: .95;
  }

  body[data-page="home"] .hero__intro {
    max-width: 620px;
  }

  body[data-page="home"] .hero__file-card,
  body[data-page="home"] .hero__year,
  body[data-page="home"] .hero__stamp,
  body[data-page="home"] .hero__index {
    display: none;
  }

  body[data-page="home"] .hero__photo-caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  body[data-page="home"] .hero__lines {
    opacity: .65;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .hero {
    min-height: 1080px;
  }

  body[data-page="home"] .hero__media {
    height: 315px;
  }

  body[data-page="home"] .hero__content {
    padding-top: 480px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(48px, 13.8vw, 59px);
  }

  body[data-page="home"] .hero__intro {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* V3 premium system */
.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

body[data-page="home"] .hero {
  --hero-x: 0px;
  --hero-y: 0px;
  --card-x: 0px;
  --card-y: 0px;
}

body[data-page="home"] .hero__portrait-frame {
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}

body[data-page="home"] .hero__file-card {
  transform: translate3d(var(--card-x), var(--card-y), 0);
  transition: transform 1.15s var(--ease), box-shadow .4s ease;
}

body[data-page="home"] .hero__file-card:hover {
  box-shadow: 0 24px 70px rgba(10, 14, 20, .22);
}

body[data-page="home"] .hero__stamp::after {
  animation: parthenonSeal 28s linear infinite;
}

@keyframes parthenonSeal {
  to { transform: rotate(360deg); }
}

.prestige-rail {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--ink);
}

.prestige-rail::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 154, 112, .5), transparent);
}

.prestige-rail__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.prestige-rail__item {
  min-height: 108px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 19px;
  padding: 22px 34px;
  border-left: 1px solid var(--line-dark);
  transition: color .35s ease, background .35s ease;
}

.prestige-rail__item:last-child {
  border-right: 1px solid var(--line-dark);
}

a.prestige-rail__item:hover {
  color: var(--ink);
  background: var(--bronze-soft);
}

.prestige-rail__item > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 185, 145, .4);
  border-radius: 50%;
  color: var(--bronze-soft);
  font-family: var(--serif);
  font-size: 12px;
}

a.prestige-rail__item:hover > span {
  color: var(--wine);
  border-color: rgba(108, 38, 48, .35);
}

.prestige-rail__item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prestige-rail__item strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .01em;
}

.prestige-rail__item small {
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

a.prestige-rail__item:hover small {
  color: rgba(10, 14, 20, .58);
}

.principle-grid {
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
}

.brand-portrait--architecture {
  min-height: 660px;
  display: block;
  padding: 0;
  background: var(--ink);
}

.brand-portrait--architecture > .brand-portrait__photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.72) contrast(1.04);
}

.brand-portrait--architecture::before {
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(4, 7, 10, .78), rgba(4, 7, 10, .05) 68%), linear-gradient(0deg, rgba(4, 7, 10, .6), transparent 48%);
}

.brand-portrait--architecture::after {
  z-index: 1;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .16);
  background: none;
}

.brand-portrait__mark {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 42px;
  width: 190px;
  height: 165px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(8, 12, 17, .55);
  backdrop-filter: blur(12px);
}

.brand-portrait__mark img {
  width: auto;
  height: 122px;
  filter: brightness(0) invert(1);
  opacity: .88;
}

.brand-portrait--architecture .brand-portrait__number {
  z-index: 3;
  right: 38px;
  bottom: 22px;
  color: rgba(255, 255, 255, .18);
  font-size: 132px;
}

.principle-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0 14px;
}

.values {
  margin-top: 58px;
}

.value {
  position: relative;
  overflow: hidden;
  transition: padding-left .4s var(--ease), background .35s ease;
}

.value::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--wine);
  transform: scaleY(0);
  transition: transform .4s var(--ease);
}

.value:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, .28);
}

.value:hover::after {
  transform: scaleY(1);
}

.practice-card {
  position: relative;
  overflow: hidden;
  background: #0a0e14;
}

.practice-card:nth-child(even) {
  background: #0d141d;
}

.practice-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(195, 154, 112, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(195, 154, 112, .025), 0 0 0 70px rgba(195, 154, 112, .018);
  transition: transform .65s var(--ease), border-color .35s ease;
}

.practice-card:hover::before {
  border-color: rgba(108, 38, 48, .22);
  transform: scale(1.18);
}

.practice-card > * {
  position: relative;
  z-index: 1;
}

.practice-card h3 {
  font-size: 34px;
}

.method {
  background:
    linear-gradient(90deg, rgba(24, 42, 58, .96), rgba(24, 42, 58, .9)),
    url("../img/parthenon-architecture.webp") center / cover;
  background-attachment: fixed;
}

.method-step {
  transition: padding-left .4s var(--ease), background .35s ease;
}

.method-step:hover {
  padding-left: 94px;
  background: rgba(255, 255, 255, .035);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .17), transparent 80%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

@media (max-width: 820px) {
  .prestige-rail__inner {
    grid-template-columns: 1fr;
  }

  .prestige-rail__item {
    min-height: 88px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .brand-portrait--architecture {
    min-height: 520px;
  }

  .brand-portrait__mark {
    bottom: 28px;
    left: 28px;
  }

  .principle-copy {
    padding: 0;
  }

  .method {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .prestige-rail__item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 18px 20px;
  }

  .brand-portrait--architecture {
    min-height: 430px;
  }

  .brand-portrait--architecture::after {
    inset: 18px;
  }

  .brand-portrait__mark {
    bottom: 20px;
    left: 20px;
    width: 145px;
    height: 125px;
  }

  .brand-portrait__mark img {
    height: 92px;
  }

  .brand-portrait--architecture .brand-portrait__number {
    right: 22px;
    font-size: 88px;
  }

  .value:hover {
    padding-left: 0;
    background: transparent;
  }
}

/* Office, professional profile and location */
.office-about {
  position: relative;
  overflow: hidden;
}

.office-about::after {
  content: "P";
  position: absolute;
  right: -1vw;
  bottom: -150px;
  color: rgba(24, 42, 58, .035);
  font-family: var(--serif);
  font-size: clamp(360px, 43vw, 690px);
  line-height: 1;
  pointer-events: none;
}

.office-about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: start;
}

.office-about__heading {
  position: sticky;
  top: 150px;
}

.office-about__heading .section-title {
  max-width: 560px;
  font-size: clamp(42px, 4.5vw, 68px);
}

.office-about__year {
  display: block;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--wine);
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -.03em;
}

.office-about__copy {
  columns: 2;
  column-gap: 46px;
}

.office-about__copy p {
  break-inside: avoid;
  margin: 0 0 30px;
  color: #535b60;
  font-size: 15px;
  line-height: 1.86;
}

.office-about__copy p:first-child {
  color: var(--ink);
  font-size: 17px;
}

.professional-about {
  overflow: hidden;
}

.professional-about__grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(70px, 8vw, 125px);
  align-items: start;
}

.professional-about__gallery {
  position: sticky;
  top: 130px;
  min-height: 760px;
}

.professional-about__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(24, 32, 40, .16);
}

.professional-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-about__photo--primary {
  inset: 0 25% 42px 0;
}

.professional-about__photo--primary img {
  object-position: 54% center;
  filter: saturate(.7) contrast(.98);
}

.professional-about__photo--secondary {
  z-index: 2;
  top: 105px;
  right: 0;
  width: 42%;
  height: 500px;
  border: 12px solid var(--cream);
}

.professional-about__photo--secondary img {
  object-position: 53% center;
  filter: contrast(.95);
}

.professional-about__index {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 11px 15px;
  color: var(--cream);
  background: var(--wine-dark);
  font-size: 9px;
  letter-spacing: .16em;
}

.professional-about__copy .section-title {
  font-size: clamp(43px, 4.5vw, 68px);
}

.professional-about__role {
  margin: 18px 0 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.professional-about__biography {
  max-width: 590px;
}

.professional-about__biography p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(24, 42, 58, .1);
  color: #596066;
  font-size: 15px;
  line-height: 1.86;
}

.professional-about__biography p:first-child {
  padding-top: 0;
  color: var(--ink);
  font-size: 17px;
}

.professional-about__copy .text-link {
  margin-top: 36px;
}

.location-section {
  padding-top: 0;
}

.location-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(24, 32, 40, .08);
}

.location-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 82px);
}

.location-panel__copy .section-title {
  max-width: 560px;
  font-size: clamp(40px, 4.1vw, 62px);
}

.location-panel__copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #5b6267;
  line-height: 1.75;
}

.location-panel__copy address {
  margin: 26px 0 34px;
  padding-left: 18px;
  border-left: 2px solid var(--wine);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
  line-height: 1.45;
}

.location-panel__map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #d8d4ce;
}

.location-panel__map::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, .28);
  pointer-events: none;
}

.location-panel__map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(.22) contrast(.98) saturate(.72);
}

.footer__contact a {
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .office-about__grid,
  .professional-about__grid {
    gap: 60px;
  }

  .office-about__copy {
    columns: 1;
  }

  .professional-about__gallery {
    min-height: 650px;
  }

  .professional-about__photo--secondary {
    height: 420px;
  }

  .location-panel {
    grid-template-columns: .9fr 1.1fr;
  }
}

@media (max-width: 820px) {
  .office-about__grid,
  .professional-about__grid,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .office-about__heading {
    position: relative;
    top: auto;
  }

  .office-about__year {
    margin: 30px 0 44px;
  }

  .professional-about__grid {
    gap: 0;
  }

  .professional-about__gallery {
    order: 4;
    position: relative;
    top: auto;
    min-height: 690px;
    margin: 38px 0 46px;
  }

  .professional-about__copy {
    display: contents;
  }

  .professional-about__copy > .eyebrow {
    order: 1;
  }

  .professional-about__copy > .section-title {
    order: 2;
  }

  .professional-about__role {
    order: 3;
  }

  .professional-about__biography {
    order: 5;
  }

  .professional-about__copy > .text-link {
    order: 6;
    justify-self: start;
  }

  .professional-about__biography {
    max-width: none;
  }

  .location-panel__map,
  .location-panel__map iframe {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .office-about__copy p {
    font-size: 14px;
    line-height: 1.78;
  }

  .professional-about__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
    margin: 30px 0 48px;
    padding-bottom: 38px;
  }

  .professional-about__photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    box-shadow: 0 18px 42px rgba(24, 32, 40, .14);
  }

  .professional-about__photo--primary {
    inset: auto;
  }

  .professional-about__photo--secondary {
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    border-width: 5px;
    transform: translateY(38px);
  }

  .professional-about__index {
    right: auto;
    bottom: 0;
    left: 0;
  }

  .location-panel__copy {
    padding: 38px 25px 44px;
  }

  .location-panel__map,
  .location-panel__map iframe {
    min-height: 360px;
  }
}
