/* ==========================================================================
   YOLO MOBILE MASSAGE — Jola Acker
   Design system ported from venetianspa.ca
   Palette, type scale, radii, buttons and entrance animations all mirror
   the Venetian Nail Spa Elementor kit.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour — lifted from the Venetian Elementor global kit */
  --gold:        #B69F64;   /* --e-global-color-primary   */
  --cream:       #ECE8DF;   /* --e-global-color-secondary */
  --white:       #FFFFFF;   /* --e-global-color-text      */
  --taupe:       #CEC6B3;   /* --e-global-color-accent    */
  --gold-light:  #D3BC88;
  --shell:       #F5F3EF;
  --sand:        #F3EDE1;
  --ink:         #1C1A16;
  --ink-soft:    #4A453C;

  /* Type — Beautique Display → Cormorant Garamond, Inter-V → Inter */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale — matches the Venetian heading widgets */
  --fs-hero:    90px;
  --fs-xl:      65px;
  --fs-lg:      55px;
  --fs-md:      25px;
  --fs-sm:      20px;
  --fs-body:    16px;
  --fs-xs:      15px;

  /* Shape */
  --radius-sm:   20px;
  --radius:      28px;
  --radius-lg:   32px;
  --radius-pill: 30px;
  --arch:        500px 500px 0 0;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* entrance transforms must never open a sideways scroll */
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.0156em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 120px 0; position: relative; }

/* Keep anchored headings clear of the fixed header */
section[id] { scroll-margin-top: 96px; }
#about { scroll-margin-top: 0; } /* arch section reads better flush */

/* The signature Venetian arch: a huge top radius pulled up over the
   section above it. */
.arch-top {
  border-radius: var(--arch);
  margin-top: -140px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.display-xl { font-size: var(--fs-xl); line-height: 1.092em; letter-spacing: 0; }
.display-lg { font-size: var(--fs-lg); line-height: 1.03em;  letter-spacing: -0.014em; }
.display-md { font-size: var(--fs-md); line-height: 1.32em;  letter-spacing: -0.006em; }

.lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 62ch;
}

.text-center { text-align: center; }
.mx-auto    { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Buttons — 1px border, 30px pill, 0.7s transition (Venetian spec)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  line-height: 1.3em;
  letter-spacing: 0.02em;
  padding: 0.7em 1.8em;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.7s var(--ease);
  white-space: nowrap;
}

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

.btn--solid { background: var(--gold); color: var(--white); }
.btn--solid:hover { background: transparent; color: var(--gold); }

.btn--light { border-color: var(--white); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); }

.btn--lg { font-size: 18px; padding: 0.85em 2.2em; }

/* Elementor "grow" hover animation */
.hover-grow { transition: transform 0.3s; }
.hover-grow:hover { transform: scale(1.06); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: flex; flex-direction: column; line-height: 1; }

.brand__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.5s var(--ease);
}

.brand__sub {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 5px;
  transition: color 0.5s var(--ease);
}

.nav { display: flex; align-items: center; gap: 34px; }

.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 0;
  transition: color 0.4s var(--ease);
}

/* Elementor underline pointer */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* Current page */
.nav__link.is-active { color: var(--gold); }
.nav__link.is-active::after { transform: scaleX(1); }
.site-header.is-scrolled .nav__link.is-active { color: var(--gold); }
.mobile-nav a.is-active { color: var(--gold); }

/* Scrolled state */
.site-header.is-scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(28, 26, 22, 0.08);
}
.site-header.is-scrolled .brand__name,
.site-header.is-scrolled .nav__link { color: var(--ink); }
.site-header.is-scrolled .brand__sub { color: var(--gold); }
.site-header.is-scrolled .nav__link:hover { color: var(--gold); }
.site-header.is-scrolled .btn--light { border-color: var(--gold); color: var(--gold); }
.site-header.is-scrolled .btn--light:hover { background: var(--gold); color: var(--white); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  padding: 0;
}
.burger span {
  display: block; height: 1.5px; width: 24px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s, background 0.5s;
}
.site-header.is-scrolled .burger span { background: var(--ink); }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--white);
  padding: 10px 0;
  transition: color 0.4s;
}
.mobile-nav a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 160px 0 220px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center center / cover no-repeat;
  transform: scale(1.12);
  animation: heroZoom 2.4s var(--ease) forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 22, 0.58) 0%,
    rgba(28, 26, 22, 0.44) 45%,
    rgba(28, 26, 22, 0.64) 100%
  );
}

.hero__content { position: relative; z-index: 3; max-width: 900px; }

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.09em;
  letter-spacing: -0.004em;
  color: var(--white);
  margin-bottom: 26px;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
  margin: 0 auto 40px;
}

.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   6b. Page banner — the shorter hero used on interior pages
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 230px 0 200px;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.1);
  animation: heroZoom 2.4s var(--ease) forwards;
}

.page-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 22, 0.62) 0%,
    rgba(28, 26, 22, 0.48) 50%,
    rgba(28, 26, 22, 0.66) 100%
  );
}

.page-banner__content { position: relative; z-index: 3; max-width: 860px; }

.page-banner__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 22px;
}

.page-banner h1 {
  font-size: var(--fs-xl);
  line-height: 1.09em;
  letter-spacing: -0.004em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-banner h1 em { font-style: italic; color: var(--gold-light); }

.page-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 54ch;
  margin: 0 auto;
}

/* Breadcrumb under the banner heading.
   Scoped to .page-banner so it outranks `.page-banner p { margin: 0 auto }`. */
.page-banner .crumbs {
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.crumbs a { transition: color 0.4s; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { margin: 0 10px; }

/* --------------------------------------------------------------------------
   7. Intro (arch section over the hero)
   -------------------------------------------------------------------------- */
.intro {
  background: var(--shell);
  padding: 110px 0 120px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__media { position: relative; }

.intro__media img {
  border-radius: 300px 300px var(--radius) var(--radius);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Small gold badge that floats over the portrait */
.badge {
  position: absolute;
  right: -18px; bottom: 42px;
  width: 148px; height: 148px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 18px 45px rgba(182, 159, 100, 0.35);
}
.badge strong { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.badge span   { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   8. Philosophy band
   -------------------------------------------------------------------------- */
.philosophy {
  background: var(--cream);
  padding: 130px 0;
  text-align: center;
}

.philosophy h2 {
  font-size: var(--fs-xl);
  line-height: 1.092em;
  color: var(--gold);
  margin-bottom: 28px;
}
.philosophy h2 em { font-style: italic; color: var(--ink); }

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */
.services { background: var(--shell); padding: 120px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.section-head h2 { font-size: var(--fs-lg); line-height: 1.03em; letter-spacing: -0.014em; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 22, 0.05) 0%,
    rgba(28, 26, 22, 0.55) 58%,
    rgba(28, 26, 22, 0.86) 100%
  );
  transition: opacity 0.6s;
}

.service-card:hover img { transform: scale(1.07); }

.service-card__body { padding: 30px 28px 32px; color: var(--white); }

.service-card__num {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.service-card p {
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. Senior Wellness Thursdays
   -------------------------------------------------------------------------- */
.seniors { background: var(--sand); padding: 120px 0; }

.seniors__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.seniors__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--taupe);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 34px 0 32px;
}

.detail-list li { background: var(--sand); padding: 20px 22px; }

.detail-list dt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.detail-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
}

.note {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   10b. "What to expect" steps
   -------------------------------------------------------------------------- */
.steps-section { background: var(--shell); padding: 120px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px 38px;
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 22px;
}

.step h3 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.step p {
  font-size: var(--fs-xs);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Atmosphere gallery
   -------------------------------------------------------------------------- */
.atmosphere { background: var(--shell); padding: 120px 0; text-align: center; }

.atmosphere h2 {
  font-size: var(--fs-lg);
  line-height: 1.03em;
  letter-spacing: -0.014em;
  margin-bottom: 20px;
}
.atmosphere h2 em { font-style: italic; color: var(--gold); }

.atmosphere__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 62px;
}

.atmosphere__grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.atmosphere__grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.atmosphere__grid figure:hover img { transform: scale(1.06); }

/* Stagger the middle tile for the Venetian offset look */
.atmosphere__grid figure:nth-child(2) { transform: translateY(38px); }

/* --------------------------------------------------------------------------
   12. CTA arch band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  padding: 170px 0;
  text-align: center;
  color: var(--white);
  border-radius: var(--arch);
  overflow: hidden;
  margin-top: 60px;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: url("../img/cta.jpg") center / cover no-repeat;
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 22, 0.55);
}

.cta__content { position: relative; z-index: 2; }

.cta h2 {
  font-size: var(--fs-lg);
  line-height: 1.03em;
  letter-spacing: -0.014em;
  margin-bottom: 22px;
}
.cta h2 em { font-style: italic; color: var(--gold-light); }

.cta p { color: rgba(255, 255, 255, 0.84); max-width: 52ch; margin: 0 auto 36px; }

/* --------------------------------------------------------------------------
   13. Service area
   -------------------------------------------------------------------------- */
.area { background: var(--cream); padding: 110px 0; }

.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.pill {
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: all 0.5s var(--ease);
}
.pill:hover { background: var(--gold); color: var(--white); }

/* --------------------------------------------------------------------------
   14. Instagram strip
   -------------------------------------------------------------------------- */
.insta { background: var(--shell); padding: 110px 0; text-align: center; }

.insta h2 { font-size: var(--fs-lg); line-height: 1.03em; margin-bottom: 10px; }

.insta__handle {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
  display: inline-block;
  transition: opacity 0.4s;
}
.insta__handle:hover { opacity: 0.65; }

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

.insta__grid a { position: relative; overflow: hidden; border-radius: var(--radius-sm); }
.insta__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.insta__grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(182, 159, 100, 0);
  transition: background 0.5s;
}
.insta__grid a:hover img { transform: scale(1.08); }
.insta__grid a:hover::after { background: rgba(182, 159, 100, 0.28); }

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.reviews { background: var(--cream); padding: 120px 0; }

.reviews__head { text-align: center; margin-bottom: 62px; }
.reviews__head h2 { font-size: var(--fs-lg); line-height: 1.03em; }
.reviews__head h2 em { font-style: italic; color: var(--gold); }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }

.review p {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

.review__by {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact { background: var(--shell); padding: 120px 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 76px;
}

.contact h2 { font-size: var(--fs-lg); line-height: 1.03em; margin-bottom: 20px; }

.info-block { margin-top: 40px; }
.info-block + .info-block { margin-top: 28px; }

.info-block dt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-block dd { margin: 0; font-size: 17px; line-height: 1.65; }
.info-block dd a { transition: color 0.4s; }
.info-block dd a:hover { color: var(--gold); }

.info-block .big {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.2;
}

/* Form */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--shell);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.4s, background 0.4s;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
}

.form .btn { width: 100%; justify-content: center; margin-top: 6px; }

.form__note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 16px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0 34px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .brand__name { color: var(--white); }
.site-footer .brand__sub  { color: var(--gold); }

.site-footer p { color: rgba(255, 255, 255, 0.6); font-size: 14px; max-width: 40ch; margin-top: 22px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.4s;
}
.footer-col a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.5s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials svg { width: 16px; height: 16px; fill: currentColor; color: var(--white); }

.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   18. Entrance animations (Elementor slideInUp / slideInLeft / slideInDown)
   -------------------------------------------------------------------------- */
[data-anim] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-anim="up"]   { transform: translateY(46px); }
[data-anim="down"] { transform: translateY(-46px); }
[data-anim="left"] { transform: translateX(-56px); }
[data-anim="right"]{ transform: translateX(56px); }
[data-anim="fade"] { transform: none; }

[data-anim].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --fs-hero: 62px;
    --fs-xl:   46px;
    --fs-lg:   40px;
    --fs-md:   22px;
  }

  .nav { display: none; }
  .burger { display: flex; }
  .site-header .btn { display: none; }

  .intro__grid,
  .seniors__grid,
  .area__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  /* Columns stack here, so slide in vertically. Sideways offsets would
     push past the viewport edge while the element waits to animate. */
  [data-anim="left"],
  [data-anim="right"] { transform: translateY(46px); }

  .services__grid,
  .atmosphere__grid,
  .reviews__grid,
  .steps { grid-template-columns: repeat(2, 1fr); }

  .atmosphere__grid figure:nth-child(2) { transform: none; }

  .arch-top { border-radius: 300px 300px 0 0; margin-top: -90px; }
  .cta { border-radius: 300px 300px 0 0; padding: 120px 0; }
  .page-banner { padding: 180px 0 150px; }

  .section, .intro, .services, .seniors, .steps-section,
  .atmosphere, .area, .insta, .reviews, .contact { padding: 84px 0; }

  .badge { width: 118px; height: 118px; right: 8px; }
}

@media (max-width: 767px) {
  :root {
    --fs-hero: 44px;
    --fs-xl:   34px;
    --fs-lg:   31px;
  }

  .hero { padding: 130px 0 160px; min-height: 92vh; }
  .page-banner { padding: 150px 0 130px; }

  .services__grid,
  .atmosphere__grid,
  .reviews__grid,
  .steps,
  .detail-list,
  .form__row { grid-template-columns: 1fr; }

  .insta__grid { grid-template-columns: repeat(2, 1fr); }

  .section-head { flex-direction: column; align-items: flex-start; gap: 22px; }

  .arch-top { border-radius: 150px 150px 0 0; margin-top: -60px; }
  .cta { border-radius: 150px 150px 0 0; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }

  .form { padding: 32px 24px; }

  /* Keep the badge overlapping the portrait rather than stacking under it */
  .badge {
    position: absolute;
    z-index: 3;
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 18px;
  }
  .badge strong { font-size: 22px; }
  .badge span   { font-size: 8px; }
}

/* --------------------------------------------------------------------------
   20. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
  .hero__bg { transform: none; }
}
