
:root {
  --ink: #17110f;
  --ink-soft: #41342f;
  --ivory: #fbf8f2;
  --cream: #f4ece3;
  --cream-deep: #e8d6c8;
  --blush: #d9b4aa;
  --rose: #b7867f;
  --cocoa: #65433d;
  --cocoa-deep: #432b27;
  --gold: #c79631;
  --gold-light: #edcb70;
  --gold-deep: #8c6420;
  --line: rgba(140, 100, 32, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Allura", cursive;
  --font-body: "Jost", Arial, sans-serif;
  --font-arabic: "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.eyebrow {
  margin: 0;
  color: var(--cocoa);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 90px;
  padding-top: 10px;
  background: linear-gradient(180deg, rgba(250, 244, 238, 0.76), rgba(250, 244, 238, 0));
  pointer-events: none;
}

.header-shell {
  width: min(1040px, calc(100% - 36px));
  height: 64px;
  padding: 7px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.86), rgba(238, 220, 207, 0.7));
  border: 1px solid rgba(151, 105, 54, 0.2);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(85, 53, 37, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(1.16);
  perspective: 1000px;
  pointer-events: auto;
}

.desktop-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 0.65vw, 9px);
}

.nav-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 clamp(13px, 1.45vw, 21px);
  border: 1px solid rgba(151, 106, 59, 0.08);
  border-radius: 999px;
  color: #604b44;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.1vw, 1.06rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform-style: preserve-3d;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), color 220ms ease,
    background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: -30% -45%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 242, 187, 0.68) 49%, transparent 61%);
  transform: translateX(-72%) rotate(4deg);
  transition: transform 620ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 20px 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 240ms ease;
}

.nav-link > span,
.nav-link > small {
  position: relative;
  z-index: 1;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: rgba(255, 251, 245, 0.84);
  border-color: rgba(175, 126, 55, 0.28);
  box-shadow: 0 12px 24px rgba(86, 54, 39, 0.13), inset 0 1px 0 white;
  transform: translateY(-4px) rotateX(8deg) scale(1.025);
  outline: none;
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  transform: translateX(72%) rotate(4deg);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--ink);
  background: rgba(255, 251, 246, 0.6);
  border-color: rgba(184, 139, 63, 0.2);
}

.nav-link.nav-cta,
.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus-visible {
  color: #f3d66e;
  background: linear-gradient(145deg, #7c554d, #513632);
  border-color: rgba(201, 158, 62, 0.68);
  box-shadow: 0 10px 22px rgba(71, 42, 34, 0.16), inset 0 1px 0 rgba(255,255,255,0.15);
}

.nav-placeholder {
  padding-right: clamp(15px, 1.7vw, 25px);
  cursor: default;
}

.nav-placeholder small {
  position: absolute;
  right: 8px;
  top: 4px;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-placeholder:hover small {
  opacity: 0.78;
  transform: translateY(0);
}

.header-gold-line {
  width: min(780px, 70vw);
  height: 1px;
  margin: 5px auto 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), #fff4ad, var(--gold));
  opacity: 0.46;
}

.mobile-home-link,
.mobile-menu {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 116px 24px 42px;
  display: grid;
  place-items: start center;
  overflow: hidden;
  background: #e7c3b7;
}

.home-photo,
.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.home-photo {
  z-index: -4;
  background: url("../images/home-treatment.webp") center 48% / cover no-repeat;
  filter: saturate(0.72) contrast(0.94);
  transform: scale(1.035);
}

.home-hero::after {
  z-index: -3;
  background:
    linear-gradient(108deg, rgba(242, 225, 214, 0.77), rgba(222, 171, 160, 0.57)),
    radial-gradient(circle at 50% 44%, rgba(255, 250, 242, 0.55), rgba(197, 128, 119, 0.12) 58%);
}

.fabric-light {
  position: absolute;
  z-index: -2;
  width: 70vw;
  height: 115vh;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.52), rgba(255, 247, 238, 0.04));
  box-shadow: inset 24px 0 58px rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.fabric-light-one {
  right: -35vw;
  top: 14vh;
  transform: rotate(18deg);
}

.fabric-light-two {
  left: -47vw;
  bottom: -72vh;
  transform: rotate(-22deg);
}

.home-hero-content {
  width: min(980px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: hero-arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-logo {
  width: min(780px, 78vw);
  height: auto;
  margin: -26px auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(65, 37, 27, 0.12));
  transform-origin: 50% 55%;
  animation: logo-settle 1.15s cubic-bezier(0.2, 0.75, 0.25, 1) both;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 320ms ease;
}

.hero-logo:hover {
  transform: translateY(-4px) rotateX(1deg) scale(1.012);
  filter: drop-shadow(0 27px 42px rgba(65, 37, 27, 0.17));
}

.hero-copy-block {
  width: min(760px, 100%);
  position: relative;
  z-index: 2;
}

.hero-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.light-sweep-text {
  color: var(--ink);
}

.light-sweep-text span {
  color: var(--ink);
}

.light-sweep-text.is-intro span,
.light-sweep-text.is-hover span {
  color: transparent;
  background-image: linear-gradient(
    100deg,
    var(--ink) 0%,
    var(--ink) 40%,
    #bd8d2d 47%,
    #fff3b0 50%,
    #bd8d2d 53%,
    var(--ink) 60%,
    var(--ink) 100%
  );
  background-size: 320% 100%;
  background-position: 150% 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 223, 123, 0.08));
}

.light-sweep-text.is-intro span {
  animation: text-light-intro 3.9s ease-out 0.55s 1 both;
}

.light-sweep-text.is-hover span {
  animation: text-light-hover 4.8s ease-in-out 1 both;
}

.hero-description {
  width: min(660px, 94%);
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  line-height: 1.62;
  text-wrap: balance;
}

.image-book-button {
  position: relative;
  isolation: isolate;
  width: min(330px, 76vw);
  margin-top: 22px;
  border-radius: 999px;
  transition: transform 220ms ease, filter 220ms ease;
}

.image-book-button > img,
.book-image-link > img {
  position: relative;
  z-index: 1;
}

.image-book-button::before,
.book-image-link::before {
  content: "";
  position: absolute;
  inset: 4px 8px;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 249, 205, 0.82) 49%, transparent 63%);
  clip-path: inset(0 round 999px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-135%) skewX(-16deg);
}

.image-book-button::after {
  content: "";
  position: absolute;
  inset: 8px 24px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(113, 71, 59, 0.42);
  filter: blur(24px);
  transform: translateY(12px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.image-book-button:hover,
.image-book-button:focus-visible {
  transform: translateY(-6px) scale(1.055);
  filter: saturate(1.08) brightness(1.04);
  outline: 2px solid rgba(230, 197, 92, 0.62);
  outline-offset: 4px;
}

.image-book-button:hover::before,
.image-book-button:focus-visible::before,
.book-image-link:hover::before,
.book-image-link:focus-visible::before {
  opacity: 1;
  animation: book-light-sweep 1.7s ease-out both;
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.52), rgba(208, 166, 144, 0.11) 58%, transparent 72%);
  box-shadow: inset 0 0 48px rgba(255,255,255,0.2), 0 35px 80px rgba(106, 68, 50, 0.08);
  pointer-events: none;
}

.hero-aurora-one {
  top: 18%;
  left: -9%;
}

.hero-aurora-two {
  right: -7%;
  bottom: 9%;
  width: clamp(150px, 19vw, 280px);
}

.image-book-button:hover::after,
.image-book-button:focus-visible::after {
  transform: translateY(19px) scale(1.06);
}

.social-wrap {
  position: relative;
}

.social-hero {
  margin-top: 18px;
}

.social-links {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(255, 250, 244, 0.69);
  border: 1px solid rgba(177, 128, 49, 0.32);
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(94, 56, 34, 0.08);
  cursor: pointer;
  transition: transform 200ms ease, color 200ms ease, background 200ms ease,
    box-shadow 200ms ease;
}

.social-button svg {
  width: 19px;
  height: 19px;
}

.social-button:hover,
.social-button:focus-visible {
  color: #fff4be;
  background: var(--cocoa);
  box-shadow: 0 12px 26px rgba(79, 46, 31, 0.22), 0 0 0 4px rgba(212, 167, 67, 0.15);
  transform: translateY(-6px) rotate(-5deg) scale(1.09);
  outline: none;
}

.social-button:nth-child(even):hover,
.social-button:nth-child(even):focus-visible {
  transform: translateY(-6px) rotate(5deg) scale(1.09);
}

.hero-contact-line {
  margin-top: 17px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(51, 39, 35, 0.74);
  background: rgba(255, 252, 247, 0.38);
  border: 1px solid rgba(151, 106, 59, 0.13);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
}

.hero-contact-line a {
  transition: color 180ms ease;
}

.hero-contact-line a:hover {
  color: var(--gold-deep);
}

/* Signature section */
.home-signature {
  position: relative;
  min-height: 680px;
  padding: 96px max(6vw, 24px);
  display: grid;
  grid-template-columns: minmax(270px, 0.58fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 70%, rgba(215, 178, 131, 0.2), transparent 31%),
    linear-gradient(125deg, #fffdf8, #f5eee7 65%, #ead9cb);
}

.home-signature::before {
  content: "";
  position: absolute;
  width: 54vw;
  height: 54vw;
  right: -24vw;
  bottom: -33vw;
  border: 1px solid rgba(170, 125, 64, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.17), 0 0 0 120px rgba(255, 255, 255, 0.12);
}

.signature-photo-wrap {
  position: relative;
  width: min(330px, 78%);
  aspect-ratio: 0.82;
  justify-self: end;
  perspective: 900px;
}

.signature-photo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 48% 48% 30px 30px;
  border: 6px solid rgba(255, 250, 242, 0.96);
  box-shadow: 0 30px 70px rgba(77, 48, 32, 0.19), 0 0 0 1px rgba(166, 116, 43, 0.68);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease;
}

.signature-photo-wrap:hover img {
  transform: translateY(-7px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 38px 82px rgba(77, 48, 32, 0.24), 0 0 0 1px var(--gold);
}

.signature-ring {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(174, 124, 45, 0.55);
  border-radius: 48% 48% 34px 34px;
}

.signature-ring::after {
  content: "✦";
  position: absolute;
  top: 7%;
  right: 7%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #f1cc67;
  background: var(--cocoa);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(250, 246, 238, 0.88);
}

.signature-caption {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 5%;
  color: #fff8e9;
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 5vw, 5.2rem);
  line-height: 0.8;
  text-shadow: 0 3px 0 rgba(70, 38, 28, 0.55), 0 10px 25px rgba(60, 35, 26, 0.3);
  transform: rotate(-5deg);
}

.signature-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.69), rgba(242,225,213,0.54));
  border: 1px solid rgba(157, 111, 55, 0.2);
  border-radius: 36px;
  box-shadow: 0 26px 70px rgba(88, 53, 34, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(18px);
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 300ms ease;
}

.signature-copy::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -80px;
  border: 1px solid rgba(196, 151, 73, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,255,255,0.12);
  pointer-events: none;
}

.signature-copy:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 82px rgba(88, 53, 34, 0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.signature-copy h2 {
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.25vw, 4.7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.signature-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.82;
}

.signature-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button-dark {
  color: #f8e8b5;
  background: linear-gradient(145deg, #755047, #3f2925);
  border: 1px solid #bb8c36;
  box-shadow: 0 12px 28px rgba(70, 39, 30, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 17px 35px rgba(70, 39, 30, 0.25);
  outline: none;
}

.text-link {
  position: relative;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(7px);
}

.credential-line {
  margin-top: 46px;
  padding-top: 23px;
  display: flex;
  gap: 20px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  color: #7a665d;
  font-size: 0.82rem;
}

.credential-line strong {
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Floating WhatsApp Business contact */
.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.6vw, 38px);
  bottom: clamp(20px, 3vw, 38px);
  z-index: 48;
  isolation: isolate;
  max-width: calc(100vw - 32px);
  min-height: 84px;
  padding: 8px 8px 8px 22px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 250, 244, 0.34));
  border: 1px solid rgba(181, 134, 62, 0.42);
  border-radius: 999px;
  box-shadow:
    0 18px 46px rgba(55, 31, 25, 0.16),
    0 0 0 5px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px) saturate(1.1);
  transform-origin: right center;
  animation: whatsapp-float-arrive 720ms cubic-bezier(0.2, 0.8, 0.25, 1) both;
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 239, 171, 0.2) 49%, transparent 64%);
  background-size: 240% 100%;
  background-position: 130% 0;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: rgba(239, 204, 112, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 244, 0.54));
  box-shadow:
    0 26px 62px rgba(55, 31, 25, 0.22),
    0 0 0 7px rgba(83, 211, 92, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-6px) scale(1.025);
  outline: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 1;
  animation: whatsapp-light-sweep 1.45s ease-out both;
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(0.985);
}

.whatsapp-float-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
}

.whatsapp-float-copy strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.whatsapp-float-copy small {
  margin-top: 5px;
  color: var(--cocoa);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.whatsapp-float-icon {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  margin-left: 12px;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 16px rgba(24, 73, 29, 0.25));
  animation: whatsapp-soft-bounce 5s ease-in-out 1.15s infinite;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 220ms ease;
}

.whatsapp-float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover .whatsapp-float-icon,
.whatsapp-float:focus-visible .whatsapp-float-icon {
  animation-play-state: paused;
  filter: drop-shadow(0 15px 19px rgba(25, 91, 31, 0.33));
  transform: rotate(-5deg) scale(1.065);
}

/* Footer */
.site-footer {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 120%, rgba(205, 157, 74, 0.16), transparent 31%),
    linear-gradient(120deg, #fffdf8, #f2e7de 64%, #ead7c9);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep)) 1;
}

.footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: block;
}

.footer-logo {
  width: min(330px, 100%);
  height: auto;
  margin: -45px 0 -36px -16px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(89, 54, 37, 0.1));
  transition: transform 220ms ease, filter 220ms ease;
}

.footer-brand a:hover .footer-logo,
.footer-brand a:focus-visible .footer-logo {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 17px 28px rgba(89, 54, 37, 0.16));
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #5c4a43;
  font-size: 0.88rem;
}

.footer-links a,
.footer-contact > a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact > a:hover {
  color: var(--gold-deep);
  transform: translateX(4px);
}

.footer-contact .social-wrap {
  margin-top: 11px;
  align-self: flex-start;
}

.footer-contact .social-links {
  max-width: 360px;
  margin-inline: 0;
  justify-content: flex-start;
  gap: 7px;
}

.footer-contact .social-button {
  width: 36px;
  height: 36px;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(160, 111, 39, 0.3);
}

.footer-bottom {
  padding: 17px max(4vw, 24px);
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(73, 54, 46, 0.66);
  border-top: 1px solid rgba(140, 100, 32, 0.17);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logo-settle {
  from { opacity: 0.35; transform: translateY(-18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes text-light-intro {
  0%, 12% { background-position: 150% 0; }
  88%, 100% { background-position: -150% 0; }
}

@keyframes text-light-hover {
  from { background-position: 150% 0; }
  to { background-position: -150% 0; }
}

@keyframes book-light-sweep {
  from { transform: translateX(-135%) skewX(-16deg); }
  to { transform: translateX(135%) skewX(-16deg); }
}

@keyframes panel-light-sweep {
  from { transform: translateX(-56%); }
  to { transform: translateX(56%); }
}

@keyframes category-light-sweep {
  from { background-position: 130% 0; }
  to { background-position: -120% 0; }
}

@keyframes whatsapp-float-arrive {
  from { opacity: 0; transform: translateY(34px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes whatsapp-soft-bounce {
  0%, 70%, 100% { transform: translateY(0) rotate(0); }
  78% { transform: translateY(-9px) rotate(-3deg); }
  84% { transform: translateY(1px) rotate(1deg); }
  91% { transform: translateY(-4px) rotate(-1deg); }
  96% { transform: translateY(0) rotate(0); }
}

@keyframes whatsapp-light-sweep {
  from { background-position: 130% 0; }
  to { background-position: -120% 0; }
}

@media (max-width: 860px) {
  .site-header {
    height: 78px;
    padding-top: 7px;
  }

  .header-shell {
    width: min(100% - 24px, 680px);
    height: 60px;
    padding: 6px 7px 6px 18px;
    justify-content: space-between;
    border-radius: 22px;
  }

  .desktop-navigation {
    display: none;
  }

  .mobile-home-link {
    display: inline-flex;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.48);
    border: 1px solid rgba(151,105,54,0.23);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 17px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: 53px;
    right: 0;
    width: min(290px, calc(100vw - 32px));
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 252, 247, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(66, 38, 27, 0.2);
    backdrop-filter: blur(22px);
  }

  .mobile-menu nav a,
  .mobile-placeholder {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 11px;
    font-family: var(--font-display);
    font-size: 1.06rem;
  }

  .mobile-placeholder {
    color: #7d6a62;
  }

  .mobile-placeholder small {
    color: var(--gold-deep);
    font-family: var(--font-body);
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a.is-active {
    color: #f7d87a;
    background: var(--cocoa);
  }

  .home-hero {
    padding-top: 98px;
  }

  .hero-logo {
    width: min(700px, 92vw);
    margin: -6px auto 14px;
  }

  .home-signature {
    padding-block: 90px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .signature-photo-wrap {
    width: min(320px, 74vw);
    justify-self: center;
  }

  .signature-copy {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .signature-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .signature-actions,
  .credential-line {
    justify-content: center;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 12px;
    bottom: calc(13px + env(safe-area-inset-bottom));
    min-height: 68px;
    padding: 6px 6px 6px 16px;
  }

  .whatsapp-float-copy strong {
    font-size: 1rem;
  }

  .whatsapp-float-copy small {
    margin-top: 3px;
    font-size: 0.55rem;
    letter-spacing: 0.065em;
  }

  .whatsapp-float-icon {
    width: 64px;
    height: 64px;
    margin-left: 8px;
  }

  .home-hero {
    min-height: 850px;
    padding: 95px 18px 44px;
  }

  .home-photo {
    background-position: 58% center;
  }

  .hero-logo {
    width: min(620px, 94vw);
    max-width: 94vw;
    margin: 6px auto 14px;
  }

  .hero-lead {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .hero-description {
    width: 100%;
    font-size: 0.95rem;
  }

  .image-book-button {
    width: min(310px, 88vw);
  }

  .social-button {
    width: 43px;
    height: 43px;
  }

  .hero-contact-line {
    max-width: 330px;
    line-height: 1.6;
  }

  .hero-contact-line span {
    display: none;
  }

  .home-signature {
    min-height: auto;
    padding: 82px 20px 88px;
    gap: 65px;
  }

  .signature-photo-wrap {
    width: min(280px, 72vw);
  }

  .signature-caption {
    right: -18px;
  }

  .signature-copy h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .signature-actions {
    flex-direction: column;
    gap: 24px;
  }

  .credential-line {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .light-sweep-text {
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: var(--ink);
    filter: none;
  }

  .light-sweep-text span {
    color: var(--ink) !important;
    background: none !important;
    -webkit-text-fill-color: var(--ink) !important;
  }
}

/* Interior page foundations */
.interior-page {
  min-height: 100vh;
  background: var(--ivory);
}

.page-hero {
  padding-top: 82px;
}

.script-heading {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.page-intro {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Services */
.services-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("../images/services-floral-one.webp") center / cover no-repeat;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.82), rgba(247, 237, 230, 0.4)),
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.62), transparent 50%);
}

.services-hero-content {
  width: min(1240px, calc(100% - 44px));
  padding: 78px 0 62px;
  text-align: center;
}

.services-hero h1 {
  margin-top: 14px;
  font-size: clamp(4.6rem, 8vw, 7.4rem);
  text-shadow: 1px 2px 0 rgba(214, 161, 74, 0.5);
}

.services-hero .page-intro {
  width: min(680px, 100%);
  margin: 22px auto 0;
}

.service-category-showcase {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 2vw, 26px);
}

.service-category-link {
  position: relative;
  min-width: 0;
  padding: 0 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  text-align: center;
  transition: color 200ms ease, transform 200ms ease;
}

.service-category-visual {
  position: relative;
  width: min(100%, 166px);
  aspect-ratio: 1;
  margin-bottom: 11px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(166, 116, 43, 0.5);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(89, 54, 34, 0.11), 0 0 0 6px rgba(255, 252, 246, 0.72);
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 260ms ease;
}

.service-category-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 34%, rgba(255, 242, 177, 0.43) 48%, transparent 61%);
  background-size: 240% 100%;
  background-position: 130% 0;
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-category-link.is-signature .service-category-visual {
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(91, 55, 35, 0.17), 0 0 0 6px rgba(211, 168, 77, 0.2);
}

.service-category-link strong {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.4vw, 1.18rem);
  font-weight: 600;
  line-height: 1.08;
}

.service-category-link small {
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-category-link:hover,
.service-category-link:focus-visible {
  color: var(--gold-deep);
  transform: translateY(-4px);
  outline: none;
}

.service-category-link:hover .service-category-visual,
.service-category-link:focus-visible .service-category-visual {
  transform: translateY(-7px) scale(1.045);
  box-shadow: 0 24px 50px rgba(89, 54, 34, 0.19), 0 0 0 7px rgba(211, 168, 77, 0.2);
}

.service-category-link:hover .service-category-visual::after,
.service-category-link:focus-visible .service-category-visual::after {
  opacity: 1;
  animation: category-light-sweep 1.15s ease both;
}

.service-editorial {
  position: relative;
  min-height: 720px;
  padding: 90px max(6vw, 26px);
  display: grid;
  grid-template-columns: minmax(390px, 0.94fr) minmax(450px, 1.06fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
  overflow: hidden;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep)) 1;
}

.service-editorial.reverse .service-copy {
  order: 2;
}

.service-editorial.reverse .service-design-panel {
  order: 1;
}

.service-facials {
  background:
    linear-gradient(105deg, rgba(255, 252, 247, 0.95), rgba(250, 239, 232, 0.74)),
    url("../images/services-floral-two.webp") center / cover no-repeat;
}

.service-lashes {
  background:
    linear-gradient(115deg, rgba(247, 236, 226, 0.78), rgba(255, 253, 249, 0.94)),
    url("../images/services-pampas-one.webp") center / cover no-repeat;
}

.service-pmu {
  background:
    radial-gradient(circle at 80% 28%, rgba(221, 180, 157, 0.33), transparent 34%),
    linear-gradient(135deg, #fffdf8, #efe2d7);
}

.service-copy {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 3.7vw, 50px);
  background: linear-gradient(135deg, rgba(255,255,255,0.68), rgba(247,236,227,0.5));
  border: 1px solid rgba(157, 111, 55, 0.19);
  border-radius: 34px;
  box-shadow: 0 25px 66px rgba(82,49,32,0.09), inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
}

.service-copy h2,
.services-cta h2,
.category-card h2,
.about-cta h2,
.book-final-cta h2 {
  margin: 16px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.45vw, 4.9rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.service-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.74;
}

.service-list {
  margin: 30px 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #473934;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-list li span {
  color: var(--gold);
  font-size: 0.62rem;
}

.service-design-panel {
  position: relative;
  isolation: isolate;
  width: min(540px, 100%);
  min-height: 510px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(157, 111, 55, 0.24);
  border-radius: 46px;
  box-shadow: 0 32px 80px rgba(81, 49, 32, 0.14), inset 0 1px 0 rgba(255,255,255,0.82);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease;
}

.service-design-rose {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.72), transparent 26%),
    linear-gradient(145deg, rgba(250,239,232,0.9), rgba(218,177,164,0.7));
}

.service-design-sand {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.7), transparent 27%),
    linear-gradient(145deg, rgba(255,252,246,0.92), rgba(218,196,170,0.68));
}

.service-design-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(139, 99, 45, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 99, 45, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, black 12%, transparent 72%);
}

.service-design-panel::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  background: linear-gradient(110deg, transparent 42%, rgba(255,246,193,0.38) 50%, transparent 58%);
  transform: translateX(-54%);
  pointer-events: none;
}

.service-design-panel:hover {
  transform: translateY(-9px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 42px 95px rgba(81, 49, 32, 0.2), inset 0 1px 0 rgba(255,255,255,0.92);
}

.service-design-panel:hover::after {
  animation: panel-light-sweep 1.9s ease-out both;
}

.design-orbit {
  position: absolute;
  border: 1px solid rgba(161, 113, 43, 0.34);
  border-radius: 50%;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.design-orbit-one {
  width: 78%;
  aspect-ratio: 1;
  transform: rotate(-12deg);
}

.design-orbit-two {
  width: 58%;
  aspect-ratio: 1;
  border-color: rgba(255,255,255,0.68);
  box-shadow: 0 0 0 22px rgba(255,255,255,0.08);
  transform: rotate(18deg);
}

.service-design-panel:hover .design-orbit-one {
  transform: rotate(0deg) scale(1.03);
}

.service-design-panel:hover .design-orbit-two {
  transform: rotate(30deg) scale(0.97);
}

.design-icon-shell {
  position: relative;
  z-index: 2;
  width: min(225px, 52%);
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255,253,248,0.8);
  border: 1px solid rgba(158,111,44,0.5);
  border-radius: 50%;
  box-shadow: 0 28px 60px rgba(82,49,31,0.18), 0 0 0 10px rgba(255,250,243,0.38);
  transform: translateY(-34px) translateZ(36px);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.design-icon-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-design-panel:hover .design-icon-shell {
  transform: translateY(-42px) translateZ(52px) scale(1.035);
}

.design-panel-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 27px;
  z-index: 3;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,253,248,0.7);
  border: 1px solid rgba(151, 105, 54, 0.2);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(76,46,31,0.09), inset 0 1px 0 rgba(255,255,255,0.84);
  backdrop-filter: blur(16px);
  text-align: center;
}

.design-panel-copy small,
.design-panel-copy span {
  color: var(--gold-deep);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.design-panel-copy strong {
  margin: 2px 0 5px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.pmu-portrait-panel {
  position: relative;
  isolation: isolate;
  width: min(520px, 100%);
  min-height: 540px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.7), transparent 28%),
    linear-gradient(145deg, rgba(255,253,249,0.88), rgba(218,181,164,0.66));
  border: 1px solid rgba(157, 111, 55, 0.24);
  border-radius: 48px;
  box-shadow: 0 34px 84px rgba(80, 48, 32, 0.15), inset 0 1px 0 rgba(255,255,255,0.88);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease;
}

.pmu-portrait-panel:hover {
  transform: translateY(-9px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 44px 98px rgba(80, 48, 32, 0.21), inset 0 1px 0 white;
}

.pmu-orbit {
  position: absolute;
  border: 1px solid rgba(165, 116, 45, 0.36);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.pmu-orbit-one {
  width: 78%;
  aspect-ratio: 1;
  transform: rotate(-14deg);
}

.pmu-orbit-two {
  width: 58%;
  aspect-ratio: 1;
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 24px rgba(255,255,255,0.09);
  transform: rotate(20deg);
}

.pmu-portrait-panel:hover .pmu-orbit-one {
  transform: rotate(-2deg) scale(1.03);
}

.pmu-portrait-panel:hover .pmu-orbit-two {
  transform: rotate(32deg) scale(0.97);
}

.pmu-founder {
  position: relative;
  z-index: 2;
  width: min(350px, 68%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 7px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 30px 72px rgba(74, 43, 31, 0.23), 0 0 0 1px var(--gold);
  transform: translateY(-30px) translateZ(42px);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.pmu-portrait-panel:hover .pmu-founder {
  transform: translateY(-38px) translateZ(56px) scale(1.025);
}

.pmu-portrait-panel > p {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--cocoa);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pmu-portrait-panel > p span {
  color: #fff8e8;
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.64;
  letter-spacing: 0;
  text-shadow: 0 2px 0 var(--cocoa), 0 8px 20px rgba(68, 38, 29, 0.3);
  text-transform: none;
}

.service-category-grid {
  padding: 110px max(5vw, 24px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background:
    linear-gradient(rgba(255, 252, 247, 0.92), rgba(247, 237, 230, 0.92)),
    url("../images/services-pampas-two.webp") center / cover no-repeat;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep)) 1;
}

.category-card {
  position: relative;
  isolation: isolate;
  min-height: 535px;
  padding: 42px 36px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.86), rgba(238, 220, 207, 0.68));
  border: 1px solid rgba(160, 112, 54, 0.24);
  border-radius: 38px;
  box-shadow: 0 25px 64px rgba(78, 45, 30, 0.1), inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 280ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 246, 196, 0.42) 50%, transparent 58%);
  transform: translateX(-56%);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 38px 84px rgba(78, 45, 30, 0.17), inset 0 1px 0 white;
}

.category-card:hover::before {
  animation: panel-light-sweep 1.9s ease-out both;
}

.category-number {
  position: absolute;
  top: 30px;
  right: 32px;
  color: rgba(145, 100, 35, 0.28);
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

.category-card h2 {
  margin-block: 12px 18px;
  font-size: clamp(2.3rem, 3.2vw, 3.35rem);
  line-height: 0.98;
}

.category-card-icon {
  width: 148px;
  height: 148px;
  margin: 0 auto 24px;
  align-self: center;
  object-fit: cover;
  border: 1px solid rgba(164, 113, 43, 0.4);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(83, 50, 32, 0.13), 0 0 0 6px rgba(255, 250, 242, 0.72);
  transform: translateZ(24px);
  transition: transform 340ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.category-card:hover .category-card-icon {
  transform: translateZ(38px) translateY(-4px) scale(1.035);
}

.category-card > p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.7;
}

.category-card ul {
  margin: 22px 0 30px;
  padding: 0 0 0 18px;
  color: #54433d;
  line-height: 1.85;
}

.category-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.services-cta {
  padding: 105px 24px;
  text-align: center;
  background: linear-gradient(120deg, #ead6c8, #fff9f0 50%, #dec0b4);
}

.services-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.services-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 31px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Offers */
.offers-hero {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  padding: 158px 24px 110px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.84), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(205, 161, 108, 0.2), transparent 31%),
    linear-gradient(135deg, #f8eee6, #fffdf8 46%, #e7cfc1);
}

.offers-hero::before {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  z-index: -2;
  background: url("../images/services-floral-one.webp") center / cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.7);
}

.offers-hero::after {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(255, 252, 247, 0.7), rgba(245, 229, 219, 0.64));
}

.offers-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  text-align: center;
}

.offers-content > .script-heading {
  margin: 18px 0 22px;
  font-size: clamp(5rem, 9vw, 8.3rem);
  text-shadow: 1px 2px 0 rgba(205, 151, 66, 0.38);
}

.offers-content > .page-intro {
  width: min(690px, 100%);
  margin: 0 auto;
  text-wrap: balance;
}

.offers-empty-card {
  position: relative;
  width: min(720px, 100%);
  margin: 52px auto 0;
  padding: 44px clamp(26px, 6vw, 64px) 46px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(244, 229, 218, 0.56));
  border: 1px solid rgba(164, 116, 43, 0.28);
  border-radius: 38px;
  box-shadow: 0 30px 76px rgba(80, 48, 32, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 300ms ease;
}

.offers-empty-card:hover {
  box-shadow: 0 40px 90px rgba(80, 48, 32, 0.18), inset 0 1px 0 white;
  transform: translateY(-8px) rotateX(1.5deg);
}

.offers-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  color: #f6d77b;
  background: linear-gradient(145deg, #775047, #4b302c);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(72, 41, 31, 0.18), 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.offers-empty-card h2 {
  margin: 16px 0 17px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.offers-empty-card > p:not(.eyebrow) {
  width: min(580px, 100%);
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.72;
}

.offers-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.offers-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(170, 121, 55, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.offers-orbit-one {
  width: 340px;
  height: 340px;
  left: -170px;
  top: 22%;
}

.offers-orbit-two {
  width: 250px;
  height: 250px;
  right: -110px;
  bottom: 12%;
}

/* About */
.about-story {
  position: relative;
  isolation: isolate;
  min-height: 960px;
  padding: 160px max(7vw, 24px) 105px;
  display: grid;
  grid-template-columns: minmax(540px, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  background: #fff;
}

.about-plant-bg {
  position: absolute;
  inset: 82px 0 0;
  z-index: -2;
  background: url("../images/about-plants.webp") left bottom / cover no-repeat;
}

.about-story::after {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,0.32), rgba(255,255,255,0.86) 34%, rgba(255,255,255,0.92));
}

.about-story-copy {
  width: min(720px, 100%);
  margin-left: auto;
  text-align: center;
}

.about-story-copy h1 {
  margin: 23px 0 28px;
  font-size: clamp(4.3rem, 6.5vw, 6.9rem);
  text-shadow: 1px 2px 0 rgba(205, 151, 66, 0.46);
}

.about-story-copy p:not(.eyebrow) {
  margin: 0 auto 22px;
  color: #3d3c4b;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.about-portrait-card {
  margin: 0;
  align-self: center;
  perspective: 900px;
  text-align: center;
}

.about-portrait-frame {
  position: relative;
  width: min(285px, 100%);
  margin: 0 auto;
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 4px solid var(--gold-deep);
  border-radius: 32px 32px 110px 32px;
  box-shadow: 0 24px 55px rgba(63, 39, 28, 0.2);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease;
}

.about-portrait-card:hover .about-portrait-frame {
  transform: translateY(-8px) rotateY(3deg) rotateX(1deg);
  box-shadow: 0 34px 72px rgba(63, 39, 28, 0.25);
}

.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.about-portrait-card figcaption {
  margin-top: -12px;
  position: relative;
  z-index: 2;
  color: var(--cocoa);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-portrait-card figcaption span {
  display: block;
  color: #a45e42;
  font-family: var(--font-script);
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 0.6;
  letter-spacing: 0;
  text-shadow: 0 3px 0 white;
  text-transform: none;
}

.about-values {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  padding: 100px max(8vw, 24px) 85px;
  overflow: hidden;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep)) 1;
}

.about-values-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/about-dried.webp") center / cover no-repeat;
}

.about-values::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 238, 229, 0.42);
}

.values-heading {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.values-heading h2 {
  margin: 18px 0 19px;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.8vw, 4.9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.values-heading > p:not(.eyebrow) {
  width: min(750px, 100%);
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.65;
}

.values-grid {
  width: min(1120px, 100%);
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-card {
  position: relative;
  min-height: 220px;
  padding: 34px 40px;
  overflow: hidden;
  background: rgba(215, 154, 117, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 38px;
  box-shadow: 0 18px 38px rgba(79, 51, 34, 0.11);
  backdrop-filter: blur(9px);
  transform-style: preserve-3d;
  transition: transform 340ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 280ms ease;
}

.value-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 30px 62px rgba(79, 51, 34, 0.17), inset 0 1px 0 rgba(255,255,255,0.36);
}

.value-card-2 { background: rgba(150, 144, 141, 0.82); }
.value-card-3 { background: rgba(157, 126, 91, 0.8); }
.value-card-4 { background: rgba(190, 145, 128, 0.82); }

.value-index {
  position: absolute;
  right: 24px;
  top: 13px;
  color: rgba(255,255,255,0.36);
  font-family: var(--font-display);
  font-size: 3.7rem;
}

.value-card h3 {
  position: relative;
  margin: 0 0 13px;
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
}

.value-card p {
  position: relative;
  max-width: 440px;
  margin: 0;
  color: #342f38;
  line-height: 1.58;
}

.values-signoff {
  margin: 42px auto 0;
  color: var(--gold-deep);
  font-family: var(--font-script);
  font-size: 3.1rem;
  text-align: center;
  transform: rotate(-2deg);
}

.about-cta {
  padding: 75px max(8vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(100deg, #fffdf8, #ead5c5);
}

.about-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5vw, 5.4rem);
}

/* Booking */
.book-hero {
  position: relative;
  isolation: isolate;
  min-height: 880px;
  padding: 150px 24px 75px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.book-floral-bg {
  position: absolute;
  inset: 82px 0 0;
  z-index: -2;
  background: url("../images/book-floral.webp") center / cover no-repeat;
}

.book-hero::after {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 45%, rgba(255, 247, 242, 0.48), rgba(226, 169, 169, 0.18));
}

.book-hero-content {
  width: min(1000px, 100%);
  text-align: center;
}

.book-hero h1 {
  margin-top: 24px;
  font-size: clamp(4.8rem, 9vw, 8.2rem);
  text-shadow: 1px 2px 0 rgba(209, 152, 57, 0.55);
}

.book-lead {
  width: min(720px, 100%);
  margin: 26px auto 0;
  color: #5c514d;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.48;
}

.book-image-link {
  position: relative;
  isolation: isolate;
  width: min(420px, 86vw);
  margin: 45px auto 36px;
  display: block;
  border-radius: 999px;
  transition: transform 220ms ease, filter 220ms ease;
}

.book-image-link:hover,
.book-image-link:focus-visible {
  transform: translateY(-8px) scale(1.055);
  filter: saturate(1.08) brightness(1.04);
  outline: 3px solid rgba(255, 218, 119, 0.75);
  outline-offset: 6px;
}

.book-promise {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(111, 66, 56, 0.5);
}

.book-promise i {
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.book-note {
  margin: 50px auto 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.booking-contact-grid {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: -53px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-tile {
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 23px 52px rgba(68, 40, 29, 0.13);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.contact-tile svg {
  width: 26px;
  height: 26px;
  margin-bottom: 15px;
  color: var(--gold-deep);
}

.contact-tile > span {
  color: var(--gold-deep);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-tile strong {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 1.28rem;
}

.contact-tile small {
  margin-top: 8px;
  color: #7a6a63;
}

.contact-tile:hover,
.contact-tile:focus-visible {
  color: #fff7df;
  background: var(--cocoa);
  transform: translateY(-9px);
  outline: none;
}

.contact-tile:hover svg,
.contact-tile:hover > span,
.contact-tile:hover small,
.contact-tile:focus-visible svg,
.contact-tile:focus-visible > span,
.contact-tile:focus-visible small {
  color: #efd078;
}

.visit-section {
  position: relative;
  isolation: isolate;
  min-height: 850px;
  padding: 145px max(7vw, 24px) 100px;
  display: grid;
  grid-template-columns: 1fr minmax(430px, 0.82fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.visit-fabric-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/book-fabric.webp") center / cover no-repeat;
}

.visit-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 252, 247, 0.42);
}

.visit-copy h2 {
  margin: 22px 0 18px;
  font-size: clamp(5rem, 8vw, 9rem);
  text-shadow: 2px 3px 0 rgba(205, 151, 66, 0.5);
}

.visit-lead {
  width: min(610px, 100%);
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 1.17rem;
  line-height: 1.65;
}

.address-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.address-block > svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
}

.address-block strong,
.hours-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.address-block p {
  margin: 5px 0 0;
  color: #5d504b;
  line-height: 1.45;
}

.hours-block {
  margin: 34px 0 0 48px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hours-block h3 {
  margin: 0 0 14px;
}

.hours-block dl {
  max-width: 480px;
  margin: 0;
}

.hours-block dl div {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #5d504b;
  font-size: 0.9rem;
}

.hours-block dd {
  margin: 0;
  font-weight: 500;
}

.hours-block > p {
  margin: 13px 0 0;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.website-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cocoa);
  font-size: 0.9rem;
  font-weight: 500;
}

.website-link svg {
  color: var(--gold-deep);
}

.map-card {
  position: relative;
  padding: 20px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(149, 102, 38, 0.25);
  box-shadow: 0 26px 65px rgba(75, 44, 29, 0.18);
  transition: transform 220ms ease;
}

.map-card:hover {
  transform: translateY(-9px) rotate(0.5deg);
}

.map-card:focus-within {
  outline: 3px solid rgba(198, 146, 48, 0.3);
  outline-offset: 5px;
}

.map-embed-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee7df;
  border: 1px solid rgba(149, 102, 38, 0.18);
  border-radius: 8px;
}

.map-embed-shell iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-open-link {
  padding: 16px 4px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 1.1rem;
  transition: color 180ms ease, transform 180ms ease;
}

.map-open-link:hover,
.map-open-link:focus-visible {
  color: var(--gold-deep);
  transform: translateY(-2px);
  outline: none;
}

.map-open-link > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff8e5;
  background: var(--cocoa);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.map-corner {
  position: absolute;
  width: 115px;
  height: 115px;
  border-color: var(--gold);
  pointer-events: none;
}

.map-corner-one {
  left: -16px;
  top: -16px;
  border-left: 4px solid var(--gold);
  border-top: 4px solid var(--gold);
}

.map-corner-two {
  right: -16px;
  bottom: -16px;
  border-right: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.book-final-cta {
  padding: 65px max(7vw, 24px);
  display: grid;
  grid-template-columns: 240px 1fr 90px;
  align-items: center;
  gap: 50px;
  background: linear-gradient(120deg, #f2e7dc, #fffdf7 47%, #dfc3b5);
}

.book-final-cta > img {
  width: 240px;
  margin: -75px 0;
}

.book-final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(2.7rem, 4vw, 4.5rem);
}

.book-final-cta > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.round-whatsapp {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: #f7dc84;
  background: var(--cocoa);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 15px 34px rgba(71, 39, 29, 0.22);
  transition: transform 200ms ease;
}

.round-whatsapp svg {
  width: 32px;
  height: 32px;
}

.round-whatsapp:hover,
.round-whatsapp:focus-visible {
  transform: translateY(-7px) scale(1.08) rotate(-6deg);
  outline: 4px solid rgba(212, 168, 72, 0.18);
}

@media (max-width: 1000px) {
  .service-category-showcase {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }

  .service-category-visual {
    width: min(100%, 176px);
  }

  .service-editorial {
    grid-template-columns: 1fr;
  }

  .service-editorial.reverse .service-copy,
  .service-editorial.reverse .service-design-panel {
    order: initial;
  }

  .service-copy {
    text-align: center;
  }

  .service-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .service-list {
    width: min(700px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .service-design-panel,
  .pmu-portrait-panel {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .service-category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    width: min(720px, 100%);
    min-height: 520px;
    margin-inline: auto;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    margin-inline: auto;
  }

  .about-portrait-card {
    width: min(340px, 100%);
    margin-inline: auto;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-copy {
    text-align: center;
  }

  .visit-lead {
    margin-inline: auto;
  }

  .address-block,
  .visit-actions {
    justify-content: center;
    text-align: left;
  }

  .hours-block {
    width: min(560px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .map-card {
    width: min(580px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .offers-hero {
    min-height: 820px;
    padding: 126px 20px 86px;
  }

  .offers-hero::before,
  .offers-hero::after {
    top: 72px;
  }

  .offers-content > .script-heading {
    font-size: clamp(4.6rem, 21vw, 6.6rem);
  }

  .offers-empty-card {
    margin-top: 40px;
    padding-block: 38px 40px;
    border-radius: 30px;
  }

  .offers-empty-card h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .offers-actions {
    flex-direction: column;
    gap: 24px;
  }

  .page-hero {
    padding-top: 72px;
  }

  .services-hero-content {
    padding-top: 75px;
  }

  .services-hero h1 {
    font-size: clamp(4.4rem, 20vw, 6.6rem);
  }

  .service-category-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .service-category-visual {
    width: min(100%, 160px);
  }

  .service-editorial {
    min-height: auto;
    padding: 82px 20px;
    gap: 50px;
  }

  .service-copy h2 {
    font-size: clamp(2.65rem, 12vw, 3.9rem);
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-design-panel {
    min-height: 460px;
  }

  .pmu-portrait-panel {
    min-height: 470px;
  }

  .pmu-founder {
    left: auto;
    width: min(310px, 68%);
    transform: translateY(-28px) translateZ(36px);
  }

  .pmu-portrait-panel > p {
    left: 50%;
  }

  .service-category-grid {
    padding: 82px 20px;
  }

  .category-card {
    min-height: 510px;
    padding: 38px 28px;
    border-radius: 30px;
  }

  .about-story {
    padding: 130px 20px 85px;
  }

  .about-plant-bg,
  .about-story::after {
    top: 72px;
  }

  .about-story::after {
    background: rgba(255,255,255,0.78);
  }

  .about-story-copy h1 {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .about-story-copy p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .about-values {
    padding: 82px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 31px 28px;
  }

  .about-cta {
    padding: 70px 20px;
    flex-direction: column;
    text-align: center;
  }

  .book-hero {
    min-height: 810px;
    padding: 120px 20px 65px;
  }

  .book-floral-bg,
  .book-hero::after {
    top: 72px;
  }

  .book-hero h1 {
    font-size: clamp(4.4rem, 19vw, 6.4rem);
  }

  .book-promise {
    flex-direction: column;
    gap: 8px;
  }

  .booking-contact-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .contact-tile {
    min-height: 175px;
  }

  .visit-section {
    padding: 100px 20px 85px;
  }

  .visit-copy h2 {
    font-size: clamp(5rem, 23vw, 8rem);
  }

  .hours-block dl div {
    font-size: 0.82rem;
  }

  .book-final-cta {
    padding: 70px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .book-final-cta > img {
    width: min(370px, 95vw);
    margin: -80px auto -90px;
  }

  .round-whatsapp {
    margin: 0 auto;
  }
}

/* Locale controls and multilingual presentation */
.locale-root,
.locale-page {
  min-height: 100%;
}

.language-switcher {
  position: fixed;
  top: 88px;
  right: clamp(14px, 2vw, 30px);
  z-index: 49;
  isolation: isolate;
  max-width: calc(100vw - 28px);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  color: var(--ink-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 244, 0.46));
  border: 1px solid rgba(166, 116, 43, 0.3);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(66, 38, 27, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.12);
  animation: language-switcher-arrive 620ms cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.language-switcher::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 239, 171, 0.38) 50%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.language-switcher:hover::before,
.language-switcher:focus-within::before {
  transform: translateX(120%);
}

.language-switcher-icon {
  width: 15px;
  height: 15px;
  margin: 0 5px 0 7px;
  color: var(--gold-deep);
  flex: 0 0 auto;
}

.language-option {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.language-option[lang="ar"] {
  font-family: var(--font-arabic);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--gold-deep);
  background: rgba(255, 253, 249, 0.76);
  border-color: rgba(166, 116, 43, 0.22);
  transform: translateY(-2px);
  outline: none;
}

.language-option.is-active {
  color: #f7dc87;
  background: linear-gradient(145deg, rgba(114, 76, 68, 0.96), rgba(67, 43, 39, 0.96));
  border-color: rgba(207, 165, 75, 0.62);
  box-shadow: 0 7px 16px rgba(67, 43, 39, 0.16);
}

.language-short {
  display: none;
}

@keyframes language-switcher-arrive {
  from { opacity: 0; transform: translateY(-12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Localized booking pill preserves the owned English artwork on English pages. */
.localized-book-button {
  min-height: 112px;
  padding: 8px 17px 8px 9px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  color: #f4d469;
  background:
    linear-gradient(135deg, rgba(151, 111, 104, 0.9), rgba(70, 45, 41, 0.94)),
    rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(239, 204, 111, 0.72);
  box-shadow: 0 20px 42px rgba(59, 35, 29, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(12px);
}

.localized-book-button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -32%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 197, 0.82), transparent);
  transform: skewX(-16deg);
  opacity: 0;
}

.localized-book-button:hover::after,
.localized-book-button:focus-visible::after {
  opacity: 1;
  animation: localized-book-sweep 1.2s ease both;
}

.localized-book-portrait {
  width: 92px;
  height: 92px;
  overflow: hidden;
  border: 2px solid rgba(241, 208, 117, 0.86);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(40, 24, 20, 0.25), 0 0 0 3px rgba(255, 255, 255, 0.24);
}

.localized-book-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.localized-book-button strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 2px 10px rgba(32, 19, 16, 0.3);
}

.localized-book-arrow {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #4c322e;
  background: rgba(247, 216, 126, 0.94);
  border-radius: 50%;
  font-size: 1.1rem;
}

@keyframes localized-book-sweep {
  from { left: -32%; }
  to { left: 112%; }
}

.book-promise-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.bidi-contact {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Arabic uses a dedicated, legible type system and true right-to-left flow. */
.locale-ar {
  font-family: var(--font-arabic);
}

.locale-ar h1,
.locale-ar h2,
.locale-ar h3,
.locale-ar .script-heading,
.locale-ar .nav-link,
.locale-ar .mobile-home-link,
.locale-ar .mobile-menu nav a,
.locale-ar .mobile-placeholder,
.locale-ar .button,
.locale-ar .text-link,
.locale-ar .values-signoff,
.locale-ar .whatsapp-float-copy strong,
.locale-ar .localized-book-button strong {
  font-family: var(--font-arabic);
}

.locale-ar .script-heading {
  line-height: 1.04;
  letter-spacing: 0;
}

.locale-ar .eyebrow,
.locale-ar .service-category-link small,
.locale-ar .design-panel-copy small,
.locale-ar .design-panel-copy span,
.locale-ar .contact-tile > span,
.locale-ar .hours-block > p,
.locale-ar .credential-line strong,
.locale-ar .about-portrait-card figcaption,
.locale-ar .mobile-placeholder small,
.locale-ar .whatsapp-float-copy small {
  letter-spacing: 0;
  text-transform: none;
}

.locale-ar .about-portrait-card figcaption span,
.locale-ar .signature-caption,
.locale-ar .pmu-portrait-panel > p span {
  font-family: var(--font-script);
}

.locale-ar .footer-links a:hover,
.locale-ar .footer-contact > a:hover {
  transform: translateX(-4px);
}

.locale-ar .address-block,
.locale-ar .hours-block {
  text-align: right;
}

.locale-ar .hours-block {
  margin-right: 48px;
  margin-left: 0;
}

.locale-ar .value-index {
  right: auto;
  left: 24px;
}

.locale-ar .nav-placeholder {
  padding-right: clamp(13px, 1.45vw, 21px);
  padding-left: clamp(15px, 1.7vw, 25px);
}

.locale-ar .nav-placeholder small {
  right: auto;
  left: 8px;
}

.locale-ar .whatsapp-float-copy {
  align-items: flex-start;
}

@media (max-width: 860px) {
  .language-switcher {
    top: 80px;
    right: 12px;
  }

  .locale-ar .mobile-menu nav {
    right: auto;
    left: 0;
  }

  .locale-ar .hours-block {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .language-switcher {
    top: 76px;
    right: 10px;
    padding: 4px;
  }

  .language-switcher-icon {
    width: 14px;
    height: 14px;
    margin-inline: 5px 3px;
  }

  .language-option {
    min-width: 34px;
    min-height: 32px;
    padding-inline: 8px;
    font-size: 0.67rem;
  }

  .language-full {
    display: none;
  }

  .language-short {
    display: inline;
  }

  .localized-book-button {
    min-height: 88px;
    padding: 6px 12px 6px 7px;
    grid-template-columns: 72px minmax(0, 1fr) 29px;
    gap: 9px;
  }

  .localized-book-portrait {
    width: 72px;
    height: 72px;
  }

  .localized-book-button strong {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .localized-book-arrow {
    width: 29px;
    height: 29px;
    font-size: 0.9rem;
  }

  .locale-ar .service-list,
  .locale-ar .hours-block,
  .locale-ar .address-block {
    text-align: right;
  }
}

/* Google review trust system */
.google-proof-badge {
  position: relative;
  isolation: isolate;
  width: fit-content;
  max-width: min(94vw, 430px);
  min-height: 52px;
  padding: 7px 13px 7px 8px;
  margin: 13px auto 0;
  display: inline-grid;
  grid-template-columns: 36px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: var(--ink-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 236, 226, 0.64));
  border: 1px solid rgba(172, 126, 56, 0.27);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(79, 49, 35, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.google-proof-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 241, 181, 0.48) 50%, transparent 66%);
  transform: translateX(-125%);
  transition: transform 800ms ease;
}

.google-proof-badge:hover,
.google-proof-badge:focus-visible {
  border-color: rgba(179, 126, 37, 0.58);
  box-shadow: 0 18px 40px rgba(79, 49, 35, 0.16), 0 0 0 4px rgba(200, 151, 49, 0.1);
  transform: translateY(-4px) scale(1.012);
  outline: none;
}

.google-proof-badge:hover::before,
.google-proof-badge:focus-visible::before {
  transform: translateX(125%);
}

.google-proof-mark,
.google-rating-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #4285f4;
  background: #fff;
  border: 1px solid rgba(60, 64, 67, 0.13);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(60, 64, 67, 0.12);
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.google-proof-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.google-proof-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.05;
}

.google-proof-copy small {
  margin-top: 2px;
  overflow: hidden;
  font-size: 0.61rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-proof-stars,
.google-review-stars {
  color: #bd8826;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.google-proof-stars {
  font-size: 0.7rem;
}

.google-proof-arrow,
.google-rating-arrow {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #f8e5a1;
  background: var(--cocoa);
  border-radius: 50%;
  font-size: 0.75rem;
  transition: transform 200ms ease;
}

.google-proof-badge:hover .google-proof-arrow,
.google-proof-badge:focus-visible .google-proof-arrow,
.google-rating-card:hover .google-rating-arrow,
.google-rating-card:focus-visible .google-rating-arrow {
  transform: rotate(8deg) scale(1.08);
}

.google-proof-booking {
  margin-top: 24px;
}

.google-reviews-section {
  position: relative;
  padding: clamp(88px, 9vw, 138px) max(5vw, 22px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(208, 163, 108, 0.2), transparent 29%),
    radial-gradient(circle at 91% 84%, rgba(213, 172, 162, 0.22), transparent 31%),
    linear-gradient(128deg, #f7efe7, #fffdf9 52%, #ead8cc);
  border-top: 1px solid rgba(160, 111, 43, 0.15);
}

.google-reviews-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.google-reviews-orbit {
  position: absolute;
  border: 1px solid rgba(183, 131, 49, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.1), 0 0 0 72px rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.google-reviews-orbit-one {
  width: 310px;
  height: 310px;
  top: -160px;
  right: -90px;
}

.google-reviews-orbit-two {
  width: 250px;
  height: 250px;
  left: -105px;
  bottom: -125px;
}

.google-reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  align-items: end;
  gap: clamp(34px, 6vw, 90px);
}

.google-reviews-heading {
  max-width: 760px;
}

.google-reviews-heading h2 {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.google-reviews-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.google-rating-card {
  min-height: 102px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 13px;
  color: var(--ink-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.83), rgba(244, 228, 217, 0.7));
  border: 1px solid rgba(163, 112, 45, 0.27);
  border-radius: 27px;
  box-shadow: 0 22px 55px rgba(81, 50, 36, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(17px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.google-rating-card:hover,
.google-rating-card:focus-visible {
  box-shadow: 0 30px 66px rgba(81, 50, 36, 0.17);
  transform: translateY(-6px);
  outline: none;
}

.google-rating-mark {
  width: 48px;
  height: 48px;
  font-size: 1.35rem;
}

.google-rating-card > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.google-rating-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.google-rating-card small {
  margin-top: 4px;
  font-size: 0.67rem;
  line-height: 1.35;
}

.google-review-grid,
.google-reviews-widget {
  margin-top: clamp(42px, 5vw, 68px);
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.google-review-card {
  position: relative;
  min-height: 300px;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(249, 240, 232, 0.68));
  border: 1px solid rgba(166, 116, 43, 0.24);
  border-radius: 30px;
  box-shadow: 0 24px 58px rgba(77, 47, 33, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.google-review-card::after {
  content: "\201D";
  position: absolute;
  right: 22px;
  bottom: -31px;
  color: rgba(184, 132, 48, 0.1);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  pointer-events: none;
}

.google-review-card:hover,
.google-review-card:focus-within {
  border-color: rgba(177, 124, 36, 0.5);
  box-shadow: 0 34px 76px rgba(77, 47, 33, 0.16);
  transform: translateY(-8px) rotateX(1deg);
}

.google-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.google-review-stars {
  font-size: 0.88rem;
}

.google-review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #68615d;
  font-size: 0.67rem;
}

.google-review-source i {
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
}

.google-review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 27px 0 30px;
  flex: 1;
}

.google-review-card blockquote p {
  margin: 0;
  color: #493d38;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.8vw, 1.48rem);
  line-height: 1.4;
}

.google-review-card footer {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(151, 105, 47, 0.2);
}

.google-review-card footer strong {
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 600;
}

.google-review-card footer time {
  margin-top: 3px;
  color: #83736b;
  font-size: 0.66rem;
}

.google-reviews-widget {
  padding: clamp(18px, 2.5vw, 30px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(166, 116, 43, 0.2);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(77, 47, 33, 0.09);
}

.google-reviews-empty {
  min-height: 190px;
  padding: 34px;
  margin-top: clamp(42px, 5vw, 68px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(166, 116, 43, 0.2);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.google-reviews-empty-mark {
  height: 39px;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.google-reviews-empty p {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.google-reviews-empty a {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.google-review-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.locale-ar .google-reviews-heading,
.locale-ar .google-review-card,
.locale-ar .google-proof-copy,
.locale-ar .google-rating-card > span:nth-child(2) {
  text-align: right;
}

.locale-ar .google-proof-copy {
  align-items: flex-end;
}

.locale-ar .google-review-card::after {
  right: auto;
  left: 22px;
}

.locale-ar .google-review-actions .text-link span {
  margin-right: 8px;
  margin-left: 0;
}

@media (max-width: 860px) {
  .google-reviews-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .google-rating-card {
    width: min(360px, 100%);
  }

  .google-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-review-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .google-proof-badge {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    max-width: 92vw;
  }

  .google-proof-mark {
    width: 34px;
    height: 34px;
  }

  .google-proof-stars {
    display: none;
  }

  .google-proof-copy small {
    max-width: 210px;
  }

  .google-reviews-section {
    padding: 78px 18px 88px;
  }

  .google-reviews-heading h2 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .google-reviews-heading > p:last-child {
    font-size: 0.94rem;
  }

  .google-review-grid {
    margin-inline: -18px;
    padding: 5px 18px 24px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .google-review-grid::-webkit-scrollbar {
    display: none;
  }

  .google-review-card,
  .google-review-card:last-child:nth-child(odd) {
    width: min(84vw, 355px);
    min-width: min(84vw, 355px);
    min-height: 285px;
    scroll-snap-align: center;
  }

  .google-review-actions {
    flex-direction: column;
    gap: 24px;
  }
}
