:root {
  --ink: #12171f;
  --ink-soft: #3a4454;
  --navy: #1a2a44;
  --navy-deep: #0f1a2c;
  --blue: #3d6f9c;
  --blue-soft: #6f93b5;
  --mist: #e8eef4;
  --paper: #f7f9fb;
  --line: rgba(26, 42, 68, 0.12);
  --gold: #b08a4a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 26, 44, 0.14);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html.lenis,
html.lenis body {
  height: auto;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(61, 111, 156, 0.16), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(176, 138, 74, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f7fa 0%, var(--paper) 40%, #eef3f8 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Keep faces in frame when crops are tight */
.focus-hero {
  object-position: 68% 12%;
}

.focus-upper {
  object-position: center 8%;
}

.focus-face {
  object-position: center 12%;
}

.focus-profile {
  object-position: 45% 15%;
}

.focus-fullbody {
  object-position: center 10%;
}

.focus-portrait-band {
  object-position: 42% 12%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(15, 26, 44, 0.55), transparent);
  mix-blend-mode: normal;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 0.65rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--white);
  transition: transform 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) infinite alternate;
  object-position: 68% 12%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 16, 28, 0.78) 0%, rgba(10, 16, 28, 0.45) 48%, rgba(10, 16, 28, 0.25) 100%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.25) 0%, rgba(10, 16, 28, 0.55) 70%, rgba(10, 16, 28, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  padding: clamp(5.5rem, 12vh, 8rem) clamp(1.2rem, 4vw, 3.5rem) clamp(3rem, 8vh, 5rem);
  animation: riseIn 1s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  max-width: 22ch;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(4.5rem, 10vh, 7.5rem) clamp(1.2rem, 4vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--navy-deep);
  margin-bottom: 1.35rem;
}

.about-lead {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1.35rem;
}

.about-body {
  display: grid;
  gap: 1rem;
  max-width: 48ch;
  margin-bottom: 1.6rem;
}

.about-body p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-quote {
  margin: 0 0 1.8rem;
  padding: 1.25rem 0 1.25rem 1.2rem;
  border-left: 2px solid var(--gold);
  max-width: 44ch;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--navy-deep);
  margin: 0 0 0.75rem;
}

.about-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.about-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--navy);
  font-weight: 500;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.about-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.5rem;
}

.about-figure img {
  object-position: center 6%;
}

/* Portrait band */
.portrait-band {
  position: relative;
  min-height: clamp(28rem, 62vh, 40rem);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.portrait-band img {
  position: absolute;
  inset: 0;
  object-position: 42% 10%;
}

.portrait-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 30, 0.72), rgba(12, 18, 30, 0.28) 55%, rgba(12, 18, 30, 0.45));
}

.portrait-band blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 28rem;
  padding: clamp(2.5rem, 7vh, 4.5rem) clamp(1.2rem, 4vw, 3.5rem);
}

.portrait-band p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.portrait-band cite {
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

/* Expertise */
.expertise,
.gallery,
.appointment {
  padding: clamp(4.5rem, 10vh, 7rem) clamp(1.2rem, 4vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}

.section-head p:last-child {
  color: var(--ink-soft);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.expertise-grid article {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.expertise-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.expertise-grid img {
  aspect-ratio: 4 / 3;
  object-position: center 10%;
}

.expertise-grid h3 {
  font-size: 1.55rem;
  padding: 1.15rem 1.25rem 0.35rem;
  color: var(--navy);
}

.expertise-grid p {
  padding: 0 1.25rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Gallery */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: 220px 260px;
  gap: 1rem;
}

.gallery-mosaic img {
  border-radius: calc(var(--radius) - 4px);
  min-height: 100%;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: saturate(0.95);
}

.gallery-mosaic img:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.gallery-mosaic .span-tall {
  grid-row: 1 / span 2;
}

.gallery-mosaic .span-wide {
  grid-column: 2 / span 2;
}

/* Appointment */
.appointment {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.appointment-intro h2 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  color: var(--navy-deep);
  margin-bottom: 0.9rem;
}

.appointment-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.8rem;
}

.appointment-aside {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.appointment-aside img {
  object-position: center 8%;
}

.appointment-form {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.appointment-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(61, 111, 156, 0.16);
}

.appointment-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.btn-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-error {
  display: block;
  color: #8f2f2f;
  background: rgba(143, 47, 47, 0.08);
  border: 1px solid rgba(143, 47, 47, 0.22);
}

body.is-loading,
body.modal-open {
  overflow: hidden;
}

/* Appointment preloader */
.form-loader[hidden],
.success-modal[hidden] {
  display: none;
}

.form-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(700px 420px at 50% 40%, rgba(61, 111, 156, 0.18), transparent 60%),
    rgba(10, 16, 28, 0.62);
  backdrop-filter: blur(8px);
  animation: fadeOverlay 0.28s var(--ease) both;
}

.form-loader-panel {
  width: min(100%, 22rem);
  text-align: center;
  padding: 2rem 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(15, 26, 44, 0.28);
}

.form-loader-spinner {
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  border: 2px solid rgba(26, 42, 68, 0.12);
  border-top-color: var(--navy);
  animation: spinLoader 0.75s linear infinite;
}

.form-loader-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.form-loader-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Success modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  animation: fadeOverlay 0.28s var(--ease) both;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 480px at 50% 35%, rgba(176, 138, 74, 0.16), transparent 55%),
    rgba(10, 16, 28, 0.68);
  backdrop-filter: blur(10px);
}

.success-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(15, 26, 44, 0.32);
  text-align: center;
  outline: none;
  animation: modalRise 0.42s var(--ease) both;
}

.success-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.success-modal-close:hover {
  background: rgba(26, 42, 68, 0.08);
  color: var(--navy);
}

.success-modal-icon {
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 1.1rem;
  color: var(--gold);
  animation: iconPop 0.55s var(--ease) 0.08s both;
}

.success-modal-icon svg {
  width: 100%;
  height: 100%;
}

.success-modal-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}

.success-modal-dialog h3 {
  font-size: clamp(1.7rem, 4vw, 2.15rem);
  color: var(--navy-deep);
  margin-bottom: 0.7rem;
}

.success-modal-message {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.success-modal-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.95rem 0.75rem;
  border-radius: 14px;
  background: rgba(26, 42, 68, 0.04);
  border: 1px solid var(--line);
}

.success-modal-meta div {
  display: grid;
  gap: 0.25rem;
}

.success-modal-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.success-modal-meta strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.success-modal-dialog .btn {
  width: 100%;
}

@keyframes fadeOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: end;
  padding: 2.5rem clamp(1.2rem, 4vw, 3.5rem) 2rem;
  margin-top: 2rem;
  background: linear-gradient(180deg, transparent, rgba(26, 42, 68, 0.06));
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.footer-meta a:hover {
  color: var(--navy);
}

.footer-copy {
  font-size: 0.85rem;
}

/* Motion */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .about-figure,
  .hero-content,
  .form-loader,
  .success-modal,
  .success-modal-dialog,
  .success-modal-icon,
  .form-loader-spinner {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .about,
  .appointment,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-mosaic .span-tall,
  .gallery-mosaic .span-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-mosaic img {
    aspect-ratio: 4 / 3;
  }

  .appointment-aside {
    max-width: 28rem;
  }

  .site-footer {
    gap: 1rem;
  }

  .hero-media img,
  .focus-hero {
    object-position: 42% 28%;
    transform-origin: 42% 28%;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
    z-index: 50;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: rgba(12, 18, 30, 0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .hero-media img,
  .focus-hero {
    object-position: 38% 26%;
    transform-origin: 38% 26%;
  }

  .success-modal-meta {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 0.9rem 1rem;
  }

  .success-modal-meta div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }
}

/* Dedicated appointment page */
.page-appointment .site-header {
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.55), transparent);
}

.appt-hero {
  position: relative;
  min-height: 58vh;
  min-height: 58dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.appt-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.appt-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  animation: heroZoom 18s var(--ease) infinite alternate;
  transform-origin: center 20%;
}

.appt-hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 16, 28, 0.82) 0%, rgba(10, 16, 28, 0.48) 55%, rgba(10, 16, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.35) 0%, rgba(10, 16, 28, 0.55) 55%, rgba(10, 16, 28, 0.88) 100%);
}

.appt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  padding: clamp(6rem, 14vh, 8.5rem) clamp(1.2rem, 4vw, 3.5rem) clamp(2.4rem, 6vh, 3.8rem);
  animation: riseIn 0.9s var(--ease) both;
}

.appt-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.appt-hero h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
}

.appt-hero-lead {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 1.05rem;
}

.appt-booking {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 4vw, 3.5rem) clamp(4rem, 9vh, 6rem);
}

.appt-sidebar h2 {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  color: var(--navy-deep);
  margin-bottom: 0.85rem;
}

.appt-sidebar-lead {
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.8rem;
}

.appt-points {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.appt-points li {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.appt-points li span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.appt-points a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.appt-sidebar-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  box-shadow: var(--shadow);
}

.appt-form-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy-deep);
  margin: 0 0 1.35rem;
}

.appt-page-form {
  animation: riseIn 0.9s var(--ease) 0.08s both;
}

@media (max-width: 980px) {
  .appt-booking {
    grid-template-columns: 1fr;
  }

  .appt-sidebar-photo {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  .appt-hero-media img {
    object-position: center 18%;
  }
}

@media (max-width: 760px) {
  .appt-hero {
    min-height: 52vh;
    min-height: 52dvh;
  }

  .appt-hero-content {
    padding-bottom: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .appt-hero-media img,
  .appt-hero-content,
  .appt-page-form {
    animation: none;
  }
}
