:root {
  --navy: #153862;
  --navy-dark: #0e2843;
  --gold: #bd9060;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text-dark: #1f2a37;
  --text-muted: #5a6472;
  --radius: 6px;
  --max-width: 1180px;
  --font-heading: 'Frank Ruhl Libre', serif;
  --font-body: 'Assistant', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-heading); line-height: 1.25; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.85; }

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-filled {
  background: var(--gold);
  color: var(--white);
}

.section { padding: 72px 0; }

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

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

.eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "image logo"
    "image panel";
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-panel {
  grid-area: panel;
  padding: 8px 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  z-index: 2;
}

.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }

.hero-sub { max-width: 46ch; color: rgba(255,255,255,0.9); }

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

.hero-image {
  grid-area: image;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(21,56,98,0.55) 8%, rgba(21,56,98,0) 26%);
  z-index: 1;
}

.hero-logo {
  grid-area: logo;
  width: 280px;
  padding: 32px 56px 8px;
  align-self: end;
  filter: brightness(0) invert(1);
  z-index: 2;
}

.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% top;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "logo" "image" "panel";
    min-height: unset;
  }
  .hero-logo { width: 200px; align-self: auto; justify-self: center; padding: 24px 20px 12px; }
  .hero-image { height: 360px; }
  .hero-image::after { background: linear-gradient(0deg, var(--navy) 0%, rgba(21,56,98,0.55) 8%, rgba(21,56,98,0) 30%); }
  .hero-panel { padding: 20px 20px 32px; text-align: center; align-items: center; }
  .hero-actions { justify-content: center; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  position: sticky;
  top: 24px;
}

.about-copy h2 { font-size: 2rem; color: var(--navy); margin-bottom: 8px; }

.about-copy p { margin-bottom: 14px; color: var(--text-dark); }

.about-signature {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo img { position: static; aspect-ratio: 4/3; max-width: 320px; margin: 0 auto; }
}

/* Treatments */
.treatments h2 { text-align: center; margin-bottom: 8px; font-size: 2rem; }
.treatments-intro { text-align: center; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.treatments-sub { text-align: center; max-width: 60ch; margin: 0 auto 40px; color: rgba(255,255,255,0.85); }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.treatment-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
}

.treatment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.treatment-num { color: var(--gold); font-family: var(--font-heading); font-size: 1.4rem; line-height: 1; }
.treatment-icon { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; display: block; }
.treatment-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.treatment-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.treatment-card li { position: relative; padding-right: 14px; }
.treatment-card li::before { content: '•'; position: absolute; right: 0; color: var(--gold); }
.treatment-card small { color: rgba(255,255,255,0.6); }

@media (max-width: 1000px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .treatments-grid { grid-template-columns: 1fr; }
}

/* Approach + personal care */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(21,56,98,0.06);
}

.approach-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.approach-icon svg { width: 24px; height: 24px; }

.approach-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 6px; }
.approach-card p { color: var(--text-muted); margin-bottom: 12px; }

.approach-card blockquote {
  font-style: italic;
  color: var(--navy);
  border-right: 3px solid var(--gold);
  padding-right: 16px;
  margin-top: 16px;
}

@media (max-width: 800px) {
  .approach-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer { padding: 36px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.footer-intro { color: rgba(255,255,255,0.85); margin-bottom: 14px; max-width: 52ch; font-size: 0.92rem; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; }
.footer-contact-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.footer-hours h4 { color: var(--gold); margin-bottom: 4px; font-size: 0.95rem; }
.footer-hours p { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.4; }

.footer-map { min-height: 150px; border-radius: var(--radius); overflow: hidden; }
.footer-map iframe { width: 100%; height: 100%; min-height: 150px; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-map { height: 200px; }
}
