/* =========================================================
   GLOBAL RESET & VARIABLES
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --gold: #d6a449;
  --gold-hover: #c7983a;
  --bg-dark: #000000;
  --header-height-desktop: 82px;
  --header-height-mobile: 64px;
}

html {
  scroll-behavior: smooth;
  background: #000000;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at 0 0,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.9) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  transform: skewX(-10deg);
  transform-origin: top left;
  z-index: -1;
  pointer-events: none;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--header-height-desktop);
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  gap: 2.5rem;
  font-size: 0.95rem;
}

.nav-desktop a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.03em;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease-out;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Right info block */
.header-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.82rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.info-title {
  margin: 0;
  font-weight: 600;
}

.info-sub {
  margin: 0;
  opacity: 0.8;
}

.info-sub a {
  color: inherit;
  text-decoration: none;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  width: 32px;
  height: 23px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  display: block;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height-desktop);
  background-image: url("./Assets/Hero.png");
  background-size: cover;
  background-position: center center;
  color: #ffffff;
}

/* dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 3vw 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* left / right blocks */
.hero-text {
  flex: 1 1 50%;
  max-width: 560px;
}

.hero-text h1 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 3vw + 1.2rem, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-text h2 {
  margin: 0 0 2rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 1.1vw + 1rem, 1.8rem);
  font-weight: 500;
}

.quote {
  margin-top: 1.5rem;
  padding: 1.8rem 2.2rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
}

.quote span {
  font-weight: 600;
}

/* glass */
.glass {
  background: rgba(0, 0, 0, 0.32);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* booking form in hero */
.booking {
  flex: 0 0 340px;
  padding: 2.2rem 2.5rem 2.3rem;
  border-radius: 28px;
}

.booking h3 {
  margin: 0 0 1.8rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.booking form {
  display: flex;
  flex-direction: column;
}

.booking input,
.booking textarea {
  width: 100%;
  margin-bottom: 1.3rem;
  padding: 0.6rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  resize: none;
}

.booking input::placeholder,
.booking textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.booking input:focus,
.booking textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

/* button */
.btn-gold {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.7rem 2.5rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease-out, transform 0.1s ease-out;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-gold:active {
  transform: translateY(1px);
}

/* nav anchor targets */
#about,
#testimonials,
#contact {
  height: 1px;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section {
  padding: 80px 7vw 90px;
  text-align: center;
}

.services-section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3vw + 1rem, 3rem);
  font-weight: 600;
}

/* decorative divider */
.services-divider {
  margin: 1.2rem auto 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f6d079;
  font-size: 1.2rem;
}

.services-divider::before,
.services-divider::after {
  content: "";
  height: 2px;
  width: 120px;
  background: linear-gradient(to right, transparent, #f6d079);
}

.services-divider::after {
  background: linear-gradient(to left, transparent, #f6d079);
}

.services-intro {
  max-width: 1000px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* grid */
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.2rem;
}

.service-card {
  text-align: center;
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.circle-border {
  margin: 0 auto 1.2rem;
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px dotted #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 60%);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

.circle-border img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin: 0;
}

/* =========================================================
   FOUNDER SECTION
========================================================= */
.founder-section {
  padding: 80px 7vw 90px;
  color: #ffffff;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* heading */
.founder-heading {
  margin-bottom: 1.4rem;
}

.founder-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  font-weight: 600;
}

.founder-divider {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f6d079;
  font-size: 1.1rem;
}

.founder-divider::before,
.founder-divider::after {
  content: "";
  height: 2px;
  width: 110px;
  background: linear-gradient(to right, transparent, #f6d079);
}

.founder-divider::after {
  background: linear-gradient(to left, transparent, #f6d079);
}

.founder-text {
  line-height: 1.8;
  font-size: 1.02rem;
}

.founder-text p {
  margin: 0 0 0.9rem;
}

/* image card */
.founder-photo-card {
  justify-self: center;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f7f7f7, #dcdcdc);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.7);
  position: relative;
}

.founder-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 500;
}

/* =========================================================
   SERUM / PRODUCT SECTION
========================================================= */
.spacer {
  height: 15vh;
}

.serum-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 6vw;
  display: flex;
  align-items: center;
  gap: 6vw;
  z-index: 1;
}

.serum-image-wrapper {
  flex: 0 0 42%;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.serum-image {
  max-width: 460px;
  width: 100%;
  transform: rotate(-15deg);
  transform-origin: center center;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.9));
}

.serum-content {
  flex: 1 1 auto;
  max-width: 620px;
}

.serum-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 2.8vw + 1rem, 3rem);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.serum-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.9rem;
}

.serum-body {
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
  max-width: 40rem;
}

.serum-subheading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.serum-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 2.4rem;
  font-size: 0.98rem;
}

.serum-list li + li {
  margin-top: 0.25rem;
}

.serum-price {
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* =========================================================
   REVIEWS / TESTIMONIALS
========================================================= */
.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 7vw 90px;
}

/* Heading */
.reviews-heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 2.8vw + 1rem, 3rem);
  margin: 0 0 10px;
}

.heading-decor {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #ffcf5b;
}

.heading-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #ffcf5b, rgba(255, 207, 91, 0.1));
}

.heading-stars {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Slider */
.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding-block: 10px;
}

.reviews-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  will-change: transform;
}

.review-card {
  min-width: 340px;
  max-width: 380px;
  padding: 26px 32px 32px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.96));
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75);
  color: #ffffff;
  position: relative;
  white-space: normal;
}

.review-card::before,
.review-card::after {
  content: "“";
  position: absolute;
  font-size: 1.8rem;
  color: #f6d16e;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.review-card::before {
  top: 16px;
  left: 20px;
}

.review-card::after {
  content: "”";
  bottom: 10px;
  right: 22px;
}

.review-name {
  font-weight: 500;
  margin: 0 0 6px 24px;
  font-size: 1.05rem;
}

.review-stars {
  margin: 0 0 16px 24px;
  color: #ffcf5b;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.review-text {
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 26rem;
  margin: 0 auto;
}

/* =========================================================
   FOOTER
========================================================= */
.footer-section {
  color: #ffffff;
  padding: 70px 6vw 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top brand row */
.footer-title-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 60px;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-logo-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-monogram {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.09);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.logo-name {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* bottom grid */
.footer-bottom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 3.2rem;
  align-items: flex-start;
}

#logo{
  height: 140px;
  border-radius: 50%;
}



.footer-tagline {
  max-width: 260px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
}

.social-insta {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 35%, #962fbf 60%, #4f5bd5 90%);
}

.social-yt {
  background: #ff0000;
  font-size: 1.2rem;
}

.social-fb {
  background: #1877f2;
  font-size: 1.2rem;
}

/* middle column */
.footer-services {
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-services p {
  margin: 0 0 0.3rem;
}

/* right column */
.footer-contact {
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

/* footer-specific icon styling */
.footer-contact .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.material-symbols-outlined {
  font-size: 20px;
}

.contact-text {
  margin: 0;
}

/* gold icon if used */
.foot-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #fff1b8,
    #d4af37 40%,
    #b8962e 70%,
    #8a6e1d
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.foot-icon-gold {
  width: 22px;
  height: 22px;
  fill: #2b1c00;
}
/* =========================================================
   GLOBAL SAFE DEFAULTS
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Single, consistent logo style */
#logo {
  max-width: 100%;
  max-height: 140px;
  height: auto;
  border-radius: 50%;
}

/* =========================================================
   SEPARATE BOOKING SECTION (#ma-booking)
========================================================= */
#ma-booking {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 6vw, 4rem);
  overflow: hidden; /* hides overlay edges but content still grows */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* soft overlay */
#ma-booking::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -40%;
  width: 70%;
  height: 180%;
  transform: skewX(-10deg);
  pointer-events: none;
  z-index: 0;
}

.ma-booking__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
}

/* left column */
.ma-booking__form-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0; /* prevents grid overflow */
}

.ma-booking__heading {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ma-booking__card {
  background: rgba(24, 24, 24, 0.95);
  border-radius: 32px;
  padding: 2.4rem 2.2rem 2.6rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.ma-booking__field {
  margin-bottom: 1.4rem;
}

.ma-booking__input,
.ma-booking__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555555;
  padding: 0.75rem 0 0.55rem;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
}

.ma-booking__input::placeholder,
.ma-booking__textarea::placeholder {
  color: #e5e5e5;
}

.ma-booking__textarea {
  resize: vertical;
  min-height: 68px;
  max-height: 150px;
}

.ma-booking__button-wrap {
  margin-top: 1.6rem;
  text-align: center;
}

.ma-booking__button {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  background: #7d6215;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  max-width: 100%;
}

.ma-booking__button:hover {
  background: #a88423;
  transform: translateY(-1px);
}

.ma-booking__button:active {
  transform: translateY(0);
}

/* right column */
.ma-booking__map-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.ma-booking__map-heading {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ma-booking__map-wrapper {
  background: #f7f7f7;
  padding: 0.6rem;
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.ma-booking__map-img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* --- medium screens / header & hero tweaks --- */
@media (max-width: 1024px) {
  .header-inner {
    padding-inline: 4vw;
  }

  .header-info {
    gap: 1.5rem;
  }

  .booking {
    flex-basis: 320px;
    max-width: 100%;
  }
}

/* --- tablet and large mobile (<=900px) --- */
@media (max-width: 900px) {
  :root {
    --header-height-desktop: var(--header-height-mobile);
  }

  .header-inner {
    height: var(--header-height-mobile);
  }

  .nav-desktop,
  .header-info {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    /* display: flex; */
    flex-direction: column;
    position: fixed;
    top: var(--header-height-mobile);
    right: 0;
    left: 0;
    padding: 1rem 6vw 1.5rem;
    background: rgba(0, 0, 0, 0.96);
    transform: translateY(-100%);
    transition: transform 0.25s ease-out;
    z-index: 40;
    max-height: calc(100vh - var(--header-height-mobile));
    overflow-y: auto;
  }

  .mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .hero {
    padding-top: var(--header-height-mobile);
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.4rem;
    padding: 3.2rem 6vw 3rem;
  }

  .hero-text {
    order: 1;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 5vw + 1rem, 2.6rem);
  }

  .hero-text h2 {
    font-size: clamp(1.15rem, 3.5vw + 0.7rem, 1.4rem);
  }

  .quote {
    margin-top: 1.2rem;
    padding: 1.4rem 1.6rem;
    border-radius: 28px;
    max-width: 100%;
  }

  .booking {
    order: 2;
    width: 100%;
    max-width: 520px;
    padding: 1.7rem 1.6rem 2rem;
    border-radius: 30px;
  }

  .booking h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .founder-section {
    padding: 70px 7vw 80px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-photo-card {
    order: -1;
    max-width: 100%;
  }

  .serum-section {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .serum-content {
    max-width: 100%;
  }

  .serum-body {
    margin-left: auto;
    margin-right: auto;
  }

  .serum-list {
    text-align: left;
    display: inline-block;
  }

  #ma-booking {
    min-height: auto;
    padding: 3rem 1.8rem;
    align-items: flex-start;
  }

  #ma-booking::before {
    left: -35%;
    width: 85%;
    height: 190%;
    transform: skewX(-12deg);
  }

  .ma-booking__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ma-booking__form-column,
  .ma-booking__map-column {
    align-items: center;
    text-align: center;
  }

  .ma-booking__card,
  .ma-booking__map-wrapper {
    max-width: 480px;
    width: 100%;
  }

  .ma-booking__heading,
  .ma-booking__map-heading {
    align-self: center;
  }
}

/* --- tablets & smaller phones for reviews, hero fine tune --- */
@media (max-width: 768px) {
  .review-card {
    min-width: 240px;
    max-width: 280px;
    width: 100%;
    padding-inline: 22px;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .reviews-section {
    padding: 70px 7vw 80px;
  }

  .hero-content {
    padding-top: 2.8rem;
    gap: 2rem;
  }

  .quote {
    border-radius: 24px;
  }
}

/* --- footer grid & brand row --- */
@media (max-width: 960px) {
  .footer-section {
    padding: 60px 6vw 70px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .footer-title-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-line {
    width: 100%;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

/* --- small phones (<=600px) global section padding / text --- */
@media (max-width: 600px) {
  .services-section,
  .founder-section,
  .serum-section,
  .reviews-section,
  .footer-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .services-intro,
  .founder-text,
  .serum-body {
    font-size: 0.95rem;
  }

  .services-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .founder-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .serum-section {
    padding-inline: 7vw;
  }

  .spacer {
    height: 9vh;
  }

  .serum-heading {
    font-size: 2rem;
  }

  .serum-tagline {
    font-size: 1rem;
  }

  #ma-booking {
    padding: 2.2rem 1.2rem;
  }

  .ma-booking__card {
    padding: 2rem 1.6rem 2.2rem;
    border-radius: 24px;
    max-width: 100%;
  }

  .ma-booking__heading,
  .ma-booking__map-heading {
    font-size: 1.65rem;
    margin-bottom: 1.1rem;
  }

  .ma-booking__field {
    margin-bottom: 1.1rem;
  }

  .ma-booking__map-wrapper {
    padding: 0.4rem;
    max-width: 100%;
  }
}

/* --- services grid collapse & founder card size --- */
@media (max-width: 992px) {
  .services-section {
    padding: 70px 6vw 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.7rem;
  }

  .circle-border {
    width: 200px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .circle-border {
    width: 230px;
    max-width: 100%;
  }

  .founder-photo-card {
    max-width: 360px;
    width: 100%;
  }
}

/* --- extra-small phones adjustments --- */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 2.4rem;
  }

  .booking {
    padding: 1.5rem 1.3rem 1.8rem;
  }

  .logo-monogram {
    font-size: 2.7rem;
  }

  .logo-name {
    letter-spacing: 0.32em;
    font-size: 0.8rem;
  }

  /* booking section tighter on very small screens */
  #ma-booking {
    padding-inline: 1rem;
  }
}





/* Sticky Call + WhatsApp */
.sticky-contact {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}

.sticky-contact .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.sticky-contact .cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.sticky-contact .cta-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 8px 20px rgba(0,0,0,0.25);
}

/* Colors */
.sticky-contact .cta-btn.call {
  background: #22c55e; /* Brand green */
}
.sticky-contact .cta-btn.whatsapp {
  background: #25D366; /* WhatsApp green */
}

/* Show text labels on larger screens */
.sticky-contact .label {
  display: none;
}
@media (min-width: 768px) {
  .sticky-contact .cta-btn {
    width: auto;
    padding: 0 14px;
  }
  .sticky-contact .label {
    display: inline;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sticky-contact .cta-btn {
    transition: none;
  }
}

/* Don’t show in print */
@media print {
  .sticky-contact { display: none !important; }
}