:root {
  --gold: #DCA54A;
  --gold-dark: #C8923A;
  --ink: #020305;
  --ink-soft: #1a1d22;
  --body: #4A4A4A;
  --body-soft: #6b6b6b;
  --beige-light: #FAF7EE;
  --beige-mid: #EFE8D4;
  --white: #FFFFFF;
  --hairline: #E8E4DA;
  --hairline-soft: #EFEBE2;
  --radius: 2px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding: 4px 0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.btn-link:hover { color: var(--gold-dark); }

/* —— Layout —— */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 96px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 22px; }
}

/* eyebrow */
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold-dark);
}

/* Hide focus rings except on keyboard */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* —— Header —— */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
  animation: headerDrop 0.3s ease;
}
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  max-width: 1280px; margin: 0 auto;
}
.site-header__logo img { height: 60px; width: auto; }
@media (max-width: 720px) { .site-header__logo img { height: 50px; } }
.site-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--ink);
  letter-spacing: 0.02em;
}
.site-header__phone svg { width: 16px; height: 16px; color: var(--gold); }

/* —— Hero (full-bleed panoramic) —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #ECEAE5;
  display: flex;
  align-items: center;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.55) 55%, rgba(255,255,255,0.92) 80%);
  z-index: 1;
}
@media (max-width: 880px) {
  .hero__overlay { background: linear-gradient(180deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.7) 55%, rgba(255,255,255,0.97) 75%); }
  .hero__photo { object-position: 35% 20%; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.hero__copy {
  grid-column: 2 / 3;
  max-width: 520px;
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; padding: 56vh 22px 60px; }
  .hero__copy { grid-column: 1 / -1; max-width: 100%; }
}
.hero__copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero__copy h1 em { font-style: italic; color: var(--ink); }
.hero__rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  color: var(--body);
  margin-bottom: 18px;
  line-height: 1.65;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__lead {
  font-size: 17px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 36px; }
.hero__signature {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  margin-top: 8px;
}
.hero__signature-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__signature-role {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--body);
  margin-top: 4px;
}

/* trust strip below hero */
.trust-strip {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
  background: var(--white);
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  color: var(--body);
  letter-spacing: 0.02em;
}
.trust-strip__item { display: inline-flex; align-items: center; gap: 10px; }
.trust-strip__item svg { width: 16px; height: 16px; color: var(--ink); opacity: 0.55; }

/* —— Brand band (with blurred background image) —— */
.brand-band {
  position: relative;
  padding: 140px 28px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.brand-band__bg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(14px) brightness(0.6) saturate(0.85);
  transform: scale(1.08);
  z-index: 0;
}
.brand-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,3,5,0.45) 0%, rgba(2,3,5,0.55) 100%);
  z-index: 1;
}
.brand-band > .brand-band__quote,
.brand-band > .brand-band__rule,
.brand-band > .brand-band__attr { position: relative; z-index: 2; }
.brand-band__quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(32px, 4.6vw, 52px);
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 920px;
  margin: 0 auto;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.brand-band__quote em {
  font-style: normal;
  color: var(--gold) !important;
}
.brand-band__attr {
  margin-top: 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.brand-band__rule {
  width: 56px; height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}

/* —— Section header —— */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-head p {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
}

/* —— Treatments + integrated before/after —— */
.treatments { background: var(--white); }
.tx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.tx:last-of-type { margin-bottom: 0; }
.tx.is-reverse .tx__copy { order: 2; }
@media (max-width: 880px) {
  .tx { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .tx.is-reverse .tx__copy { order: 0; }
}
.tx__copy { max-width: 480px; }
.tx__num {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.tx__num::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.tx__copy h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.tx__hl {
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.tx__body {
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.tx__cta {
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.tx__cta:hover { color: var(--gold-dark); border-color: var(--gold); }

/* —— Before/after slider (inline within tx) —— */
.ba { background: var(--beige-light); overflow: hidden; }
.ba__compare {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ddd;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* The source images are pre-stitched: left half = before, right half = after */
.ba__before {
  background-size: 200% 100%;
  background-position: 0 center;
}
.ba__after {
  background-size: 200% 100%;
  background-position: 100% center;
  clip-path: inset(0 0 0 var(--p, 50%));
  -webkit-clip-path: inset(0 0 0 var(--p, 50%));
}
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--p, 50%);
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(2,3,5,0.1);
}
.ba__knob {
  position: absolute;
  top: 50%;
  left: var(--p, 50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(2,3,5,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.ba__knob svg { width: 18px; height: 18px; }
.ba__labels {
  position: absolute;
  top: 14px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.ba__labels span {
  background: rgba(2,3,5,0.55);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 2px;
}
.ba__caption {
  padding: 14px 18px;
  font-size: 12px;
  color: var(--body);
  background: var(--beige-light);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--hairline-soft);
}
.results-legal {
  background: var(--beige-light);
  text-align: center;
  padding: 28px 22px;
  font-size: 12px;
  color: var(--body);
  line-height: 1.6;
  font-style: italic;
}
.results-legal p { max-width: 760px; margin: 0 auto; }

/* —— Doctora section —— */
.doctora { background: var(--beige-light); }
.doctora__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .doctora__grid { grid-template-columns: 1fr; gap: 36px; } }
.doctora__photo {
  aspect-ratio: 4/5;
  background: var(--beige-mid);
  overflow: hidden;
}
.doctora__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.doctora__copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; line-height: 1.18;
  margin-bottom: 18px;
}
.doctora__role {
  font-family: 'Poppins', sans-serif;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 24px;
}
.doctora__bio {
  font-size: 17px; color: var(--body); line-height: 1.7;
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.doctora__credentials {
  display: grid; gap: 12px; margin-top: 28px;
  list-style: none; padding: 0;
}
.doctora__credentials li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--body);
}
.doctora__credentials svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* —— Process timeline —— */
.process { background: var(--white); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--hairline);
}
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 8px; }
  .timeline::before { display: none; }
}
.step {
  text-align: center;
  padding: 0 18px;
  position: relative;
}
@media (max-width: 880px) { .step { text-align: left; padding: 22px 0; border-bottom: 1px solid var(--hairline); display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; } .step:last-child { border-bottom: 0; } }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
@media (max-width: 880px) { .step__num { margin-bottom: 0; width: 44px; height: 44px; font-size: 15px; } }
.step h4 {
  font-size: 16px; font-weight: 600; margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--body); line-height: 1.55; }
.process__cta { text-align: center; }

/* —— Reviews —— */
.reviews { background: var(--beige-light); }
.reviews__head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
}
.gbadge svg { width: 16px; height: 16px; }
.gbadge .stars { color: var(--gold); letter-spacing: 1px; }
.gbadge strong { font-weight: 700; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .reviews__grid { grid-template-columns: 1fr; } }
.review {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
}
.review__stars {
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 2px;
  font-size: 16px;
}
.review__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.review__author {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.review__author strong { color: var(--ink); }
.review__source {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--body);
}
.review__source svg { width: 12px; height: 12px; }
.reviews__sync-note {
  text-align: center;
  font-size: 12px;
  color: var(--body);
  margin-top: 22px;
  font-style: italic;
}
.reviews__sync-note a { color: inherit; border-bottom: 1px solid currentColor; }
.reviews__sync-note a:hover { color: var(--gold-dark); }
.reviews__summary {
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  color: var(--body);
  font-size: 14px;
}
.reviews__summary strong { color: var(--ink); font-weight: 700; }
.reviews__summary .stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; }
.reviews__summary a { border-bottom: 1px solid var(--gold); padding-bottom: 2px; font-weight: 700; color: var(--ink); }

/* —— Reservation invite —— */
.invite {
  position: relative;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.invite__bg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(16px) brightness(0.45) saturate(0.8);
  transform: scale(1.08);
  z-index: 0;
}
.invite__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,3,5,0.55) 0%, rgba(2,3,5,0.7) 100%);
  z-index: 1;
}
.invite > .container { position: relative; z-index: 2; }
.invite h2 { color: var(--white); font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 18px; }
.invite p { color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto 36px; font-size: 17px; line-height: 1.6; }
.invite__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: left;
  list-style: none;
  padding: 0;
}
@media (max-width: 720px) { .invite__bullets { grid-template-columns: 1fr; } }
.invite__bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.invite__bullets svg { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* —— FAQ —— */
.faq { background: var(--white); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item:first-child { border-top: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.18s ease;
}
.faq__q:hover { color: var(--gold-dark); }
.faq__icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.is-open .faq__a { max-height: 360px; padding: 0 0 24px; }
.faq__a p { color: var(--body); font-size: 16px; line-height: 1.7; padding-right: 36px; }

/* —— Form —— */
.booking { background: var(--beige-light); }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 880px) { .booking__grid { grid-template-columns: 1fr; gap: 36px; } }
.booking__copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
  margin-bottom: 18px;
}
.booking__copy p { color: var(--body); font-size: 17px; line-height: 1.6; margin-bottom: 28px; }
.booking__contact {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: grid; gap: 18px;
}
.booking__contact-item { display: flex; gap: 14px; align-items: flex-start; }
.booking__contact-item svg { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; }
.booking__contact-item strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }
.booking__contact-item span { color: var(--body); font-size: 14px; line-height: 1.5; }
.booking__form {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--hairline);
}
@media (max-width: 720px) { .booking__form { padding: 28px 22px; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 8px;
}
.field label .req { color: var(--gold-dark); }
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(220,165,74,0.15);
}
.checkbox {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 18px 0 24px;
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
}
.checkbox input { margin-top: 2px; accent-color: var(--gold); }
.checkbox a { border-bottom: 1px solid var(--gold); }
.booking__form .btn-primary { width: 100%; margin-bottom: 16px; }
.form__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--body);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.form__footnote a { color: var(--ink); border-bottom: 1px solid var(--gold); font-weight: 700; }
.form__success {
  text-align: center;
  padding: 32px 18px;
  color: var(--ink);
}
.form__success svg { width: 56px; height: 56px; color: var(--gold); margin: 0 auto 18px; }
.form__success h3 { font-size: 22px; margin-bottom: 12px; }
.form__success p { color: var(--body); font-size: 15px; }

/* —— Mallorca CTA —— */
.mallorca {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 0;
  min-height: 540px;
  display: flex; align-items: center;
}
.mallorca__bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.mallorca__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.mallorca__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(2,3,5,0.78) 0%, rgba(2,3,5,0.55) 50%, rgba(2,3,5,0.35) 100%);
}
.mallorca__inner { position: relative; z-index: 2; padding: 110px 28px; max-width: 1280px; margin: 0 auto; width: 100%; }
.mallorca__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.mallorca h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  max-width: 720px;
}
.mallorca__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 8px;
}
.mallorca__hours {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.mallorca__ctas { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

/* —— Footer —— */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 56px; width: auto; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer__tagline {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 18px;
}
.footer h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.18s ease; }
.footer a:hover { color: var(--gold); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* —— Sticky mobile bar —— */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  height: 64px;
  box-shadow: 0 -4px 20px rgba(2,3,5,0.12);
}
.sticky-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sticky-bar a svg { width: 18px; height: 18px; }
.sticky-bar__call { background: var(--ink); }
.sticky-bar__book { background: var(--gold); }
@media (max-width: 720px) {
  .sticky-bar { display: grid; }
  body { padding-bottom: 64px; }
}
@media (max-width: 540px) {
  .site-header__phone .label { display: none; }
}
