:root {
  --cream: #f7f3ee;
  --ivory: #fffdf9;
  --taupe: #d8cbbd;
  --sand: #c6ad93;
  --gold: #d4af37;
  --text: #1c1816;
  --muted: #6c6259;
  --black: #111111;
  --white: #ffffff;
  --line: rgba(28, 24, 22, 0.10);
  --shadow: 0 18px 40px rgba(0,0,0,0.08);
  --radius: 24px;
  --max: 1200px;
}

* { 
  box-sizing: border-box; 
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}


.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--black);
}

.logo span { 
  color: var(--sand); 
}

.logo .slim {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  margin-left: 3px;
  letter-spacing: -1px;
}

.logo-icon-img {
  height: 40px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  transform: translateY(1px);
  margin-left: -9px;
  margin-right: -9px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(20%) saturate(420%) hue-rotate(350deg) brightness(95%) contrast(92%);
}

/* ==========================================
   HEADER & NAVIGATION BASE STYLES
   ========================================== */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.logo .slim {
  display: inline-flex;
  align-items: center;
  color: var(--sand);
  margin-left: 6px;
}

.logo-icon-img {
  height: 38px;
  width: auto;
  margin: 0 -6px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(20%) saturate(420%) hue-rotate(350deg) brightness(95%) contrast(92%);
}

/* ==========================================
   DESKTOP VIEW (Width > 980px)
   ========================================== */
@media screen and (min-width: 981px) {
  .menu-toggle,
  .mobile-cta {
    display: none !important;
  }

  .menu {
    display: flex !important;
    align-items: center;
    gap: 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: static !important;
    height: auto !important;
    width: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .menu a {
    white-space: nowrap;
    color: var(--muted);
    transition: color 0.2s ease;
  }

  .menu a:hover {
    color: var(--text);
  }

  .desktop-cta {
    display: inline-flex !important;
    white-space: nowrap;
    font-size: 13px;
    padding: 12px 22px;
  }
}

/* ==========================================
   DESKTOP VIEW (Width > 980px)
   ========================================== */
@media screen and (min-width: 981px) {
  .mobile-header-actions,
  .mobile-drawer-cta {
    display: none !important;
  }
}

/* ==========================================
   MOBILE VIEW (Width <= 980px)
   ========================================== */
@media screen and (max-width: 980px) {
  /* Hide standard desktop button */
  .desktop-cta {
    display: none !important;
  }

  /* Header Mobile Action Wrapper (Button + Hamburger) */
  .mobile-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* Button visible on the header next to/under hamburger BEFORE menu opens */
  a.mobile-header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    background-color: #0c0c0c !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* Hamburger Toggle Button */
  .menu-toggle {
    display: flex !important;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    z-index: 100001 !important;
    position: relative;
  }

  .menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black, #000000);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  /* Slide-Out Mobile Drawer */
  .menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 85% !important;
    max-width: 320px !important;
    height: auto !important;
    max-height: 100vh !important;
    background: #f7f3ee !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 80px 24px 30px 24px !important;
    border-bottom-left-radius: 16px !important;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.18) !important;
    z-index: 100000 !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  /* Open Drawer State */
  .menu.is-open {
    transform: translateX(0%) !important;
  }

  /* Nav Links Inside Drawer */
  .menu a {
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
  }

  /* CTA inside the Drawer */
  a.mobile-drawer-cta,
  .menu a.mobile-drawer-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 10px !important;
    padding: 14px 24px !important;
    background-color: #0c0c0c !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }

  /* Close "X" fixed position when menu is open */
  .menu-toggle.is-open {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
  }

  .menu-toggle.is-open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

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

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  background: transparent;
}

.btn:hover { 
  transform: translateY(-1px); 
}

.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c745d;
  margin-bottom: 18px;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 980px) {
  font-size: 38px;
  margin-bottom: 18px;
  white-space: nowrap;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-bottom: 18px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  h1 {
  font-size: clamp(1.9rem, 5vw, 4.6rem);
  margin-bottom: 18px;
  white-space: nowrap;
}
}

.hero-copy p {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
    text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #000000;
    border-left: 4px solid #d4af37;
}

.hero-image {
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #d9c8b7 0%, #f2ebe3 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroFade 15s infinite, heroZoom 15s infinite;
  transform: scale(1);
  filter: saturate(0.82) sepia(0.16) brightness(0.92) contrast(0.96);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.42), rgba(0,0,0,0.08)),
    linear-gradient(135deg, rgba(198,173,147,0.16), rgba(247,243,238,0.08));
}

.hero-slide.one {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)), url('../images/slider/slide-1.png');
  animation-delay: 0s, 0s;
}

.hero-slide.two {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)), url('../images/slider/slide-2.png');
  animation-delay: 5s, 5s;
}

.hero-slide.three {
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)), url('../images/slider/slide-3.png');
  animation-delay: 10s, 10s;
}

@keyframes heroFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); }
  100% { transform: scale(1.08); }
}

.caption-box {
  position: absolute;
  left: 24px;
  bottom: 40px;
  z-index: 2;
  background: rgba(255,255,255,0.94);
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  max-width: 520px;
  width: calc(100% - 48px);
  border-left: 4px solid #d4af37;
  opacity: 0;
  animation: captionFade 15s infinite;
}

.caption-box.one { animation-delay: 0s; }
.caption-box.two { animation-delay: 5s; }
.caption-box.three { animation-delay: 10s; }

@keyframes captionFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

.caption-box strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 6px;
}

.caption-box span {
  color: var(--muted);
  font-size: 14px;
}

.services-preview {
  padding: 20px 0 90px;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Default Desktop: 6 columns */
  gap: 22px;
}

.card {
  box-sizing: border-box;
  grid-column: span 2; /* Default Desktop: spans 2 columns */

  /* Your original styles */
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

/* Default Desktop: Centers the 4th and 5th cards */
.card:nth-child(4) {
  grid-column: 2 / span 2;
}

/* --- Responsive styles for screens smaller than 768px --- */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr; /* Switch to a 1-column grid layout */
  }
  
  .card {
    grid-column: span 1; /* Forces each card to span the single column */
  }
  
  .card:nth-child(4) {
    grid-column: span 1; /* Overrides the desktop centering layout back to normal */
  }
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.10)),
    linear-gradient(135deg, rgba(198,173,147,0.22), rgba(255,253,249,0.08));
}

.card h3 {
  position: relative;
  z-index: 2;
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.card p,
.card a {
  display: none;
}

.about-section {
  padding: 70px 0 50px;
}

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

.about-copy {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 56px;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  margin-bottom: 18px;
  line-height: 1.1;
}

.about-copy p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 650px;
    text-align: justify;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url('../images/about.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.82) sepia(0.16) brightness(0.92) contrast(0.96);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.05)),
    linear-gradient(135deg, rgba(198,173,147,0.16), rgba(247,243,238,0.08));
}

.badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.8;
}

.testimonials {
  padding: 20px 0 60px;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  min-height: 100%;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.8;
    text-align: justify;
}

.testimonial-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.testimonials-action {
  text-align: center;
  margin-top: 28px;
}

.featured {
  padding: 10px 0 80px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.featured-logo {
  width: 160px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0;
  border: none;
}

.featured-logo .name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 600;
}

.featured-logo .type {
  display: block;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.featured-logo img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 1;
}

.featured-logo img[src*="SDcScG8"] { max-height: 52px; }
.featured-logo img[src*="1hp6QrU"] { max-height: 58px; }
.featured-logo img[src*="ce1rr4d"] { max-height: 54px; }
.featured-logo img[src*="ov8egG8"] {
  width: 160px;
  max-width: none;
  max-height: none;
  transform: none;
}
.featured-logo img[src*="Ftwt98V"] { max-height: 52px; }

.page-hero {
  padding: 78px 0 46px;
}

.hero-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,253,249,0.48)),
    linear-gradient(135deg, rgba(198,173,147,0.20), rgba(247,243,238,0.05));
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 62px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  top: -120px;
  right: -90px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 17px;
}

/* ==========================================================================
   ADDED MODULES FROM STYLES1.CSS
   ========================================================================== */
.service-nav {
  padding: 26px 0 24px;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.service-link:hover::after {
  width: 40%;
}

.service-section {
  margin-bottom: 28px;
}

.service-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
}

.service-media {
  min-height: 420px;
  position: relative;
  background-size: cover;
  background-position: center;
}

#hydrafacial .service-media {
  overflow: hidden;
}

#hydrafacial .service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  transform: scale(1.18);
}

#cryo .service-media {
  background-size: 115%;
  background-position: center 45%;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.05)),
    linear-gradient(135deg, rgba(198,173,147,0.18), rgba(255,253,249,0.06));
}

.service-content {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c745d;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-content h3 {
  font-size: clamp(2.1rem, 3.2vw, 3.3rem);
  margin-bottom: 16px;
}

.service-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15.5px;
    text-align: justify;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.benefit {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

/* Renamed with suffix because .hero-panel already exists above with conflicting parameters */
.hero-panel-s1 {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  background: rgba(255,255,255,0.94);
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  border-left: 4px solid var(--gold);
}

.hero-panel-s1 strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.hero-panel-s1 span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

/* Integrated from styles1.css to manage layout structural rules */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* ==========================================================================
   END OF ADDED MODULES
   ========================================================================== */

.faq-section {
  padding: 22px 0 90px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: 28px;
  align-items: start;
}

.faq-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.side-card {
  position: sticky;
  top: 105px;
}

.side-card h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.side-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.gold-line {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.contact-mini {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-item {
  padding: 15px 16px;
  border-radius: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

details {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-bottom: 14px;
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
  background: var(--sand);
}

.answer {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15.5px;
}

.answer p {
  margin: 0 0 14px;
}

.answer p:last-child {
  margin-bottom: 0;
}

.cta-strip {
  margin-top: 30px;
  border-radius: 28px;
  background: var(--black);
  color: var(--white);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-strip h3 {
  font-size: 34px;
  margin-bottom: 6px;
}

.cta-strip p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.cta-strip .btn {
  background: var(--white);
  color: var(--black);
}

.contact-panel {
  background: var(--black);
  color: var(--white);
  padding: 55px 0 25px;
  margin-top: 10px;
  border-top: 2px solid var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 28px;
}

.contact-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--white);
}

.contact-panel p,
.contact-panel li {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.8;
}

.contact-panel ul {
  list-style: none;
}

footer {
  background: #111;
  color: rgba(255,255,255,0.78);
  padding: 25px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

footer h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 14px;
}

footer p {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.72);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--sand);
}

.footer-line {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .service-links { 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
  }
  .hero-grid,
  .service-block,
  .cta-box,
  .footer-grid { 
    grid-template-columns: 1fr; 
  }
  .cta-actions { 
    justify-content: flex-start; 
  }
}

@media (max-width: 980px) {
  .about-grid,
  .cards,
  .testimonial-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .hero-copy,
  .about-copy,
  .service-content {
    padding: 38px;
  }

  .hero-image,
  .about-image {
    min-height: 420px;
  }

  .featured-logos {
    gap: 24px;
  }

  .featured-logo {
    width: 140px;
    height: 74px;
  }

  .featured-logo img {
    max-height: 48px;
  }

  .side-card {
    position: relative;
    top: auto;
  }

  .hero-panel {
    padding: 42px 28px;
  }

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

@media (max-width: 680px) {
  .service-links { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }
  .service-content { 
    padding: 28px; 
  }
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
  }

  .logo {
    font-size: 32px;
  }

  .btn {
    padding: 12px 18px;
  }

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

  .cta-strip,
  .hero-copy {
    padding: 28px;
  }
}

.cta-strip-s1 {
  padding: 28px 0 82px;
}

.cta-box-s1 {
  background: linear-gradient(135deg, #171717 0%, #28221d 100%);
  color: var(--white);
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box-s1 h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.cta-box-s1 p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
}

.cta-actions-s1 {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive breakdowns specifically for the renamed styles1.css components */
@media (max-width: 1100px) {
  .cta-box-s1 { 
    grid-template-columns: 1fr; 
  }
  .cta-actions-s1 { 
    justify-content: flex-start; 
  }
}

@media (max-width: 680px) {
  .cta-box-s1 { 
    padding: 28px; 
  }
}


/* ============================================================
   MERGED FROM styles1.css — CLEAN, NON-CONFLICTING VERSION
   ============================================================ */

/* ---------- EYEBROW (renamed) ---------- */
.eyebrow-s2 {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c745d;
  margin-bottom: 18px;
  font-weight: 700;
}

/* ---------- SECTION TITLE (renamed) ---------- */
.section-title-s2 {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.section-title-s2 h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title-s2 p {
  color: var(--muted);
  margin: 0;
}

/* ---------- INTRO SECTION (no conflicts) ---------- */
.intro-strip {
  padding: 0 0 44px;
  margin-top: -4px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  align-items: stretch;
}

.stat-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
}

.stat-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.stat-card p {
  color: var(--muted);
  margin: 0;
}

.quote-feature {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: center;
}

.quote-feature blockquote {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--text);
}

.quote-feature strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.doctor-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.85) sepia(0.12) brightness(0.96);
  border: 4px solid var(--ivory);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ---------- HERO PANEL (renamed) ---------- */
.hero-panel-s2 {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,253,249,0.52)),
    linear-gradient(135deg, rgba(198,173,147,0.20), rgba(247,243,238,0.06));
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 42px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-panel-s2::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 26px;
  pointer-events: none;
}

.hero-panel-s2 h1 {
  font-size: clamp(2.3rem, 4.4vw, 4.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero-panel-s2 p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 15.5px;
  position: relative;
  z-index: 1;
}

.hero-actions-s2 {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


    .results {
      padding: 10px 0 80px;
    }

/* ---------- LOOKBOOK (renamed) ---------- */


    .lookbook {
      padding: 0 0 70px;
    }

    .lookbook .section-title {
      margin-bottom: 26px;
    }

    .lookbook .eyebrow {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.8vw, 3rem);
      line-height: 1;
      letter-spacing: 0.08em;
      color: #d4af37;
      text-shadow: 0 1px 0 rgba(0,0,0,0.15);
      margin-bottom: 10px;
    }

    .lookbook .section-title h2 {
      font-size: clamp(1.55rem, 2.4vw, 2.4rem);
      letter-spacing: 0.12em;
      margin-bottom: 10px;
    }

    .lookbook-category {
      margin: 0 0 34px;
    }

    .lookbook-category-title {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #8c745d;
    }

    .lookbook-category-title::after {
      content: "";
      width: 54px;
      height: 1px;
      background: rgba(212,175,55,0.70);
      display: block;
    }

    .lookbook-scroll {
      display: flex;
      gap: 22px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 6px 4px 18px;
    }

    /* Enable smooth inertia scrolling on iOS Safari */
  -webkit-overflow-scrolling: touch; 
}

/* Chrome, Safari, and Opera scrollbar styling */
.lookbook-scroll::-webkit-scrollbar {
  height: 10px;
  display: block !important; /* Force render on WebKit */
}

.lookbook-scroll::-webkit-scrollbar-track {
  background: rgba(28, 24, 22, 0.08); /* Light visible track */
  border-radius: 999px;
}

.lookbook-scroll::-webkit-scrollbar-thumb {
  background: #d4af37; /* Gold scrollbar thumb matching theme */
  border-radius: 999px;
}

/* Firefox support */
.lookbook-scroll {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 rgba(28, 24, 22, 0.08);
}

    .lookbook-item {
      min-width: 380px;
      border-radius: 28px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: var(--shadow);
      scroll-snap-align: start;
      position: relative;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(255,255,255,0.65);
    }

    .lookbook-item img {
      width: 100%;
      height: 405px;
      object-fit: cover;
      filter: saturate(0.9) sepia(0.08) brightness(0.96) contrast(0.96);
      transition: transform 0.45s ease;
    }

    .lookbook-item:hover img {
      transform: scale(1.04);
    }

    .lookbook-item::after {
      display: none;
    }

    .lookbook-caption {
      position: static;
      color: var(--text);
      background: var(--ivory);
      border-radius: 0;
      padding: 10px 16px 12px;
      border-top: 1px solid var(--line);
      border-left: 3px solid #d4af37;
      min-height: 68px;
    }

    .lookbook-caption strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      line-height: 1;
      margin-bottom: 3px;
    }

    .lookbook-caption span {
      display: block;
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.35;
    }

@media (max-width: 980px) {
  /* Set width to ~78-82% so the next card visually "peeks" into view */
  .lookbook-item {
    min-width: 78%; 
    max-width: 78%;
  }

  .lookbook-item img {
    height: 320px;
  }
}

/* ---------- TESTIMONIALS (renamed) ---------- */

.testimonial-grid-s2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card-s2 {
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 10px;
  position: relative;
  overflow: hidden;
}

/* Ensure the p tag is relatively positioned for absolute elements */
.testimonial-card-s2 p {
  position: relative;
  /* Optional: Add horizontal padding if the large quotes overlap the text */
  padding: 0 10px;
    font-size: 14px;
}

/* Opening Quote (Inline before text) */
.testimonial-card-s2 p::before {
  content: "“";
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: rgba(198, 173, 147, 0.45);
  line-height: 0;
  vertical-align: -0.25em; /* Adjusts vertical alignment relative to text */
  margin-right: 2px;
}

/* Closing Quote (Inline after text) */
.testimonial-card-s2 p::after {
  content: "”";
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: rgba(198, 173, 147, 0.45);
  line-height: 0;
  vertical-align: -0.35em; /* Keeps styling consistent with the opening quote */
  margin-left: 3px;
}

.testimonial-card-s2 strong {
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
    float: right;
}

    .highlight {
      border-left: 4px solid #d4af37;
    }

/* ---------- BRANDS (renamed) ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-card {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  padding: 22px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.brand-card img {
  max-height: 86px;
  width: 100%;
  object-fit: contain;
  filter: saturate(0.82) sepia(0.10) brightness(0.98) contrast(0.96);
}

/* ---------- CTA (renamed) ---------- */
.cta-s2 {
  padding: 10px 0 90px;
}

.cta-box-s2 {
  background: var(--black);
  color: var(--white);
  border-radius: 32px;
  padding: 54px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box-s2 h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: 14px;
}

.cta-box-s2 p {
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0 auto 24px;
}

.cta-box-s2 .btn {
  background: var(--sand);
  color: var(--black);
}

/* ---------- CALL NOW BUTTON (no conflict) ---------- */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111111;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  z-index: 999;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
}

.call-now-btn:hover {
  background: #d4af37;
  color: #111111;
  transform: translateY(-2px);
}

/* ---------- FORM MODAL (no conflict) ---------- */
.form-modal,
.thank-you-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.form-box,
.thank-you-box {
  background: var(--ivory);
  border-radius: 28px;
  padding: 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.35);
}

.form-box h2,
.thank-you-box h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.form-box p,
.thank-you-box p {
  color: var(--muted);
  margin-bottom: 22px;
}

.form-box input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: white;
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.close-form {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--muted);
}

.thank-you-box button {
  background: var(--black);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}


    @media (max-width: 768px) {
      .call-now-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 13px;
      }
    }

    @media (max-width: 980px) {

      .intro-grid,
      .testimonial-grid-s2,
      .brand-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel-s2 {
        padding: 34px 24px;
      }

      .quote-feature {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .doctor-img {
        margin: 0 auto;
      }

      .lookbook-item {
        min-width: 82%;
      }

      .lookbook-item img {
        height: 350px;
      }
    }

/* ============================================================
   MERGED FROM styles1.css — SAFE VERSION WITH s3 SUFFIX
   ============================================================ */

/* ---------- HERO (unique in styles1.css) ---------- */
.hero-s3 {
  padding: 70px 0 48px;
}

.hero-box-s3 {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,253,249,0.42)),
    url('../images/contact.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
}

.hero-box-s3::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,243,238,0.96), rgba(247,243,238,0.76), rgba(247,243,238,0.20)),
    linear-gradient(135deg, rgba(212,175,55,0.16), rgba(255,255,255,0));
}

.hero-content-s3 {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 58px;
    text-align: justify;
}

.refined-eyebrow-s3 {
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}

.refined-heading-s3 {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  margin-bottom: 14px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
}

/* ---------- CONTACT SECTION (unique) ---------- */
.contact-section-s3 {
  padding: 28px 0 90px;
}

.contact-grid-s3 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

    .contact-card-s3 h2,
    .form-card-s3 h2 {
      font-size: clamp(2.1rem, 4vw, 3.4rem);
      margin-bottom: 16px;
    }

    .contact-card p {
      color: var(--muted);
      margin: 0 0 24px;
    }

.contact-card-s3,
.form-card-s3 {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 34px;
}

.contact-card-s3 {
  border-left: 4px solid var(--gold);
}

.section-label-s3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c745d;
  font-weight: 700;
  margin-bottom: 14px;
}

.info-list-s3 {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.info-item-s3 {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.info-item-s3 strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.info-item-s3 span,
.info-item-s3 a {
  color: var(--muted);
  font-size: 15px;
}

    .form-card-s3 form {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid var(--line);
      background: var(--ivory);
      border-radius: 16px;
      padding: 15px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--text);
      outline: none;
    }

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

    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(212,175,55,0.7);
      box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
    }


.two-fields-s3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ---------- MAP SECTION (unique) ---------- */
.map-section {
  padding: 0 0 90px;
}

.map-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.65);
  background: var(--ivory);
}

.map-header {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.map-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.map-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* ---------- FOOTER (unique version) ---------- */
.footer-grid-s3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-bottom-s3 {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

    iframe {
      width: 100%;
      height: 430px;
      border: 0;
      display: block;
      filter: saturate(0.75) sepia(0.08);
    }

/* ---------- RESPONSIVE (unique) ---------- */
@media (max-width: 980px) {
  .contact-grid-s3,
  .footer-grid-s3,
  .two-fields-s3 {
    grid-template-columns: 1fr;
  }

  .hero-content-s3,
  .contact-card-s3,
  .form-card-s3 {
    padding: 28px;
  }

  .map-header {
    display: block;
  }
}

@media (max-width: 560px) {
  .hero-s3 {
    padding-top: 42px;
  }

  .logo-s3 {
    font-size: 31px;
  }

  .logo-icon-img-s3 {
    height: 35px;
  }
}







.hero-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,253,249,0.45)),
    radial-gradient(circle at top right, rgba(212,175,55,0.16), transparent 35%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 34px 48px;
  text-align: center;
}

.hero-card h1 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  margin:0 0 10px;
  text-transform:uppercase;
  line-height:1;
  letter-spacing:0.05em;
}

.hero-card p {
  color:var(--muted);
  font-size:17px;
  max-width:760px;
  margin:0 auto 20px;
  line-height:1.55;
}


/* OFFERS */
.offer-section{
  padding:35px 0 80px;
}

.offer-grid{
  display:grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(200px, 50vw, 400px), 1fr)
  );
  gap:30px;
}

.offer-card{
  background:#fff;
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
  border:1px solid rgba(212,175,55,0.18);
}

.offer-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, #d4af37, #f2d27a, #d4af37);
  z-index:2;
}

.offer-img{
  height:280px;
  overflow:hidden;
}

.offer-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(0.88) sepia(0.12) brightness(0.96) contrast(0.98);
}

.offer-content{
  padding:36px;
}

.offer-card h2{
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height:1.15;
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  font-weight:600;
  text-wrap:balance;
}

.offer-card h2::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  background:linear-gradient(90deg, #d4af37, #f2d27a);
  margin:14px 0 0;
}

.offer-card h3{
  color:var(--muted);
  margin:0 0 10px;
  font-size:17px;
  font-weight:500;
}

.price{
  font-size:58px;
  line-height:1;
  font-family:'Cormorant Garamond',serif;
  margin:12px 0;
}

.offer-card p{
  color:var(--muted);
  line-height:1.6;
}

.details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:20px 0;
}

.detail{
  background:var(--ivory);
  padding:12px;
  border-radius:12px;

  font-size:14px;
  border:1px solid rgba(212,175,55,0.12);
}

.detail strong{
  color:var(--text);
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.fine-print{
  text-align:center;
  margin-top:30px;
  font-size:13px;
  color:var(--muted);
}

@media(max-width:900px){
  .hero-card{
    padding:32px 28px;
  }
}