:root {
  --bg: #efe3d4;
  --bg-deep: #dcc2a4;
  --surface: rgba(255, 250, 244, 0.86);
  --surface-strong: #fff9f2;
  --surface-dark: #16211d;
  --surface-dark-soft: #22342f;
  --ink: #16110e;
  --muted: #61564d;
  --line: rgba(68, 45, 24, 0.14);
  --line-strong: rgba(68, 45, 24, 0.22);
  --accent: #8c402d;
  --accent-strong: #6b2d20;
  --gold: #c89b60;
  --shadow: 0 28px 70px rgba(44, 28, 12, 0.12);
  --shadow-dark: 0 28px 80px rgba(6, 11, 10, 0.28);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 96, 0.24), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(140, 64, 45, 0.12), transparent 18%),
    linear-gradient(180deg, #f5eadc 0%, var(--bg) 48%, #f6ece0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(92, 63, 35, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 63, 35, 0.032) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 88%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
}

h2 {
  font-size: clamp(2.3rem, 4.7vw, 4rem);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

ul {
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(47, 28, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 10px 22px rgba(102, 43, 29, 0.16);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.06;
}

.brand-text strong {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-picker {
  position: relative;
}

.language-picker select {
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(247, 236, 223, 0.85));
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

.language-picker::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff8f2;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 28px rgba(102, 43, 29, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(102, 43, 29, 0.26);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 250, 244, 0.58);
  color: var(--ink);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.hero,
.section,
.statement-strip {
  margin-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.hero-copy,
.portrait-panel,
.quick-card,
.statement-strip,
.service-card,
.clients-copy,
.audience-card,
.about-image,
.about-panel,
.step-card,
.faq-list,
.contact-card,
.contact-panel,
.contact-copy,
.contact-card > .contact-copy,
.contact-card > .contact-panel,
.contact-card > .contact-grid,
.contact-card > * {
  position: relative;
}

.hero-copy,
.portrait-panel,
.quick-card,
.statement-strip,
.service-card,
.clients-copy,
.audience-card,
.about-image,
.about-panel,
.step-card,
.faq-list,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy,
.clients-copy,
.about-panel,
.contact-copy,
.contact-panel {
  padding: clamp(28px, 4vw, 40px);
}

.hero-copy {
  background:
    radial-gradient(circle at top left, rgba(200, 155, 96, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(247, 236, 223, 0.84));
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-intro {
  margin-top: 20px;
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.availability-card {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(79, 51, 26, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.62);
}

.availability-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.language-chips,
.trust-bar,
.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-chips span,
.trust-bar li,
.practice-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(79, 51, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.9);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: center;
}

.trust-bar {
  list-style: none;
  margin-top: 22px;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.portrait-panel {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 96, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(243, 231, 216, 0.8));
}

.portrait-panel img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(68, 45, 24, 0.08);
}

.portrait-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.portrait-caption strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.portrait-caption span {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 36px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(22, 33, 29, 0.88);
  box-shadow: var(--shadow-dark);
}

.badge-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #f7eee5;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-badge strong,
.hero-badge span {
  display: block;
  color: #f7eee5;
}

.hero-badge strong {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.hero-badge span {
  font-size: 0.84rem;
  line-height: 1.45;
}

.quick-card {
  padding: 26px;
  background:
    linear-gradient(135deg, var(--surface-dark-soft), var(--surface-dark));
  box-shadow: var(--shadow-dark);
}

.quick-card .eyebrow,
.quick-card h2,
.quick-card strong,
.quick-card span {
  color: #f3e8db;
}

.quick-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.quick-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.quick-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-list strong {
  font-size: 1rem;
}

.quick-list span {
  font-size: 0.92rem;
  line-height: 1.6;
}

.statement-strip {
  padding: 18px 22px;
  background:
    linear-gradient(135deg, var(--surface-dark-soft), var(--surface-dark));
  box-shadow: var(--shadow-dark);
}

.statement-copy {
  margin-bottom: 16px;
  color: #f3e8db;
  font-size: 1rem;
  font-weight: 700;
}

.statement-strip .practice-tags span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f3e8db;
}

.section {
  padding: 18px 0 4px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.narrow {
  max-width: 760px;
}

.service-grid,
.audience-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 96, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 238, 227, 0.82));
}

.card-number,
.audience-index,
.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-card p,
.audience-card p,
.step-card p {
  margin-top: 12px;
}

.clients-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.clients-copy {
  background:
    radial-gradient(circle at top left, rgba(200, 155, 96, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(247, 236, 223, 0.82));
}

.clients-copy p:last-of-type {
  margin-top: 16px;
}

.clients-copy .button {
  margin-top: 24px;
}

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

.audience-card {
  padding: 24px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.about-image {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 96, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(243, 231, 216, 0.8));
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 28px;
  object-fit: cover;
}

.about-panel {
  padding: clamp(28px, 4vw, 40px);
}

.about-panel p + p {
  margin-top: 14px;
}

.quote-card {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(79, 51, 26, 0.12);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.8);
}

.quote-card p {
  color: var(--ink);
  font-weight: 700;
}

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

.step-card {
  padding: 26px;
}

.faq-list {
  padding: 8px 24px;
}

.faq-list details {
  padding: 20px 0;
  border-bottom: 1px solid rgba(64, 43, 25, 0.1);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 96, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 251, 247, 0.92), rgba(247, 236, 223, 0.84));
}

.contact-copy,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.7);
}

.contact-copy {
  padding: clamp(24px, 4vw, 38px);
}

.contact-copy p {
  margin-top: 14px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-panel {
  padding: clamp(24px, 4vw, 34px);
}

.panel-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-link,
.contact-meta {
  display: block;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-link {
  color: var(--ink);
  font-size: 1.04rem;
}

.contact-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-button {
  width: 100%;
  margin-top: 22px;
}

.contact-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .clients-section,
  .about-section,
  .contact-card,
  .service-grid,
  .audience-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 380px;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .header-actions {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(260px, 100%);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 249, 242, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .language-picker select {
    min-width: 122px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 16px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text span:last-child {
    font-size: 0.72rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy,
  .clients-copy,
  .about-panel,
  .contact-copy,
  .contact-panel,
  .service-card,
  .audience-card,
  .step-card {
    padding: 22px;
  }

  .portrait-panel,
  .about-image,
  .statement-strip,
  .faq-list,
  .contact-card {
    border-radius: 24px;
  }

  .hero-actions,
  .trust-bar,
  .site-footer,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .portrait-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .language-chips span,
  .trust-bar li,
  .practice-tags span {
    width: 100%;
    white-space: normal;
  }

  .faq-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .language-picker {
    width: 100%;
  }

  .language-picker select {
    width: 100%;
  }

  .header-actions {
    gap: 10px;
  }

  .hero-copy,
  .clients-copy,
  .about-panel,
  .contact-copy,
  .contact-panel,
  .service-card,
  .audience-card,
  .step-card,
  .statement-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .portrait-panel,
  .about-image,
  .faq-list,
  .contact-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-intro,
  .statement-copy,
  .service-card p,
  .audience-card p,
  .about-panel p,
  .step-card p,
  .faq-list p,
  .contact-copy p,
  .contact-note {
    font-size: 0.95rem;
    line-height: 1.66;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .button {
    transition: none;
  }
}
