:root {
  --bg-main: #f7f4ee;
  --bg-accent-stone: #d8cec2;
  --bg-accent-nude: #e9dfd2;
  --text-main: #111111;
  --text-muted: #4b4138;
  --accent-gold: #b89b72;
  --border-soft: #e2d8cb;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.08);
  --transition-fast: 160ms ease-out;
  --transition-med: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Manrope", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

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

section {
  position: relative;
}

.container {
  width: min(1080px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

@media (min-width: 900px) {
  .section {
    padding: 5.5rem 0;
  }
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(75, 65, 56, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn.primary {
  background: var(--text-main);
  color: #f9fafb;
  border-color: var(--text-main);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.4);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(17, 17, 17, 0.26);
}

.btn.ghost:hover {
  background: rgba(17, 17, 17, 0.04);
}

.btn.full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 216, 203, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(184, 155, 114, 0.6);
  background: radial-gradient(circle at top, #ffffff, #e9dfd2);
  box-shadow: 0 8px 18px rgba(184, 155, 114, 0.45);
}

.logo-text {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 1.2rem;
  font-size: 0.82rem;
}

.nav a {
  color: rgba(17, 17, 17, 0.7);
  padding: 0.25rem 0.2rem;
}

.nav a:hover {
  color: var(--text-main);
}

.nav-cta {
  padding: 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 155, 114, 0.8);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  padding-top: 4.4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-soft);
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.hero-copy h1 {
  margin: 0.6rem 0 1rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.3vw + 1.6rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-end;
}

.portrait-frame {
  width: min(360px, 80vw);
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  background: linear-gradient(145deg, #d8cec2, #e9dfd2);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.portrait-inner {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 155, 114, 0.6);
  background: rgba(247, 244, 238, 0.9);
  font-size: 0.78rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge-title {
  font-weight: 500;
}

.badge-text {
  color: rgba(75, 65, 56, 0.7);
}

/* Manifesto */
.manifesto {
  border-bottom: 1px solid var(--border-soft);
}

.manifesto-inner {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 900px) {
  .manifesto-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  }
}

.manifesto-title h2 {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.2vw + 1.1rem, 2.3rem);
  line-height: 1.1;
}

.manifesto-text p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* Signature treatments */
.signature {
  border-bottom: 1px solid var(--border-soft);
}

.section-header {
  max-width: 620px;
  margin-bottom: 2.1rem;
}

.section-header h2 {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.1vw + 1.2rem, 2.3rem);
}

.signature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.signature-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem;
  background: #fdfaf5;
  border: 1px solid rgba(216, 206, 194, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  font-size: 0.92rem;
}

.signature-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.sig-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(75, 65, 56, 0.7);
}

.sig-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(75, 65, 56, 0.9);
}

.signature-card h3 {
  margin: 0.45rem 0 0.5rem;
  font-size: 1.02rem;
}

.signature-card p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
}

.sig-note {
  font-size: 0.8rem;
  color: rgba(75, 65, 56, 0.8);
}

/* Doctor */
.doctor {
  border-bottom: 1px solid var(--border-soft);
}

.doctor-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 900px) {
  .doctor-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

.doctor-frame {
  width: min(320px, 78vw);
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: linear-gradient(145deg, #e9dfd2, #d8cec2);
  padding: 8px;
  box-shadow: var(--shadow-soft);
}

.doctor-inner {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-bio h2 {
  margin: 0.6rem 0 0.1rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-size: 1.8rem;
}

.doctor-title {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(75, 65, 56, 0.8);
}

.doctor-bio p {
  margin: 0.9rem 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.doctor-tags span {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 65, 56, 0.3);
  background: rgba(247, 244, 238, 0.9);
}

/* Stories */
.stories {
  border-bottom: 1px solid var(--border-soft);
}

.stories-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .stories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.story-card {
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  background: #fdfaf5;
  border: 1px solid rgba(230, 221, 210, 0.9);
  font-size: 0.92rem;
}

.story-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg-accent-nude);
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-card .quote,
.story-card .story-meta {
  padding: 0 1.3rem;
}

.story-card .quote {
  margin: 1rem 0 0.7rem;
  padding-top: 0;
  color: var(--text-muted);
}

.story-card .story-meta {
  padding-bottom: 1.3rem;
}

.quote {
  margin: 0 0 0.7rem;
  color: var(--text-muted);
}

.story-meta {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(75, 65, 56, 0.8);
}

/* Experience */
.experience {
  border-bottom: 1px solid var(--border-soft);
}

.experience-inner {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .experience-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.experience-inner h2 {
  margin: 0.6rem 0 0;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw + 1rem, 2.2rem);
}

.experience-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.experience-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .experience-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.experience-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.experience-detail-image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

/* Booking */
.booking-shell {
  border-radius: var(--radius-xl);
  padding: 1.9rem 1.6rem;
  background: #fdfaf5;
  border: 1px solid rgba(216, 206, 194, 0.94);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .booking-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

.booking-text h2 {
  margin: 0.6rem 0 0.9rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.1vw + 1.1rem, 2.1rem);
}

.booking-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(216, 206, 194, 0.9);
  background: #f7f4ee;
  padding: 0.65rem 0.9rem;
  font: inherit;
  color: var(--text-main);
  resize: vertical;
  min-height: 42px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(184, 155, 114, 0.6), 0 16px 38px rgba(15, 23, 42, 0.18);
  background: #fdfaf5;
  transform: translateY(-0.5px);
}

.booking-form textarea {
  min-height: 80px;
}

.form-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: rgba(75, 65, 56, 0.8);
}

/* Footer */
.site-footer {
  padding: 2.7rem 0 2.1rem;
}

.footer-inner {
  display: grid;
  gap: 1.6rem;
  font-size: 0.86rem;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr) minmax(0, 1.1fr);
  }
}

.footer-brand h3 {
  margin: 0 0 0.4rem;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: rgba(75, 65, 56, 0.7);
}

/* Scroll appear animations */
.appear {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms var(--transition-med), transform 420ms var(--transition-med);
}

.appear.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 140ms;
}

.delay-3 {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .appear {
    opacity: 1 !important;
    transform: none !important;
  }
}

