/* ============================================================
   SANGINI — Professional Women's Makeup & Beauty
   Elegant • Minimalist • Mobile-First
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette */
  --ivory:        #faf8f5;
  --ivory-warm:   #f5f0ea;
  --beige:        #e8ddd1;
  --beige-light:  #f0e9e0;
  --blush:        #d4a89a;
  --blush-muted:  #c9a193;
  --gold:         #b8956a;
  --gold-light:   #d4b896;
  --gold-shimmer: #c9a96e;
  --charcoal:     #3a3330;
  --brown:        #5c4d43;
  --brown-light:  #7a6b60;
  --white:        #ffffff;
  --shadow:       rgba(58, 51, 48, .06);
  --shadow-md:    rgba(58, 51, 48, .10);

  /* Typography */
  --font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:   'Outfit', 'Segoe UI', system-ui, sans-serif;

  /* Sizing */
  --container:   1200px;
  --container-sm: 800px;
  --header-h:    72px;

  /* Transitions */
  --ease:        cubic-bezier(.25, .46, .45, .94);
  --duration:    0.4s;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--brown-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  max-width: var(--container-sm);
}

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

.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
  margin: 1.2rem 0;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.btn--outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-shimmer));
  color: var(--white);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, .3);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.82rem;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(250, 248, 245, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow var(--duration) var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 12px var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--gold);
}

.header__logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.header__logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}

/* Desktop nav */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--brown);
  position: relative;
  transition: color var(--duration) var(--ease);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--charcoal);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__cta {
  display: none;
}

/* Hamburger */
.header__hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1010;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.header__hamburger.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  text-align: center;
}

.mobile-nav__item {
  margin-bottom: 24px;
}

.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s;
}

.mobile-nav__link:hover {
  color: var(--gold);
}

.mobile-nav__cta {
  margin-top: 32px;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ivory);
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    var(--ivory) 0%,
    rgba(250, 248, 245, .4) 40%,
    rgba(250, 248, 245, 0) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blush-muted);
}

.hero__text {
  font-size: 1.05rem;
  color: var(--brown-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--brown-light);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* Hero — mobile: full-width image, overlay text */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero__bg {
    width: 100%;
  }

  .hero__bg::after {
    background: linear-gradient(
      0deg,
      var(--ivory) 10%,
      rgba(250, 248, 245, .85) 45%,
      rgba(250, 248, 245, .5) 100%
    );
  }

  .hero__content {
    padding: 120px 0 80px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about__image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about__image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s var(--ease);
}

.about__image-wrap:hover img {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-light);
  border-radius: 8px;
  z-index: -1;
}

.about__text h2 {
  margin-bottom: 20px;
}

.about__text p {
  color: var(--brown-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about__highlight-tag {
  padding: 8px 20px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
}

.about__highlight-tag:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  padding: 100px 0;
  background: var(--ivory);
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px var(--shadow);
  transition: all 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-md);
}

.service-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__image-wrap {
  overflow: hidden;
  position: relative;
}

.service-card__image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255,255,255,.6));
}

.service-card__body {
  padding: 28px 24px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease), color 0.3s;
}

.service-card__link:hover {
  gap: 14px;
  color: var(--charcoal);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-us__header {
  text-align: center;
  margin-bottom: 60px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-us__item {
  text-align: center;
  padding: 36px 24px;
  border-radius: 8px;
  border: 1px solid var(--beige-light);
  background: var(--ivory);
  transition: all 0.4s var(--ease);
}

.why-us__item:hover {
  border-color: var(--gold-light);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow);
}

.why-us__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige-light), var(--ivory-warm));
}

.why-us__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.why-us__item h4 {
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.why-us__item p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}

/* ==========================================================
   BRAND STATEMENT
   ========================================================== */
.brand-statement {
  padding: 80px 0;
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-statement::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 12rem;
  color: rgba(184, 149, 106, .1);
  line-height: 1;
  pointer-events: none;
}

.brand-statement blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.brand-statement p {
  font-size: 0.95rem;
  color: var(--beige);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews {
  padding: 100px 0;
  background: var(--ivory);
}

.reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid var(--beige-light);
  transition: all 0.4s var(--ease);
}

.review-card:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-4px);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-card__star {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.review-card__occasion {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-top: 2px;
}

.reviews__more {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================
   LOCATION
   ========================================================== */
.location {
  padding: 100px 0;
  background: var(--white);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.location__info h2 {
  margin-bottom: 16px;
}

.location__address {
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.location__address svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.location__note {
  font-size: 0.92rem;
  color: var(--brown-light);
  margin: 16px 0 28px;
  line-height: 1.7;
}

.location__map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.location__map-wrap iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ==========================================================
   CONTACT / BOOKING
   ========================================================== */
.contact {
  padding: 100px 0;
  background: var(--ivory-warm);
}

.contact__header {
  text-align: center;
  margin-bottom: 48px;
}

.contact__header .section-subtitle {
  margin: 0 auto;
}

.contact__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 48px;
}

.contact__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.contact__action-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact__action-btn--call {
  background: var(--charcoal);
  color: var(--ivory);
}
.contact__action-btn--call:hover {
  background: var(--brown);
}

.contact__action-btn--whatsapp {
  background: #25d366;
  color: var(--white);
}
.contact__action-btn--whatsapp:hover {
  background: #1ebe57;
}

.contact__action-btn--book {
  background: linear-gradient(135deg, var(--gold), var(--gold-shimmer));
  color: var(--white);
}
.contact__action-btn--book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 106, .3);
}

.contact__action-btn--directions {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--beige);
}
.contact__action-btn--directions:hover {
  border-color: var(--charcoal);
}

/* Form */
.contact__form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige);
  border-radius: 4px;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--charcoal);
  color: var(--beige);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}

.footer__brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--beige);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--beige);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 221, 209, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--beige);
  transition: fill 0.3s;
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer__social-link:hover svg {
  fill: var(--white);
}

.footer__map {
  border-radius: 6px;
  overflow: hidden;
  margin-top: 16px;
}

.footer__map iframe {
  width: 100%;
  height: 180px;
  border: none;
  filter: grayscale(.3);
}

.footer__bottom {
  border-top: 1px solid rgba(232, 221, 209, .15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(232, 221, 209, .6);
}

/* ==========================================================
   MOBILE STICKY CTA
   ========================================================== */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 16px var(--shadow-md);
  z-index: 900;
  padding: 10px 16px;
  gap: 8px;
}

.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-cta a svg {
  width: 16px;
  height: 16px;
}

.mobile-cta__call {
  background: var(--charcoal);
  color: var(--ivory);
}

.mobile-cta__whatsapp {
  background: #25d366;
  color: var(--white);
}

.mobile-cta__book {
  background: linear-gradient(135deg, var(--gold), var(--gold-shimmer));
  color: var(--white);
}

/* ==========================================================
   RESPONSIVE — TABLET (≥ 600px)
   ========================================================== */
@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* ==========================================================
   RESPONSIVE — DESKTOP (≥ 992px)
   ========================================================== */
@media (min-width: 992px) {
  :root {
    --header-h: 80px;
  }

  /* Header */
  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__hamburger {
    display: none;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .about__image-wrap img {
    height: 480px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  /* Why us */
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Location */
  .location__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
  }

  /* Hide mobile CTA bar on desktop */
  .mobile-cta {
    display: none;
  }
}

/* ==========================================================
   LARGE DESKTOP (≥ 1200px)
   ========================================================== */
@media (min-width: 1200px) {
  .container {
    padding: 0 48px;
  }
}

/* Add bottom padding on mobile for the sticky CTA bar */
@media (max-width: 991px) {
  .footer {
    padding-bottom: 72px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus visible outlines */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
