:root {
  --ink: #100d0e;
  --ink-soft: #1a1517;
  --wine: #511628;
  --wine-deep: #2d0f1a;
  --wine-light: #7a2942;
  --gold: #cba55a;
  --gold-bright: #e8c97f;
  --paper: #f3efe8;
  --paper-soft: #e8e0d4;
  --white: #fffdf9;
  --muted: #b6aa9e;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(37, 22, 27, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.85rem;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(15, 12, 13, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(203, 165, 90, 0.4);
  border-radius: 3px;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.34rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  margin-left: auto;
}

nav a {
  color: rgba(255, 253, 249, 0.76);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-bright);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.social-links a:focus-visible,
.contact-main:focus-visible,
.qr-visual:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.button-gold:hover {
  background: var(--gold-bright);
}

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

.button-wine:hover {
  background: var(--wine-light);
}

.button-small {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(17, 13, 15, 0.98) 0%, rgba(17, 13, 15, 0.94) 48%, rgba(42, 13, 24, 0.84) 100%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 5.5rem;
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -18vw;
  bottom: -32vw;
  width: 78vw;
  height: 78vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 25, 54, 0.48), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.eyebrow,
.section-number,
.card-kicker,
.partner-role,
.location-label {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.locations h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.8rem;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
}

.hero h1::after {
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 2rem;
  background: var(--gold);
  content: "";
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 253, 249, 0.72);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.text-link {
  border-bottom: 1px solid rgba(232, 201, 127, 0.55);
  color: var(--gold-bright);
  font-weight: 650;
  text-decoration: none;
}

.hero-notes {
  display: flex;
  gap: 2.4rem;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.84rem;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-notes strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.hero-portrait {
  position: relative;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
}

.hero-portrait::before {
  position: absolute;
  z-index: 0;
  inset: 9% 2% 1% 5%;
  border: 1px solid rgba(203, 165, 90, 0.42);
  border-radius: 48% 48% 3px 3px;
  background: radial-gradient(circle at 54% 40%, rgba(111, 29, 55, 0.36), transparent 64%);
  content: "";
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 690px;
  object-fit: contain;
  object-position: center bottom;
}

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

.intro {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.intro h2,
.section-heading h2,
.locations h2,
.contact h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.intro h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 2.1rem;
  border-top: 1px solid var(--line-light);
  color: #564b4d;
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.practice {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--ink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.section-heading .section-number {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin-bottom: 0.35rem;
  color: rgba(255, 253, 249, 0.58);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}

.practice-card {
  position: relative;
  min-height: 580px;
  padding: clamp(2rem, 5vw, 4rem);
  background: #211a1d;
}

.practice-card + .practice-card {
  border-left: 1px solid var(--line-dark);
}

.practice-card-featured {
  background:
    linear-gradient(145deg, rgba(96, 22, 46, 0.92), rgba(43, 14, 25, 0.96)),
    var(--wine);
}

.card-index {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(232, 201, 127, 0.24);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.practice-card h3 {
  max-width: 470px;
  margin: 1.15rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.practice-card > p:not(.card-kicker) {
  max-width: 510px;
  color: rgba(255, 253, 249, 0.64);
}

.practice-card ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.practice-card li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 249, 0.88);
}

.practice-card li::before {
  position: absolute;
  top: 1.32rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.focus-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.focus-band > div {
  padding: 2rem 2.5rem;
}

.focus-band > div + div {
  border-left: 1px solid var(--line-dark);
}

.focus-band span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-band p {
  margin: 0.5rem 0 0;
  color: rgba(255, 253, 249, 0.65);
}

.partners {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.heading-dark {
  display: block;
}

.heading-dark .section-number {
  margin-bottom: 1rem;
}

.heading-dark h2 {
  color: var(--ink);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.partner-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(46, 30, 34, 0.08);
}

.partner-card-offset {
  margin-top: 5rem;
}

.partner-photo {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #291720;
}

.partner-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(203, 165, 90, 0.28);
  content: "";
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.partner-card:hover .partner-photo img {
  transform: scale(1.025);
}

.partner-card:nth-child(2) .partner-photo img {
  object-position: center 29%;
}

.partner-content {
  padding: clamp(1.7rem, 4vw, 3rem);
}

.partner-content h3 {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.partner-role {
  margin-bottom: 0.55rem;
  color: var(--wine-light);
}

.oab {
  margin-bottom: 1.8rem;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.credentials {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-light);
  color: #5e5154;
  line-height: 1.48;
}

.locations {
  padding-block: clamp(5rem, 10vw, 9rem);
  background:
    linear-gradient(120deg, rgba(11, 9, 10, 0.97), rgba(41, 14, 24, 0.92)),
    var(--ink);
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.locations-heading > p:last-child {
  max-width: 520px;
  color: rgba(255, 253, 249, 0.6);
}

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

.location-card {
  padding: 2rem 0 2.2rem;
  border-bottom: 1px solid var(--line-dark);
}

.location-card h3 {
  margin: 0.45rem 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.location-card address {
  color: rgba(255, 253, 249, 0.62);
  font-style: normal;
}

.contact {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--paper);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2.4rem, 7vw, 6rem);
  background: var(--wine-deep);
  box-shadow: var(--shadow);
}

.contact-panel::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(203, 165, 90, 0.25);
  border-radius: 50%;
  content: "";
}

.qr-panel {
  display: grid;
  grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.2rem, 6vw, 5rem);
  max-width: 920px;
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.qr-visual {
  display: block;
  width: 100%;
  line-height: 0;
}

.qr-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.qr-copy {
  max-width: 560px;
  color: var(--ink);
}

.qr-copy .section-number {
  margin-bottom: 0.8rem;
  color: var(--wine-light);
}

.qr-copy h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.qr-copy > p:not(.section-number) {
  margin-bottom: 1.6rem;
  color: #625659;
}

.contact h2 {
  margin-bottom: 1.2rem;
}

.contact-copy > p:last-child {
  color: rgba(255, 253, 249, 0.62);
}

.contact-details {
  position: relative;
  z-index: 1;
}

.contact-main {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.contact-main small {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-main strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 400;
}

.social-links {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(232, 201, 127, 0.44);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.social-links a small {
  color: rgba(255, 253, 249, 0.64);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: normal;
  text-align: right;
  text-transform: none;
}

.social-links a:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.social-links a:hover small {
  color: rgba(16, 13, 14, 0.68);
}

footer {
  padding-block: 3rem;
  border-top: 1px solid var(--line-dark);
  background: #0b090a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.footer-brand p,
.footer-note,
.copyright {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.79rem;
}

.footer-note {
  max-width: 400px;
}

.copyright {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.6rem 1rem 0.6rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #217d4b;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 0.84rem;
  text-decoration: none;
}

.whatsapp-float-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.whatsapp-float strong {
  font-weight: 750;
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    gap: 3.2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-heading .section-number {
    margin-bottom: 0;
  }

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

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 4rem 5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-notes {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-portrait {
    width: 100%;
    margin-left: 0;
  }

  .hero-portrait img {
    max-height: 640px;
  }

  .intro-grid,
  .practice-grid,
  .focus-band,
  .partners-grid,
  .locations-grid,
  .contact-panel,
  .qr-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .locations-grid,
  .contact-panel {
    gap: 2.5rem;
  }

  .intro-copy {
    padding-top: 1.5rem;
  }

  .practice-grid {
    border-bottom: 0;
  }

  .practice-card {
    min-height: auto;
  }

  .practice-card + .practice-card {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .focus-band > div {
    padding: 1.5rem 0;
  }

  .focus-band > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .partner-card-offset {
    margin-top: 0;
  }

  .contact-panel {
    width: 100%;
  }

  .qr-panel {
    gap: 1.8rem;
  }

  .qr-visual {
    width: min(70vw, 260px);
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.4rem);
  }

  .hero-portrait img {
    max-height: 520px;
  }

  .contact-main strong {
    font-size: 1.22rem;
  }

  .social-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .social-links a small {
    text-align: left;
  }

  .whatsapp-float {
    padding: 0.6rem;
  }

  .whatsapp-float strong {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

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