/* =============================================
   MASSAGE STUDIO — Стили лендинга
   Цветовая схема: бежево-кремовая + тёмно-зелёная
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --cream:        #F5EFE6;
  --cream-light:  #FAF6F1;
  --sand:         #E8D9C3;
  --sand-dark:    #C9B49A;
  --forest:       #2C4A3E;
  --forest-light: #3D6357;
  --gold:         #B8965C;
  --gold-light:   #D4B07A;
  --text-dark:    #1E2A24;
  --text-mid:     #4A5C52;
  --text-soft:    #7A8C82;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    32px;
  --radius-pill:  100px;

  --shadow-soft:  0 4px 32px rgba(44, 74, 62, 0.10);
  --shadow-card:  0 8px 48px rgba(44, 74, 62, 0.14);
  --shadow-gold:  0 4px 24px rgba(184, 150, 92, 0.30);

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 3px; }

/* ─── HEADER / NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: var(--cream-light);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 2px 16px rgba(44,74,62,0.06);
  transition: box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(245, 239, 230, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(44,74,62,0.10);
  padding: 0.9rem 4rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: var(--transition);
  border-radius: var(--radius-pill);
  padding: 1rem 2.6rem;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(44,74,62,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--forest);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ─── SECTION COMMON ─── */
section { position: relative; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--gold);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 72px; /* висота навбару — контент починається нижче */
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--cream-light);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 6rem 6rem;
  position: relative;
  z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,150,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 36px; height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  color: var(--forest);
  margin-bottom: 1.6rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2.8rem;
  color: var(--text-mid);
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex; gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
  /* фото займає лише колонку hero, не залазить вище */
}
.hero-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-img-wrap:hover img { transform: scale(1.0); }

.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,239,230,0.15) 0%, rgba(44,74,62,0.18) 100%);
}

.hero-float-card {
  position: absolute;
  bottom: 3rem; left: -2.5rem;
  background: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 1.2rem;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.float-text { font-size: 0.82rem; color: var(--text-mid); }
.float-text strong { display: block; font-size: 0.95rem; color: var(--forest); font-weight: 600; }

/* ─── ABOUT ─── */
.about {
  padding: 4rem 6rem;
  background: var(--cream);
  border-top: 1px solid var(--sand-dark);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--cream-light);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 48%; left: 62%;
  background: var(--forest);
  color: var(--cream);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
}
.about-badge .num { font-size: 2rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.about-badge .lbl { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; opacity: 0.85; }

.about-content h2 { color: var(--forest); margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.4rem; }

.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin: 2.2rem 0 2.8rem;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.feature-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
}
.feature-item span { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }

/* ─── SERVICES ─── */
.services {
  padding: 4rem 6rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,150,92,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.services-header {
  max-width: 1280px; margin: 0 auto 3.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-header .section-tag { color: var(--gold-light); }
.services-header .section-tag::before { background: var(--gold-light); }
.services-header h2 { color: var(--cream-light); }
.services-header p { color: rgba(245,239,230,0.65); max-width: 340px; text-align: right; }

.services-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(245,239,230,0.05);
  border: 1px solid rgba(245,239,230,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: none;
}
.service-card:hover {
  background: rgba(245,239,230,0.1);
  border-color: rgba(184,150,92,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.service-card:hover .service-img img { transform: scale(1.06); filter: brightness(0.9); }

.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44,74,62,0.6) 100%);
}

.service-body { padding: 1.8rem; }

.service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.service-card h3 {
  font-size: 1.55rem;
  color: var(--cream-light);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.84rem;
  color: rgba(245,239,230,0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245,239,230,0.1);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.service-price small {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(245,239,230,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.service-duration {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(245,239,230,0.5);
}
.service-duration svg { opacity: 0.5; }

.service-book-btn {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  text-align: center;
  padding: 0.85rem;
  background: transparent;
  border: 1px solid rgba(184,150,92,0.5);
  color: var(--gold-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
}
.service-book-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── HOW IT WORKS ─── */
.process {
  padding: 4rem 6rem;
  background: var(--cream);
}
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4.5rem; }
.process-header h2 { color: var(--forest); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand-dark), transparent);
}

.process-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.30s; }
.process-step:nth-child(4) { transition-delay: 0.45s; }

.step-number {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 2px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.step-icon { font-size: 2.1rem; }
.process-step h4 { font-size: 1.3rem; color: var(--forest); margin-bottom: 0.7rem; }
.process-step p { font-size: 0.88rem; }

.process-cta {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.process-cta-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.process-cta-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* ─── GALLERY / ATMOSPHERE ─── */
.gallery {
  padding: 4rem 6rem;
  background: var(--cream-light);
  border-top: 1px solid var(--sand-dark);
}
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header h2 { color: var(--forest); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: none;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.9) saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(44,74,62,0);
  transition: background var(--transition);
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.gallery-item:hover .gallery-overlay { background: rgba(44,74,62,0.25); }

/* ─── BOOKING FORM ─── */
.booking {
  padding: 4rem 6rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.booking::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,150,92,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.booking-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 7rem; align-items: center;
}

.booking-info h2 { color: var(--cream-light); margin-bottom: 1.2rem; }
.booking-info > p { color: rgba(245,239,230,0.65); margin-bottom: 2.2rem; }

.booking-perks { display: flex; flex-direction: column; gap: 1.1rem; }
.perk {
  display: flex; align-items: center; gap: 1rem;
}
.perk-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  background: rgba(184,150,92,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.perk-text { font-size: 0.88rem; color: rgba(245,239,230,0.75); line-height: 1.5; }
.perk-text strong { display: block; color: var(--cream-light); font-size: 0.95rem; margin-bottom: 0.1rem; }

/* Form */
.booking-form-wrap {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,92,0.15);
}
.form-group input::placeholder { color: var(--text-soft); opacity: 0.7; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8C82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: none;
}

.form-submit {
  width: 100%;
  padding: 1.15rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  margin-top: 0.6rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.form-submit:hover {
  background: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(44,74,62,0.28);
}
.form-submit .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.form-submit.loading .spinner { display: block; }
.form-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 1rem;
}
.form-note a { color: var(--gold); text-decoration: none; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.6rem; color: var(--forest); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--text-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 6rem 3rem;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.85rem; color: rgba(245,239,230,0.45); line-height: 1.7; margin-bottom: 2rem; max-width: 280px; }

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,230,0.5);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(245,239,230,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 8px;
  background: rgba(184,150,92,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}
.contact-text {
  font-size: 0.84rem;
  color: rgba(245,239,230,0.5);
  line-height: 1.55;
}
.contact-text strong { color: var(--cream-light); display: block; font-weight: 400; }

.footer-bottom {
  max-width: 1280px; margin: 3rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: rgba(245,239,230,0.3);
}
.footer-bottom a { color: rgba(184,150,92,0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .hero-left { padding: 4rem 3rem 5rem; }
  .hero-right { height: 55vw; }
  .hero-float-card { left: 1rem; bottom: 1rem; }

  .about, .services, .process, .gallery, .booking { padding: 3rem 3rem; }
  .about-grid { gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-inner { grid-template-columns: 1fr; gap: 4rem; }
  .footer { padding: 3rem 3rem 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .nav { padding: 1.1rem 3rem; }
  .nav.scrolled { padding: 0.85rem 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding-top: 60px; }
  .hero-left { padding: 3rem 2rem 4rem; }
  .hero-stats { gap: 1.5rem; }
  .about-grid, .booking-inner { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-header p { text-align: left; }
  .about, .services, .process, .gallery, .booking { padding: 2rem 1.5rem; }
  .nav, .nav.scrolled { padding: 0.9rem 1.5rem; }
}
