:root {
  --cream: #fcedcf;
  --blush: hsl(42, 85%, 95%);
  --gold: #b69552;
  --gold-hover: #9a7e3f;
  --gold-light: rgba(182, 149, 82, 0.12);
  --accent: #045b55;
  --accent-hover: #034a45;
  --accent-light: rgba(4, 91, 85, 0.1);
  --dark: #0d2f2c;
  --warm-gray: #6b7d7a;
  --light-border: rgba(4, 91, 85, 0.15);
  --footer-bg: #0d2f2c;
  --gold-light-text: rgba(182, 149, 82, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Raleway", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  cursor: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Custom cursor – desktop only */
#cursor,
#cursorRing {
  display: none;
}

@media (min-width: 1024px) {
  #cursor {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
  }

  #cursorRing {
    display: block;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition:
      width 0.3s ease,
      height 0.3s ease,
      border-color 0.3s ease;
  }

  #cursorRing.hovered {
    width: 54px;
    height: 54px;
    border-color: var(--accent);
  }

  a,
  button,
  .service-card,
  .gallery-item {
    cursor: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(253, 246, 230, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--accent);
  transition:
    padding 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
nav.scrolled {
  padding: 10px 5%;
  box-shadow: 0 6px 30px rgba(4, 91, 85, 0.15);
  background: rgba(253, 246, 230, 0.98);
}

.nav-logo img {
  height: 58px;
  transition: transform 0.3s;
}
.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  gap: 12px;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 0;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 149, 82, 0.35);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 13px 32px;
  border-radius: 0;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 149, 82, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300;
  color: var(--dark);
  opacity: 0.04;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero-title-line1,
.hero-title-line2 {
  display: block;
}
.hero-title-line2 {
  color: var(--accent);
}
.text-accent {
  color: var(--accent);
}

.hero-photo-wrapper {
  position: relative;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-photo {
  width: clamp(260px, 30vw, 380px);
  height: clamp(320px, 38vw, 480px);
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow:
    0 30px 60px rgba(4, 91, 85, 0.12),
    0 0 0 6px rgba(4, 91, 85, 0.08);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}
.hero-photo:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px rgba(4, 91, 85, 0.18),
    0 0 0 6px rgba(4, 91, 85, 0.12);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.hero-photo:hover img {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: -60px;
  background: rgba(253, 246, 230, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: slideInLeft 0.6s 0.8s ease both;
}
.hero-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-text {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
}

.hero-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--warm-gray);
  max-width: 540px;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeInUp 0.8s 1s ease both;
}
.hero-scroll-text {
  font-family: "Raleway", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  writing-mode: vertical-rl;
  margin-bottom: 8px;
}
.hero-scroll-arrow {
  font-size: 16px;
  color: var(--accent);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
/* MARQUEE */
.marquee-section {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(143, 123, 123, 0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light-text);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── REVIEWS ── */
#reviews {
  padding: 80px 5%;
  background: var(--dark);
}
.reviews-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(4, 91, 85, 0.15);
  padding: 32px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(4, 91, 85, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
}
.review-google-icon {
  opacity: 0.7;
  transition: opacity 0.3s;
}
.review-card:hover .review-google-icon {
  opacity: 1;
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}
.review-text {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(252, 237, 207, 0.75);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.review-card:hover .review-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(4, 91, 85, 0.2);
}
.review-name {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}
.review-role {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
}

/* ── HOT OFFERS ── */
#beauty-salon {
  padding: 100px 5%;
}
.hot-section {
  padding: 100px 6% 80px;
}
.hot-offers-header {
  text-align: center;
  margin-bottom: 64px;
}
.hot-description {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--dark);
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.hot-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
}
.hot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 47, 44, 0.85) 0%,
    rgba(13, 47, 44, 0.3) 50%,
    rgba(13, 47, 44, 0.1) 100%
  );
  transition: background 0.5s ease;
}
.hot-card:hover .hot-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 47, 44, 0.92) 0%,
    rgba(13, 47, 44, 0.5) 60%,
    rgba(13, 47, 44, 0.25) 100%
  );
}
.hot-card:hover .hot-img {
  transform: scale(1.06);
}
.hot-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: rgba(252, 237, 207, 0.15);
  line-height: 1;
  pointer-events: none;
}
.hot-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hot-label {
  font-family: "Raleway", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hot-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}
.hot-desc {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(252, 237, 207, 0.75);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    margin 0.4s ease;
  margin-top: 0;
}
.hot-card:hover .hot-name {
  margin-bottom: 4px;
}
.hot-card:hover .hot-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 12px;
}
.hot-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-top: 16px;
}

/* ── SERVICES TABS ── */
.services-section {
  padding: 0 5% 100px;
}
.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 48px;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.3s;
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-btn:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-panel.active {
  display: block;
}

.service-list {
  list-style: none;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-border);
  gap: 16px;
  transition: all 0.3s ease;
}
.service-item:last-child {
  border-bottom: none;
}
.service-item:hover {
  padding-left: 12px;
  background: var(--accent-light);
  border-radius: 4px;
}
.service-item-name {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 2px;
}
.service-item-sub {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: var(--warm-gray);
}
.service-price-col {
  text-align: right;
  min-width: 90px;
}
.service-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
}
.service-price-card {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  color: var(--warm-gray);
}

.service-sub-header {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 24px 0 8px;
  font-weight: 500;
}

/* ── SERVICE BLOCKS (services page v2) ── */
.svc-page-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 5% 0;
}
.svc-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 20px;
}
.svc-page-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 560px;
  margin: 0 auto 36px;
}
.svc-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.svc-nav a {
  padding: 8px 20px;
  border: 1px solid var(--light-border);
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.3s;
}
.svc-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.svc-block {
  padding: 80px 6%;
}
.svc-block:nth-child(even) {
  background: linear-gradient(
    135deg,
    rgba(4, 91, 85, 0.04) 0%,
    rgba(182, 149, 82, 0.03) 100%
  );
}
.svc-block-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-block-reverse .svc-block-inner {
  direction: rtl;
}
.svc-block-reverse .svc-block-inner > * {
  direction: ltr;
}
.svc-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 280px;
}
.svc-img-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.svc-block:hover .svc-img-wrap > img {
  transform: scale(1.03);
}
/* Image grid (2x2) inside svc-img-wrap */
.svc-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.svc-img-grid .svc-grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
}
.svc-img-grid .svc-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-img-grid .svc-grid-item:hover img {
  transform: scale(1.08);
}
.svc-img-grid .svc-grid-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(
    to top,
    rgba(13, 47, 44, 0.7) 0%,
    transparent 100%
  );
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-img-grid .svc-grid-item:hover::after {
  opacity: 1;
}
/* 3-item grid: first image spans full width, takes 60% height */
.svc-img-grid.grid-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 3fr 2fr;
}
.svc-img-grid.grid-3 .svc-grid-item:first-child {
  grid-column: 1 / -1;
}
.svc-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: rgba(182, 149, 82, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.svc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.svc-desc {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 28px;
}
.svc-sub-label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding: 20px 0 6px;
}
.svc-sub-label:first-of-type {
  padding-top: 0;
}
.svc-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.svc-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-border);
  gap: 16px;
}
.svc-price-list li:last-child {
  border-bottom: none;
}
.svc-item-name {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--dark);
}
.svc-item-sub {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  color: var(--warm-gray);
  margin-top: 2px;
}
.svc-item-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-content .btn-primary {
  margin-top: 8px;
  display: inline-block;
  align-self: flex-start;
}

/* ── LIGHTBOX MODAL ── */
.svc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 47, 44, 0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  cursor: none;
}
.svc-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.svc-lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.4s ease;
}
.svc-lightbox.active img {
  transform: scale(1);
}
.svc-lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  line-height: 1;
}
.svc-lightbox-close:hover {
  opacity: 1;
}
.svc-lightbox-label {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ── SKINCARE INFO ── */
.skincare-info {
  padding: 100px 6%;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.skincare-info::before {
  content: "SKIN CARE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 300;
  color: var(--dark);
  opacity: 0.025;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.skincare-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.skincare-img-wrap {
  position: relative;
}
.skincare-img-wrap::after {
  content: "";
  position: absolute;
  inset: 12px -8px -8px 12px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  opacity: 0.35;
  transition:
    opacity 0.4s,
    inset 0.4s;
  pointer-events: none;
  z-index: -1;
}
.skincare-img-wrap:hover::after {
  opacity: 0.6;
  inset: 8px -12px -12px 8px;
}
.skincare-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  max-height: 380px;
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}
.skincare-img-wrap:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(4, 91, 85, 0.12);
}
.skincare-img-wrap:first-child {
  margin-top: -30px;
}
.skincare-img-wrap:last-child {
  margin-top: 30px;
}
.skincare-text {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.skincare-text .section-label {
  margin-bottom: 6px;
  justify-content: center;
}
.skincare-text .section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}
.skincare-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 18px;
  font-style: italic;
}
.skincare-desc {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 24px;
}
.skincare-list {
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.skincare-list li {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: var(--dark);
  padding-left: 24px;
  position: relative;
  text-align: left;
  transition:
    transform 0.3s,
    color 0.3s;
}
.skincare-list li:hover {
  transform: translateX(4px);
  color: var(--accent);
}
.skincare-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── ABOUT ── */
#about-us {
  padding: 100px 6%;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-imgs img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition:
    transform 0.5s,
    box-shadow 0.5s;
}
.about-imgs img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(4, 91, 85, 0.15);
}
.about-imgs img:first-child {
  aspect-ratio: 4/5;
}
.about-imgs img:last-child {
  aspect-ratio: 4/5;
  margin-top: 40px;
}
.about-text {
  color: var(--cream);
}
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 24px;
}
.about-desc {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(252, 237, 207, 0.65);
  margin-bottom: 36px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 4px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.about-feature:hover {
  background: rgba(4, 91, 85, 0.08);
  transform: translateX(8px);
}
.about-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: var(--gold);
}
.about-feature-title {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 4px;
}
.about-feature-desc {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(252, 237, 207, 0.6);
  line-height: 1.7;
}

/* ── SKIN CLINIC ── */
.skin-section {
  padding: 100px 5%;
}
.skin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.skin-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.skin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.skin-tab {
  padding: 8px 20px;
  border-radius: 0;
  border: 1px solid var(--light-border);
  background: none;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: all 0.3s;
}
.skin-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.skin-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(4, 91, 85, 0.3);
}
.skin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.skin-card {
  background: var(--blush);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.skin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(4, 91, 85, 0.12);
}
.skin-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s;
}
.skin-card:hover img {
  transform: scale(1.08);
}
.skin-card-body {
  padding: 20px;
}
.skin-card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 6px;
}
.skin-card-name {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 6px;
}
.skin-card-desc {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── SKIN PAGE HERO ── */
.skin-page-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.skin-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 20px;
}
.skin-page-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 560px;
  margin: 0 auto 28px;
}
.skin-page-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  padding: 24px 0;
  margin: 0 auto 32px;
  max-width: 520px;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

/* ── FLIP CARD ── */
.flip-card {
  perspective: 1200px;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.flip-card.skin-card {
  background: none;
  border-radius: 0;
  border: none;
}
.flip-card.skin-card:hover {
  transform: none;
  box-shadow: none;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-card-front.hot-card {
  background: none;
  border-radius: 0;
  border: none;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}
.flip-card-front.hot-card:hover {
  transform: none;
  box-shadow: none;
}
.flip-card-front.hot-card img.hot-img {
  height: 100%;
}

/* Back face */
.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #0d2f2c 0%, #045b55 50%, #0d2f2c 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 36px;
  overflow-y: auto;
}
.flip-back-label {
  font-family: "Raleway", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.flip-back-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.flip-back-desc {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(252, 237, 207, 0.8);
  margin-bottom: 20px;
}
.flip-back-details {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  width: 100%;
}
.flip-back-details li {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(252, 237, 207, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(252, 237, 207, 0.1);
  padding-left: 16px;
  position: relative;
}
.flip-back-details li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 10px;
}
.flip-back-price {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
}
.flip-back-btn {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.flip-back-btn:hover {
  background: var(--gold-hover);
}

/* ── CONTACT ── */
#contact-us {
  padding: 80px 5% 100px;
  background: var(--accent-light);
  background: linear-gradient(
    135deg,
    rgba(4, 91, 85, 0.08) 0%,
    rgba(182, 149, 82, 0.06) 100%
  );
}
.contact-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.contact-image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  background: rgba(4, 91, 85, 0.06);
  border: 1.5px solid rgba(4, 91, 85, 0.12);
  border-radius: 200px 200px 20px 20px;
  z-index: 0;
}
.contact-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 180px 180px 16px 16px;
  box-shadow: 0 20px 50px rgba(4, 91, 85, 0.12);
}
.contact-form-side {
  padding: 10px 0;
}
.contact-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-desc {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}
/* WhatsApp form */
.wa-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.wa-form-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wa-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.wa-step-content {
  flex: 1;
}
.wa-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.wa-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(4, 91, 85, 0.04);
  border: 1.5px solid rgba(4, 91, 85, 0.15);
  border-radius: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wa-input::placeholder {
  color: var(--warm-gray);
  font-weight: 300;
}
.wa-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(4, 91, 85, 0.08);
}
select.wa-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23045b55' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  padding-right: 36px;
}
select.wa-input option {
  background: var(--cream);
  color: var(--dark);
}
select.wa-input optgroup {
  font-weight: 600;
  color: var(--accent);
}
.wa-form-send {
  padding-left: 48px;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.wa-btn-icon {
  flex-shrink: 0;
}
.wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
.wa-hint {
  text-align: center;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}
.contact-quote {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(4, 91, 85, 0.12);
}
.contact-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 8px;
}
.contact-quote cite {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.contact-detail-item {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-detail-item:hover {
  color: var(--accent);
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(4, 91, 85, 0.3);
}
/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 47, 44, 0.85) 0%,
    rgba(13, 47, 44, 0.4) 50%,
    rgba(13, 47, 44, 0.2) 100%
  );
}
.about-hero-content {
  position: absolute;
  bottom: 80px;
  left: 6%;
  right: 6%;
  max-width: 700px;
}
.about-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-hero-text {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(252, 237, 207, 0.75);
  max-width: 560px;
}
.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--dark);
}
.about-feature-card {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid rgba(252, 237, 207, 0.08);
  transition: background 0.4s;
}
.about-feature-card:last-child {
  border-right: none;
}
.about-feature-card:hover {
  background: rgba(4, 91, 85, 0.15);
}
.about-feature-card .about-feature-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.about-feature-card .about-feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.about-feature-card .about-feature-desc {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(252, 237, 207, 0.55);
}

/* About Story */
.about-story {
  padding: 160px 6% 100px;
  background: var(--cream);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-story-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 500px;
  padding-bottom: 20px;
}
.about-story-img-main {
  width: clamp(280px, 30vw, 380px);
  height: clamp(370px, 42vw, 500px);
  object-fit: cover;
  border-radius: 160px 160px 16px 16px;
  box-shadow:
    0 24px 50px rgba(4, 91, 85, 0.12),
    0 0 0 5px rgba(4, 91, 85, 0.07);
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}
.about-story-img-main:hover {
  transform: translateY(-6px);
}
.about-story-img-accent {
  width: clamp(195px, 21vw, 265px);
  height: clamp(276px, 32vw, 390px);
  object-fit: cover;
  border-radius: 140px 140px 14px 14px;
  box-shadow:
    0 20px 40px rgba(4, 91, 85, 0.1),
    0 0 0 4px rgba(4, 91, 85, 0.06);
  position: relative;
  z-index: 3;
  margin-left: -70px;
  margin-bottom: 20px;
  transition: transform 0.6s ease;
}
.about-story-img-accent:hover {
  transform: translateY(-6px);
}
.about-story-text .section-label {
  margin-bottom: 16px;
}
.about-story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-story-desc {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 20px;
}
.about-story-signature {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  color: var(--accent);
  margin-top: 28px;
}

/* About Stats */
.about-stats {
  padding: 80px 6%;
  background: var(--dark);
  text-align: center;
}
.about-stats-label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.about-stat {
  position: relative;
}
.about-stat::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(252, 237, 207, 0.1);
}
.about-stat:last-child::after {
  display: none;
}
.about-stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252, 237, 207, 0.45);
}

/* About Values */
.about-values {
  padding: 100px 6%;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.about-values::before {
  content: "BEAUTY";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 300;
  color: var(--dark);
  opacity: 0.02;
  white-space: nowrap;
  pointer-events: none;
}
.about-values-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.about-values-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--dark);
  margin-top: 12px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-value-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(4, 91, 85, 0.06);
  border-radius: 4px;
  text-align: center;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 47, 44, 0.08);
}
.about-value-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.about-value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.about-value-desc {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: var(--warm-gray);
}

/* About CTA */
.about-cta {
  padding: 80px 6%;
  background: var(--accent);
  text-align: center;
}
.about-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.about-cta-desc {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: rgba(252, 237, 207, 0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.about-cta .btn-primary {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.about-cta .btn-primary:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.about-cta .fade-up:last-child {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-cta .btn-outline {
  color: var(--cream);
  border-color: rgba(252, 237, 207, 0.4);
}
.about-cta .btn-outline:hover {
  background: rgba(252, 237, 207, 0.1);
  border-color: var(--cream);
}

/* TEAM */
.team {
  padding: 120px 60px;
  background: var(--warm-white);
}
.team-header {
  text-align: center;
  margin-bottom: 70px;
}
.team .section-title {
  color: var(--dark);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  position: relative;
}
.team-photo-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  position: relative;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition:
    transform 0.6s ease,
    filter 0.4s;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
  filter: saturate(1);
}
.team-social {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(0);
}
.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s;
}
.team-social a:hover {
  background: var(--gold);
  color: #fff;
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 160px 5% 80px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-border);
}
.legal-content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}
.legal-content a:hover {
  color: var(--gold);
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  padding-left: 24px;
  position: relative;
}
.legal-content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content strong {
  color: var(--dark);
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  padding: 60px 5% 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(2);
}
.footer-brand p {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-copy {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-links li {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── FLOATING WHATSAPP ── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: pulse-wa 2s infinite;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}
.float-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.float-whatsapp:hover .float-whatsapp-tooltip {
  opacity: 1;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(182, 149, 82, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.3s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-hover);
  transform: translateY(-4px);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 6px 30px rgba(37, 211, 102, 0.6),
      0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ── NAV BREAKPOINT ── */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-links {
    gap: 24px;
  }
  .nav-links a {
    font-size: 10px;
  }
  .nav-ctas {
    gap: 8px;
  }
  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 9px;
  }
}
@media (max-width: 1024px) {
  .nav-links,
  .nav-ctas {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .hot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .hot-content {
    padding: 20px;
  }
  .hot-desc {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    gap: 20px;
  }
  .skincare-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
  }
  .skincare-img-wrap:first-child {
    margin-top: 0;
  }
  .skincare-img-wrap:last-child {
    margin-top: 0;
  }
  .skincare-img-wrap img {
    max-height: none;
    aspect-ratio: 16/10;
  }
  .skincare-img-wrap::after {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-imgs {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-imgs img:last-child {
    margin-top: 0;
  }
  .about-text {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-features {
    align-items: center;
  }
  .about-feature {
    text-align: left;
  }
  .about-feature:hover {
    transform: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-image {
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-image img {
    aspect-ratio: 3/4;
    max-height: 450px;
    object-position: top;
  }
  .svc-block-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-content {
    order: -1;
  }
  .svc-block-reverse .svc-block-inner {
    direction: ltr;
  }
  .svc-img-wrap {
    min-height: 0;
  }
  .svc-img-wrap > img {
    position: relative;
    inset: auto;
    aspect-ratio: 16/9;
  }
  .svc-img-grid {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    border-radius: 10px;
  }
  .svc-img-grid .svc-grid-item {
    aspect-ratio: 1/1;
  }
  .svc-img-grid .svc-grid-item img {
    border-radius: 0;
    object-fit: cover;
    object-position: center;
  }
  .svc-img-grid .svc-grid-item:first-child img {
    border-radius: 10px 0 0 0;
  }
  .svc-img-grid .svc-grid-item:nth-child(2) img {
    border-radius: 0 10px 0 0;
  }
  .svc-img-grid .svc-grid-item:nth-child(3) img {
    border-radius: 0 0 0 10px;
  }
  .svc-img-grid .svc-grid-item:nth-child(4) img {
    border-radius: 0 0 10px 0;
  }
  .svc-img-grid.grid-3 {
    grid-template-rows: auto auto;
  }
  .svc-img-grid.grid-3 .svc-grid-item:first-child {
    aspect-ratio: 16/9;
    grid-column: 1 / -1;
  }
  .svc-img-grid.grid-3 .svc-grid-item:first-child img {
    border-radius: 10px 10px 0 0;
  }
  .svc-img-grid.grid-3 .svc-grid-item:nth-child(2) img {
    border-radius: 0 0 0 10px;
  }
  .svc-img-grid.grid-3 .svc-grid-item:nth-child(3) img {
    border-radius: 0 0 10px 0;
  }
  .svc-block {
    padding: 48px 5%;
  }
  .svc-page-hero {
    padding-top: 130px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-images {
    justify-content: center;
    min-height: auto;
  }
  .about-story-img-main {
    width: clamp(200px, 40vw, 280px);
    height: clamp(270px, 55vw, 380px);
  }
  .about-story-img-accent {
    width: clamp(160px, 35vw, 220px);
    height: clamp(220px, 48vw, 310px);
    margin-left: -40px;
    margin-bottom: 20px;
  }
  .about-features-row {
    grid-template-columns: 1fr;
  }
  .about-feature-card {
    border-right: none;
    border-bottom: 1px solid rgba(252, 237, 207, 0.08);
  }
  .about-feature-card:last-child {
    border-bottom: none;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  #home {
    min-height: auto;
    padding: 110px 5% 50px;
  }
  .hero-title {
    font-size: clamp(30px, 8vw, 50px);
  }
  .hero-watermark {
    font-size: clamp(80px, 20vw, 160px);
  }
  .hero-badge {
    right: -20px;
    bottom: 10px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .contact-details-row {
    flex-direction: column;
    gap: 8px;
  }
  .skin-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ── SMALL PHONE ── */
@media (max-width: 600px) {
  #home {
    padding: 120px 5% 40px;
  }
  .hero-eyebrow {
    letter-spacing: 0.15em;
    font-size: 9px;
  }
  .hero-title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 32px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-photo {
    width: clamp(200px, 60vw, 300px);
    height: clamp(250px, 75vw, 380px);
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    text-align: center;
    width: 100%;
    max-width: 280px;
  }
  .hero-badge {
    right: -10px;
    bottom: 10px;
    padding: 10px 14px;
  }
  .hero-badge-num {
    font-size: 22px;
  }
  .hero-badge-text {
    font-size: 9px;
  }
  .hot-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .skin-grid {
    grid-template-columns: 1fr;
  }
  .tabs {
    gap: 0;
  }
  .tab-btn {
    padding: 12px 14px;
    font-size: 11px;
  }
  .skin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .flip-card-back {
    padding: 28px 24px;
  }
  .flip-back-title {
    font-size: 22px;
  }
  .flip-back-desc {
    font-size: 12px;
  }
  .flip-back-price {
    font-size: 28px;
  }
  .svc-block {
    padding: 36px 5%;
  }
  .svc-block-inner {
    gap: 20px;
  }
  .svc-number {
    font-size: 44px;
    margin-bottom: 4px;
  }
  .svc-title {
    font-size: 24px;
  }
  .svc-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 4px;
    border-radius: 12px;
  }
  .svc-img-grid .svc-grid-item {
    aspect-ratio: auto;
    overflow: hidden;
  }
  .svc-img-grid .svc-grid-item img {
    border-radius: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .svc-img-grid .svc-grid-item:first-child img {
    border-radius: 12px 12px 0 0;
  }
  .svc-img-grid .svc-grid-item:last-child img {
    border-radius: 0 0 12px 12px;
  }
  .svc-img-grid .svc-grid-item:nth-child(2) img,
  .svc-img-grid .svc-grid-item:nth-child(3):not(:last-child) img {
    border-radius: 0;
  }
  .svc-img-grid.grid-3 {
    grid-template-columns: 1fr;
  }
  .svc-img-grid.grid-3 .svc-grid-item:first-child {
    aspect-ratio: auto;
    grid-column: auto;
  }
  .svc-img-grid.grid-3 .svc-grid-item:first-child img {
    border-radius: 12px 12px 0 0;
  }
  .svc-img-grid.grid-3 .svc-grid-item:nth-child(2) img {
    border-radius: 0;
  }
  .svc-img-grid.grid-3 .svc-grid-item:last-child img {
    border-radius: 0 0 12px 12px;
  }
  .svc-price-list li {
    padding: 10px 0;
  }
  .svc-item-name {
    font-size: 13px;
  }
  .svc-item-price {
    font-size: 18px;
  }
  .svc-page-hero {
    padding-top: 120px;
    padding-bottom: 32px;
  }
  .svc-nav {
    gap: 6px;
  }
  .svc-nav a {
    padding: 8px 14px;
    font-size: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-image::before {
    display: none;
  }
  .contact-heading {
    font-size: clamp(28px, 6vw, 40px);
  }
  .about-imgs {
    grid-template-columns: 1fr 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-imgs img:last-child {
    margin-top: 0;
  }
  .about-grid {
    gap: 24px;
  }
  #about-us {
    padding: 60px 5%;
  }
  .about-story-grid {
    gap: 24px;
  }
  .about-story-images {
    min-height: auto;
  }
  .about-story-img-main {
    width: clamp(140px, 50vw, 220px);
    height: clamp(190px, 70vw, 300px);
  }
  .about-story-img-accent {
    width: clamp(110px, 40vw, 190px);
    height: clamp(160px, 58vw, 260px);
    margin-left: -20px;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .about-stat::after {
    display: none;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .skincare-info {
    padding: 60px 5%;
  }
  .skincare-layout {
    gap: 20px;
  }
  #reviews {
    padding: 60px 5%;
  }
  .review-card {
    padding: 20px;
  }
  .contact-grid {
    gap: 24px;
  }
  #contact-us {
    padding: 60px 5% 60px;
  }
  .wa-form-send {
    padding-left: 0;
  }
  .wa-step-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .wa-form-step {
    gap: 12px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .team {
    padding: 60px 20px;
  }
  .nav-logo img {
    height: 42px;
  }
  nav {
    padding: 12px 4%;
  }
  .hero-badge {
    right: 0;
  }
}

/* mobile nav open */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: rgba(253, 246, 230, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 100px 5% 32px;
  box-shadow: 0 8px 30px rgba(4, 91, 85, 0.12);
  border-bottom: 2px solid var(--accent);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    color 0.3s,
    transform 0.3s;
}
.mobile-menu a:hover {
  color: var(--accent);
  transform: scale(1.05);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 5%;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  z-index: 102;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13, 47, 44, 0.97);
  backdrop-filter: blur(12px);
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(0);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-text {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: var(--cream);
  line-height: 1.6;
  flex: 1;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover {
  color: var(--cream);
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.cookie-btn-accept:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(252, 237, 207, 0.3);
}
.cookie-btn-reject:hover {
  border-color: var(--cream);
  background: rgba(252, 237, 207, 0.08);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px 5%;
    gap: 16px;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
