:root {
  --cream: #FAEBCC;
  --green: #313832;
  --dark: #231F1F;
  --rust: #B8693D;
  --sage: #AAB7A8;
  --max: 1180px;
  --radius: 34px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button, input, textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 112px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(24px, 5vw, 72px);
  background: rgba(250, 235, 204, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: clamp(30px, 4.7vw, 56px);
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.055em;
}

.menu-toggle {
  width: 54px;
  height: 44px;
  padding: 7px 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  align-content: space-between;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: var(--dark);
  display: block;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover {
  border-bottom-color: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;
  height: 100dvh;

  z-index: 9999;

  background: #231F1F;
  color: #FAEBCC;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 18px;

  padding:
    calc(110px + env(safe-area-inset-top))
    24px
    40px;

  overflow-y: auto;

  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-size: clamp(40px, 13vw, 74px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.menu-close {
  position: absolute;
  top: calc(22px + env(safe-area-inset-top));
  right: 24px;
  border: 0;
  background: none;
  color: var(--cream);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.hero {
  width: 100%;
  background: var(--dark);
}

.hero-image {
  width: 100%;
  height: min(78vh, 900px);
  object-fit: cover;
  object-position: center;
}

.section-pad {
  padding: clamp(66px, 8vw, 118px) clamp(24px, 5vw, 72px);
}

.intro {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px 64px;
  align-items: end;
}

.intro-copy h1,
.treatments h2,
.appointments h2,
.statement h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.06em;
}

.intro-copy h1 {
  font-size: clamp(62px, 7.7vw, 118px);
  line-height: .94;
}

.intro-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green);
}

.intro-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pill-button {
  grid-column: 2;
  width: 100%;
  min-height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 500;
}

.pill-button.muted {
  background: var(--sage);
  color: var(--dark);
}

.treatments {
  max-width: var(--max);
  margin: 0 auto;
}

.treatments h2 {
  font-size: clamp(64px, 8vw, 122px);
  line-height: .9;
  margin-bottom: 56px;
}

.mobile-break { display: none; }

.accordion {
  border-top: 1px solid rgba(35, 31, 31, .85);
}

.accordion-item {
  border-bottom: 1px solid rgba(35, 31, 31, .85);
}

.accordion-trigger {
  width: 100%;
  min-height: 86px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-size: 20px;
}

.accordion-icon {
  font-size: 26px;
  font-weight: 300;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.45;
}

.accordion-item.open .accordion-panel {
  max-height: 300px;
  opacity: 1;
  padding: 0 0 28px;
}

.accordion-panel p {
  margin: 0 0 16px;
}

.overlap-gallery {
  position: relative;
  height: clamp(500px, 62vw, 760px);
  margin-top: clamp(70px, 9vw, 120px);
}

.overlap {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
}

.overlap.back {
  left: 0;
  bottom: 0;
  width: 52%;
  height: 63%;
}

.overlap.front {
  right: 6%;
  top: 0;
  width: 54%;
  height: 58%;
  z-index: 2;
}

.statement {
  background: var(--green);
  color: var(--cream);
}

.statement-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 14vw, 210px) clamp(24px, 5vw, 72px);
}

.statement h2 {
  font-size: clamp(62px, 9vw, 130px);
  line-height: .95;
  max-width: 880px;
}

.statement h2 span { display: inline-block; margin-top: .5em; }

.appointments {
  max-width: var(--max);
  margin: 0 auto;
}

.appointments-wrap {
  max-width: 620px;
}

.appointments h2 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: .98;
  margin-bottom: 34px;
}

.appointments p {
  font-size: 18px;
  line-height: 1.45;
}

.signup-form {
  display: flex;
  gap: 14px;
  margin: 38px 0 28px;
}

.signup-form input {
  min-height: 64px;
  flex: 1;
  border: 1px solid rgba(35,31,31,.15);
  background: white;
  padding: 0 24px;
  border-radius: 0;
}

.signup-form button,
.submit-button {
  border: 0;
  background: var(--rust);
  color: white;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  cursor: pointer;
}

.legal {
  font-size: 13px !important;
  max-width: 560px;
}

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(74px, 9vw, 130px) clamp(24px, 5vw, 72px);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 90px;
}

.site-footer h2 {
  font-size: 44px;
  margin: 0 0 36px;
  letter-spacing: -.05em;
}

.contact-form {
  max-width: 680px;
}

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.field label {
  font-weight: 600;
}

.field label span {
  opacity: .6;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--cream);
  background: transparent;
  color: var(--cream);
  border-radius: 24px;
  padding: 14px 18px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 2px rgba(250,235,204,.22);
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: -5px 0 24px;
}

.check-row input {
  width: 24px;
  height: 24px;
  accent-color: var(--rust);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
  justify-self: center;
  text-align: center;
}

.footer-links a {
  text-decoration: none;
  color: #C7D8C7;
}

.footer-links p {
  margin: 6px 0 0;
  color: #C7D8C7;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(250, 235, 204, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #FAEBCC;
  text-decoration: none;
  font-size: 19px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.socials a:hover {
  background-color: #FAEBCC;
  color: #231F1F;
  border-color: #FAEBCC;
  transform: translateY(-3px);
}

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

/* Mobile-first polish */
@media (max-width: 767px) {
  .site-header {
    height: 96px;
    padding: 0 24px;
    gap: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
  .brand {
    font-size: clamp(34px, 9.8vw, 52px);
    white-space: nowrap;
  }

  .menu-toggle {
    width: 52px;
    height: 40px;
  }

  .desktop-nav { display: none; }

  .hero-image {
    height: auto;
    aspect-ratio: 9 / 13.7;
    object-fit: cover;
  }

  .section-pad {
    padding: 54px 25px 72px;
  }

  .intro {
    display: block;
  }

  .intro-copy h1 {
    font-size: clamp(58px, 17vw, 88px);
    line-height: .92;
    margin-bottom: 44px;
  }

  .intro-card {
    border-radius: 34px;
  }

  .intro-card img {
    aspect-ratio: .82;
  }

  .pill-button {
    margin-top: 42px;
    min-height: 62px;
    font-size: 17px;
  }

  .treatments h2 {
    font-size: clamp(60px, 17vw, 88px);
    line-height: .88;
    margin-bottom: 54px;
    overflow-wrap: anywhere;
  }

  .mobile-break { display: initial; }

  .accordion-trigger {
    min-height: 82px;
    font-size: 17px;
  }

  .accordion-panel {
    font-size: 16px;
    line-height: 1.38;
  }

  .overlap-gallery {
    height: 620px;
    margin-top: 72px;
  }

  .overlap.back {
    width: 74%;
    height: 52%;
    left: 0;
    bottom: 4%;
  }

  .overlap.front {
    width: 74%;
    height: 46%;
    right: 0;
    top: 0;
  }

  .statement-inner {
    padding: 135px 24px 140px;
  }

  .statement h2 {
    font-size: clamp(56px, 16vw, 84px);
    line-height: .93;
  }

  .appointments {
    padding-top: 92px;
    padding-bottom: 110px;
  }

  .appointments h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .appointments p {
    font-size: 16px;
  }

  .signup-form {
    display: grid;
    gap: 28px;
  }

  .signup-form input {
    min-height: 66px;
  }

  .signup-form button {
    width: fit-content;
    min-width: 122px;
  }

  .site-footer {
    padding-top: 82px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .site-footer h2 {
    font-size: 38px;
  }

  .footer-links {
    align-self: auto;
  }

  .submit-button {
    display: block;
    margin: 0 auto;
    min-width: 165px;
  }
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* BREVO SIGNUP FORM */

.input--hidden {
  display: none !important;
}

.signup-message,
.sib-form-message-panel {
  display: none;
}

.signup-message {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.success-message {
  color: #313832;
}

.error-message {
  color: #B8693D;
}

.signup-form button {
  white-space: nowrap;
  min-width: 150px;
}

.signup-form input[name="email_address_check"] {
  display: none !important;
}

.socials i {
  font-size: 20px;
}

/* PRIVACY POLICY */

.privacy-page {
  background: #FAEBCC;
  color: #231F1F;
  padding: clamp(80px, 10vw, 150px) 24px;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-label {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.privacy-container > h1 {
  margin: 0;
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.privacy-effective {
  margin: 40px 0 100px;
  font-size: 15px;
  opacity: 0.65;
}

.privacy-section {
  padding: 42px 0;
  border-top: 1px solid rgba(35, 31, 31, 0.35);
}

.privacy-section h2 {
  margin: 0 0 24px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.privacy-section p {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-contact a {
  display: inline-block;
  margin-top: 8px;
  color: #231F1F;
  font-size: 18px;
  font-weight: 600;
}

.privacy-footer {
  background: #231F1F;
  color: #FAEBCC;

  min-height: 180px;
  padding: 50px clamp(24px, 5vw, 72px);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.privacy-footer > a {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.privacy-footer div {
  display: flex;
  gap: 30px;
}

.privacy-footer div a {
  color: #FAEBCC;
  text-decoration: none;
  font-size: 14px;
}

.privacy-footer div a:hover {
  text-decoration: underline;
}


@media (max-width: 767px) {

  .privacy-page {
    padding: 72px 25px 90px;
  }

  .privacy-container > h1 {
    font-size: clamp(68px, 21vw, 100px);
  }

  .privacy-effective {
    margin: 32px 0 70px;
  }

  .privacy-section {
    padding: 34px 0;
  }

  .privacy-section p {
    font-size: 16px;
    line-height: 1.65;
  }

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

  .privacy-footer div {
    flex-direction: column;
    gap: 14px;
  }
}