/* ==========================================================================
   PeraBeauty — Sky blue & gold stylesheet
   Mobile-first responsive design
   Fonts: Cormorant Garamond (display), Italianno (script), Jost (body)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — sky blue & champagne gold */
  --sky-pale: #eaf1f7;        /* very pale sky — backgrounds */
  --sky-light: #c5d9e8;       /* soft sky — section backgrounds */
  --sky: #6798b1;             /* primary brand blue (French/Wedgwood) */
  --sky-deep: #4a7ba0;        /* deeper sky for accents */
  --sky-ink: #2e5170;         /* darkest blue — for some text */
  --gold: #c9a47a;            /* champagne gold accent */
  --gold-light: #dcc1a0;      /* lighter gold for accents on dark */
  --gold-deep: #a8855e;       /* deeper gold for text on light bg */
  --cream: #fbf8f3;           /* warm cream */
  --ivory: #fdfaf5;           /* base body white */
  --white: #ffffff;
  --text: #2c3e50;            /* deep slate text */
  --text-muted: #6b7c8c;      /* muted text */
  --text-light: #fdfaf5;      /* text on dark */
  --text-light-muted: rgba(253, 250, 245, 0.7);
  --line: rgba(46, 81, 112, 0.12);
  --line-dark: rgba(253, 250, 245, 0.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-script: 'Italianno', cursive;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale (mobile-first) */
  --fs-display-xl: clamp(2.5rem, 10vw, 6rem);
  --fs-display-lg: clamp(2rem, 7vw, 4rem);
  --fs-display: clamp(1.75rem, 5.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 4vw, 2.25rem);
  --fs-h3: 1.25rem;
  --fs-lead: clamp(1rem, 1.6vw, 1.15rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Spacing */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-py: clamp(3.5rem, 8vw, 7rem);
  --section-py-lg: clamp(4.5rem, 10vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1280px;
  --container-narrow: 880px;

  /* Touch targets */
  --tap: 44px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { padding: 0; margin: 0; list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  color: var(--text);
}

h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-deep);
  line-height: 1;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
  display: inline-block;
}
.eyebrow--light { color: var(--gold-light); }

p { margin: 0 0 1rem; }
p.lead {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

em.gold { color: var(--gold-deep); font-style: italic; }
.section--dark em.gold { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: var(--tap);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold-deep);
  color: var(--white);
}
.btn--light {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--light:hover {
  background: var(--gold);
  color: var(--sky-ink);
}
.btn--solid {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--solid:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: all 0.2s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; color: var(--sky-deep); }
.section--dark .link-arrow { color: var(--gold-light); }

/* ---------- Section dividers ---------- */
.section {
  padding-block: var(--section-py);
  position: relative;
}
.section--lg { padding-block: var(--section-py-lg); }
.section--pale { background: var(--sky-pale); }
.section--cream { background: var(--cream); }
.section--blue { background: var(--sky); color: var(--text-light); }
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--text-light); }
.section--blue p { color: var(--text-light-muted); }
.section--dark { background: var(--sky-ink); color: var(--text-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--text-light); }
.section--dark p { color: var(--text-light-muted); }
.section--dark .eyebrow { color: var(--gold-light); }

/* Decorative section divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 1.25rem;
}
.divider-line {
  height: 1px;
  background: var(--gold);
  width: 40px;
}
.divider-dot {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 0.5rem;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding-block: 0.4rem;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(46, 81, 112, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.header__logo {
  display: block;
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.header.scrolled .header__logo { height: 38px; }

/* Desktop nav */
.nav {
  display: none; /* hidden on mobile, shown on desktop */
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav a {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-block: 0.5rem;
}
.nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--gold-deep); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

/* Language switcher */
.header__inner > .lang {
  display: none; /* mobile: hidden, shown via mobile menu */
}
.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.5);
}
.lang button {
  min-width: 36px;
  min-height: 32px;
  padding: 0 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.lang button:hover { color: var(--gold-deep); }
.lang button.is-active {
  background: var(--gold);
  color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  position: relative;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  transition: all 0.3s var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 4rem 2rem 2rem;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  transition: color 0.2s var(--ease);
}
.nav-mobile a:hover, .nav-mobile a.is-active { color: var(--gold-deep); }
.nav-mobile .lang {
  margin-top: 1.5rem;
  background: var(--sky-pale);
}
.nav-mobile .nav-mobile__contact {
  margin-top: 1rem;
  text-align: center;
}
.nav-mobile .nav-mobile__contact a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--text-muted);
  text-transform: none;
  display: block;
  margin-bottom: 0.4rem;
}
.nav-mobile .nav-mobile__contact a:hover { color: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  min-height: 85svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  background:
    radial-gradient(ellipse at top right, var(--sky-light) 0%, transparent 60%),
    linear-gradient(180deg, var(--sky-pale) 0%, var(--cream) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 20%, rgba(103, 152, 177, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(201, 164, 122, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: 2rem;
}
.hero__content { text-align: center; }
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: -0.25rem;
  display: block;
}
.hero__title {
  font-size: clamp(2.25rem, 9vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--sky-ink);
  margin: 0 0 1.25rem;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero__lede {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.hero__visual { display: none; } /* hidden on mobile, shown desktop */

/* Decorative ornament */
.hero__ornament {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
.hero__ornament--top-right {
  top: 18%;
  right: -3%;
  width: 100px;
}
.hero__ornament--bottom-left {
  bottom: 12%;
  left: -3%;
  width: 80px;
}

/* ---------- Section header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 60ch;
  margin-inline: auto;
}
.section-header h2 {
  margin: 0.5rem 0 1rem;
}
.section-header h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.section--dark .section-header h2 em,
.section--blue .section-header h2 em { color: var(--gold-light); }

/* ---------- About teaser ---------- */
.about-teaser {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.about-teaser__image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sky-light), var(--sky)) no-repeat center / cover;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.about-teaser__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 81, 112, 0.35) 0%, transparent 50%);
  pointer-events: none;
}
.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.about-teaser__image:hover img { transform: scale(1.05); }
.about-teaser__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  z-index: 2;
}

/* ---------- Treatment cards grid ---------- */
.treatments {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.treatment-card {
  background: var(--white);
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(46, 81, 112, 0.12);
  border-color: var(--gold);
}
.treatment-card__img {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-light), var(--sky-pale));
  position: relative;
}
.treatment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.treatment-card:hover .treatment-card__img img {
  transform: scale(1.06);
}
.treatment-card__number {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  z-index: 2;
}
.treatment-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.treatment-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sky-ink);
  margin: 0;
}
.treatment-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.treatment-card__link {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease);
  margin-top: auto;
}
.treatment-card__link::after { content: '→'; font-size: 1rem; }
.treatment-card:hover .treatment-card__link { gap: 0.75rem; }

/* ---------- Values / pillars ---------- */
.pillars {
  display: grid;
  gap: 2rem;
}
.pillar {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold);
  text-align: left;
}
.pillar__number {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.pillar p {
  color: var(--text-light-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  gap: 1.25rem;
}
.testimonial {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1.25rem;
  font-family: var(--font-script);
  font-size: 4.5rem;
  color: var(--sky-light);
  line-height: 1;
  z-index: 0;
}
.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Visit / contact preview ---------- */
.visit {
  display: grid;
  gap: 2.5rem;
}
.visit__info dl {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
}
.visit__info dt {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.visit__info dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-light);
}
.visit__map {
  aspect-ratio: 1/1;
  background: var(--sky-deep);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) brightness(0.95);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at top right, var(--sky-light) 0%, transparent 60%),
    linear-gradient(180deg, var(--sky-pale) 0%, var(--cream) 100%);
  padding-top: calc(5.5rem + 1.5rem);
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
}
.page-hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 5.5vw, 2.4rem);
  color: var(--gold-deep);
  display: block;
  margin-bottom: -0.3em;
}
.page-hero h1 {
  font-size: clamp(2rem, 7vw, 4rem);
  color: var(--sky-ink);
  margin: 0 0 1rem;
  font-weight: 300;
  line-height: 1.1;
}
.page-hero h1 em { color: var(--gold-deep); font-style: italic; }
.page-hero p {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
  padding-inline: var(--gutter);
  line-height: 1.6;
}

/* ---------- Treatment detail blocks (behandelingen page) ---------- */
.treatment-block {
  display: grid;
  gap: 1.75rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.treatment-block:last-child { border-bottom: none; }
.treatment-block__media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sky-light), var(--sky-pale));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.treatment-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment-block__num {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  z-index: 2;
}
.treatment-block__content h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.treatment-block__content h2 em { font-style: italic; color: var(--gold-deep); }
.treatment-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.treatment-block__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.treatment-block__meta-label {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.treatment-block__meta-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sky-ink);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-info h2 {
  font-size: var(--fs-display);
  margin-bottom: 1.25rem;
}
.contact-info h2 em { font-style: italic; color: var(--gold-deep); }
.contact-rows {
  display: grid;
  gap: 1.25rem;
}
.contact-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row dt {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.contact-row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-row a { color: inherit; transition: color 0.2s var(--ease); }
.contact-row a:hover { color: var(--gold-deep); }

.contact-form-wrap {
  background: var(--sky-pale);
  padding: 2rem 1.5rem;
  border-radius: 4px;
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}
.contact-form { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  color: var(--text);
  min-height: var(--tap);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold-deep);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Utility classes ---------- */
.container--center { text-align: center; }
.footer__col-h4--mt { margin-top: 1.5rem !important; }
.btn--mt { margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--sky-ink);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}
.footer__top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin: 0 0 0.85rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col a, .footer__col p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__col p + p { margin-top: 0.25rem; }
.footer__hours div { margin-bottom: 0.4rem; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: baseline; }
.footer__hours dt {
  font-size: 0.85rem;
  color: var(--gold-light);
  min-width: 80px;
}
.footer__hours dd {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}
.footer__credit a { color: var(--gold-light); }
.footer__credit a:hover { color: var(--gold); }
.footer__socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.footer__socials a {
  color: var(--text-light-muted);
  width: var(--tap);
  height: var(--tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__socials a:hover { color: var(--gold-light); }
.footer__socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  z-index: 90;
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ---------- Reveal animations ---------- */
/* Content is visible by default; JS adds .reveal-init when supported,
   which hides it briefly until IntersectionObserver triggers .is-visible */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-init .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-init .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ==========================================================================
   TABLET ≥ 640px
   ========================================================================== */
@media (min-width: 640px) {
  .hero__cta { flex-direction: row; justify-content: center; }
  .treatments { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
}

/* ==========================================================================
   DESKTOP ≥ 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav { display: flex; }
  .nav-mobile { display: none !important; }

  .header { padding-block: 0.75rem; }
  .header.scrolled { padding-block: 0.5rem; }
  .header__logo { height: 56px; }
  .header.scrolled .header__logo { height: 46px; }

  .header__inner > .lang { display: inline-flex; }

  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }
  .hero__content { text-align: left; }
  .hero__lede { margin-left: 0; margin-right: 0; }
  .hero__cta { justify-content: flex-start; }
  .hero__visual {
    display: block;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-light), var(--sky));
    position: relative;
  }
  .hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(46, 81, 112, 0.18));
  }

  .about-teaser {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
  .about-teaser--reverse .about-teaser__content { order: -1; }

  .treatments { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .pillars { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
  .testimonials { grid-template-columns: repeat(3, 1fr); }

  .visit { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }

  .treatment-block { grid-template-columns: 1fr 1.2fr; gap: 4rem; padding-block: 5rem; }
  .treatment-block--reverse .treatment-block__media { order: 2; }

  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .contact-form-wrap { padding: 3rem 2.5rem; }

  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  .header, .nav, .menu-toggle, .lang, .wa-float, .footer__socials { display: none; }
  body { color: #000; background: #fff; }
}
