/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
  --sage: #c8d5cb;
  --sage-dark: #a8bfad;
  --sage-light: #dce8df;
  --blush: #e8b4a0;
  --blush-light: #f2c9bc;
  --blush-pale: #f9ece7;
  --rose-gold: #c9956a;
  --rose-gold-dark: #b07850;
  --gold: #b8860b;
  --brown: #5c3d2e;
  --brown-light: #7a5240;
  --cream: #faf8f5;
  --white: #ffffff;
  --text-dark: #3a2418;
  --text-mid: #6b4c3b;
  --text-light: #9a7060;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(92,61,46,0.08);
  --shadow-md: 0 8px 32px rgba(92,61,46,0.12);
  --shadow-lg: 0 20px 60px rgba(92,61,46,0.16);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-weight: 300;
  color: var(--text-mid);
}

/* ============================================
   UTILITIES
============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--text-light);
}

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

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
  box-shadow: 0 4px 20px rgba(201,149,106,0.35);
}

.btn-primary:hover {
  background: var(--rose-gold-dark);
  border-color: var(--rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,106,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}

.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-lg {
  font-size: 1rem;
  padding: 18px 42px;
}

/* ============================================
   HEADER / NAV
============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--transition);
}

header.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.nav-logo span {
  color: var(--rose-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--rose-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 16px;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--rose-gold);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4e0d7 0%, #c8d5cb 30%, #ddc8bc 70%, #e8c4b0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(242,201,188,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(200,213,203,0.5) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative circles */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,106,0.15);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-deco-ring {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,106,0.08);
  top: -250px;
  right: -250px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,149,106,0.3);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge .stars {
  color: #f4a61a;
  letter-spacing: -1px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--brown);
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 460px;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-group {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-main-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-main-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blush-light), var(--rose-gold));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card h3 {
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.hero-main-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown);
}

.hero-float-card-1 {
  bottom: -20px;
  left: -30px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card-2 {
  top: -16px;
  right: -20px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-gold);
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   SOCIAL PROOF STRIP
============================================ */
.proof-strip {
  background: var(--brown);
  padding: 20px 0;
  overflow: hidden;
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.proof-item .icon {
  color: var(--blush);
  font-size: 1rem;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   SERVICES
============================================ */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(200,213,203,0.6);
  transition: all var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card .btn {
  font-size: 0.8rem;
  padding: 10px 22px;
}

/* Icon bg variants */
.icon-bg-1 { background: #f9ece7; }
.icon-bg-2 { background: #f0f4f1; }
.icon-bg-3 { background: #fdf3e7; }
.icon-bg-4 { background: #fce8e8; }
.icon-bg-5 { background: #eef0f8; }

.icon-color-1 { color: var(--rose-gold); }
.icon-color-2 { color: var(--sage-dark); }
.icon-color-3 { color: var(--gold); }
.icon-color-4 { color: #c06060; }
.icon-color-5 { color: #7080b8; }

/* ============================================
   WHY SECTION
============================================ */
.why {
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage) 50%, var(--blush-pale) 100%);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-title {
  margin-bottom: 20px;
}

.why-text > p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: var(--text-mid);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(4px);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg {
  width: 14px;
  height: 14px;
  stroke: white;
}

.why-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2px;
}

.why-item-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-stat-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.why-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.why-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(200,213,203,0.5);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--blush-light);
  line-height: 1;
  opacity: 0.6;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #f4a61a;
}

.testimonial-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), var(--rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.author-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--brown);
}

.author-service {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   LOCATION / CONTACT
============================================ */
.location {
  background: linear-gradient(160deg, var(--blush-pale) 0%, var(--cream) 100%);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-gold);
}

.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.5;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  max-height: 480px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   FAQ
============================================ */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,213,203,0.6);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  user-select: none;
  transition: color var(--transition);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-question:hover {
  color: var(--rose-gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blush-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--rose-gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--rose-gold);
}

.faq-item.open .faq-icon svg {
  stroke: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, #c9956a 0%, #b8860b 40%, #c47a5a 80%, #d4927a 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-label {
  color: rgba(255,255,255,0.7);
}

.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.footer-brand .nav-logo span {
  color: var(--blush);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(250,248,245,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--rose-gold);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--cream);
  fill: none;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,248,245,0.75);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--blush);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--blush);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,248,245,0.75);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250,248,245,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(250,248,245,0.45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--blush);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-tooltip {
  background: var(--white);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse-ring 2s cubic-bezier(0.4,0,0.6,1) infinite;
}

.wa-pulse-2 {
  animation-delay: 0.5s;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .location-inner {
    grid-template-columns: 1fr;
  }

  .map-container {
    aspect-ratio: 4/3;
    max-height: 320px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .proof-strip-inner {
    gap: 20px;
  }

  .proof-divider {
    display: none;
  }

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

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .wa-btn {
    width: 52px;
    height: 52px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }
}

/* ============================================
   LOGO IMAGE
============================================ */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-brand .nav-logo-img {
  filter: brightness(0) invert(1);
  height: 48px;
}

/* ============================================
   HERO PHOTO
============================================ */
.hero-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  width: 100%;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   GALLERY
============================================ */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item--tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }
}
