:root {
  --coral: #e96f5a;
  --coral-dark: #bd4f3e;
  --ink: #252321;
  --muted: #6e6560;
  --cream: #f8f2ed;
  --paper: #fffdfb;
  --line: rgba(82, 64, 55, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #ead8ca url('/hero.jpg') center 58% / cover no-repeat;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.72) 0%, rgba(255, 250, 246, 0.28) 48%, rgba(46, 31, 24, 0.16) 100%),
    linear-gradient(90deg, rgba(255, 248, 243, 0.36), transparent 60%);
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 76px 0 96px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--coral);
  font-size: clamp(3rem, 7.3vw, 7rem);
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(255, 248, 242, 0.65);
}

.hero__area {
  margin: 8px 0 26px;
  color: var(--coral-dark);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__notice {
  margin: 0 0 32px;
  color: #603d34;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
}

.call-button {
  display: inline-flex;
  min-width: min(390px, 100%);
  flex-direction: column;
  gap: 1px;
  padding: 16px 30px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.7);
  box-shadow: 0 18px 45px rgba(72, 47, 36, 0.12);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease;
}

.call-button:hover,
.call-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 253, 250, 0.92);
}

.call-button__label {
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.call-button strong {
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  letter-spacing: 0.035em;
}

main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(80px, 10vw, 140px) 0;
}

.intro__lead h2,
.closing h2 {
  margin: 0 0 25px;
  font-size: clamp(2.35rem, 4.3vw, 4.4rem);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.intro__lead > p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.treatments {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.treatments li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 2px;
  border-bottom: 1px solid var(--line);
}

.treatments span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.treatments small {
  color: var(--muted);
  text-align: right;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(70px, 10vw, 130px);
  padding: clamp(50px, 7vw, 85px);
  border-radius: 32px;
  background: var(--cream);
}

.closing h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.text-link {
  padding: 12px 0;
  color: var(--coral-dark);
  font-weight: 700;
  text-underline-offset: 6px;
  white-space: nowrap;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  color: #fff7f3;
  background: #342d29;
}

footer p { margin: 0; }
footer a { font-weight: 700; text-underline-offset: 5px; }
footer nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header,
.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-header {
  padding: clamp(55px, 8vw, 100px) 0 38px;
}

.legal-header h1 {
  margin: 16px 0 0;
  color: var(--coral);
  font-size: clamp(3rem, 8vw, 6rem);
  text-align: left;
  text-shadow: none;
}

.back-link {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--muted);
  font-weight: 700;
  text-underline-offset: 5px;
}

.legal-content {
  margin-bottom: clamp(70px, 10vw, 120px);
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(69, 48, 38, 0.08);
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content address {
  margin: 0 0 16px;
  color: var(--muted);
  font-style: normal;
}

.legal-content a { color: var(--coral-dark); }

@media (max-width: 820px) {
  .hero {
    min-height: 690px;
    background-position: 58% center;
  }

  .hero__content { padding-top: 54px; }

  .intro,
  .closing {
    grid-template-columns: 1fr;
  }

  .intro { gap: 48px; }
  .closing { align-items: start; gap: 24px; }
}

@media (max-width: 560px) {
  .hero {
    min-height: 650px;
    background-position: 62% center;
  }

  .hero__content,
  main { width: min(calc(100% - 28px), 1160px); }

  h1 {
    font-size: clamp(2.2rem, 9.8vw, 3.1rem);
    letter-spacing: -0.055em;
  }
  .hero__area { letter-spacing: 0.2em; }
  .call-button { min-width: 100%; }

  .intro { padding: 72px 0; }

  .treatments li {
    display: block;
    padding: 15px 0;
  }

  .treatments small {
    display: block;
    margin-top: 2px;
    text-align: left;
  }

  .closing {
    margin-right: -4px;
    margin-left: -4px;
    padding: 38px 26px;
    border-radius: 24px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  footer nav { flex-direction: column; gap: 8px; }

  .legal-header,
  .legal-content { width: min(calc(100% - 28px), 860px); }
  .legal-content { padding: 32px 24px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .call-button { transition: none; }
}
