/* ═══════════════════════════════════════════════════════
   DOMINIKA KUSIOR – MOBILNE FRYZJERSTWO
   Premium CSS — Rose Gold · Cream · Dark Charcoal
   ═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Palette */
  --rose-gold:        #c9957a;
  --rose-gold-light:  #e8c4b2;
  --rose-gold-dark:   #a87560;
  --rose-gold-glow:   rgba(201, 149, 122, 0.35);

  --cream:            #faf6f1;
  --cream-dark:       #f3ece3;
  --cream-medium:     #ecddd0;

  --charcoal:         #2e2622;
  --charcoal-mid:     #4a3f3a;
  --charcoal-light:   #7a6c66;
  --charcoal-muted:   #a99990;

  --white:            #ffffff;

  /* Glass */
  --glass-bg:         rgba(255, 255, 255, 0.55);
  --glass-border:     rgba(201, 149, 122, 0.18);
  --glass-shadow:     rgba(74, 63, 58, 0.08);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 12vw, 140px);
  --container:   1180px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
select, input, textarea { font-family: var(--font-body); }

/* ── CONTAINER ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

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

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--charcoal-light);
  max-width: 560px;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

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

.section-header.text-left {
  text-align: left;
}

.section-header.text-left .section-subtitle {
  margin: 0;
}

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

/* ── SECTION PADDING ────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  color: var(--white);
  padding: 16px 44px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 8px 30px var(--rose-gold-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--rose-gold-glow);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--rose-gold-light);
  transition: all 0.3s var(--ease-smooth);
}

.btn-ghost:hover {
  color: var(--rose-gold);
  border-bottom-color: var(--rose-gold);
  gap: 14px;
}

.btn-full { width: 100%; justify-content: center; }

/* ── GLASS CARD ─────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 40px var(--glass-shadow);
}

/* ── SCROLL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.delay-1.animated { transition-delay: 0.15s; }
.delay-2.animated { transition-delay: 0.30s; }
.delay-3.animated { transition-delay: 0.50s; }
.delay-4.animated { transition-delay: 0.70s; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-smooth), background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(46, 38, 34, 0.06);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  display: flex;
  gap: 6px;
  align-items: baseline;
  transition: color 0.3s;
  flex-shrink: 0;
}

.logo-first { font-weight: 300; }
.logo-last { font-weight: 600; color: var(--rose-gold); }
.logo:hover { color: var(--rose-gold); }

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover { color: var(--rose-gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white) !important;
  padding: 11px 28px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  transition: all 0.35s var(--ease-smooth) !important;
  box-shadow: 0 4px 20px var(--rose-gold-glow);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--rose-gold-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
  transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-smooth);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.4rem;
  color: var(--charcoal-mid);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--charcoal);
  transition: color 0.3s;
}

.mobile-nav-link:hover { color: var(--rose-gold); }

.mobile-nav-cta {
  font-style: normal !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white) !important;
  padding: 16px 44px !important;
  border-radius: 60px;
  box-shadow: 0 8px 30px var(--rose-gold-glow);
  margin-top: 10px;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519699047748-de8e457a634e?auto=format&fit=crop&w=2000&q=85');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(46, 38, 34, 0.55) 0%,
    rgba(46, 38, 34, 0.30) 50%,
    rgba(201, 149, 122, 0.20) 100%
  );
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-gold-light) 0%, transparent 70%);
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}

.p1 { width: 300px; height: 300px; top: -80px; right: -60px; animation-delay: 0s; }
.p2 { width: 200px; height: 200px; bottom: 10%; left: -40px; animation-delay: 2s; }
.p3 { width: 150px; height: 150px; top: 30%; right: 15%; animation-delay: 4s; }
.p4 { width: 100px; height: 100px; bottom: 20%; right: 30%; animation-delay: 1s; }

@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50%       { opacity: 0.3; transform: translateY(-20px) scale(1.1); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(46, 38, 34, 0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--rose-gold-light);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(232, 196, 178, 0.5);
}

.hero-actions .btn-ghost:hover {
  color: var(--rose-gold-light);
  border-bottom-color: var(--rose-gold-light);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services-section {
  background: var(--white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-gold-light), transparent);
}

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

.service-card {
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-back), box-shadow 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(201,149,122,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(74, 63, 58, 0.12);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background 0.3s, transform 0.3s var(--ease-back);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold) 100%);
  transform: scale(1.1) rotate(-3deg);
}

.service-svg {
  width: 28px;
  height: 28px;
  color: var(--rose-gold);
  transition: color 0.3s;
}

.service-card:hover .service-svg { color: var(--white); }

.service-card h3 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(201, 149, 122, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(201, 149, 122, 0.2);
}

/* ═══════════════════════════════════════════════════════
   WHY MOBILE
   ═══════════════════════════════════════════════════════ */
.why-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 149, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

/* Image column */
.why-image-col {}

.why-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.why-image-wrap img {
  width: 100%;
  height: clamp(460px, 55vw, 640px);
  object-fit: cover;
  object-position: center top;
  border-radius: 240px 240px 24px 24px;
  box-shadow: 0 30px 80px rgba(46, 38, 34, 0.14);
}

.why-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 10px 40px var(--rose-gold-glow);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.badge-text {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.4;
}

/* Benefits list */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-back);
}

.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
  transform: scale(1.08) rotate(-2deg);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--rose-gold);
  transition: color 0.3s;
}

.benefit-item:hover .benefit-icon svg { color: var(--white); }

.benefit-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-weight: 500;
}

.benefit-text p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--cream-dark);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

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

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item--large .gallery-img-wrap img {
  height: clamp(440px, 55vw, 680px);
  width: 100%;
  object-fit: cover;
}

.gallery-item:not(.gallery-item--large) .gallery-img-wrap img {
  height: clamp(200px, 25vw, 325px);
  width: 100%;
  object-fit: cover;
}

.gallery-img-wrap img {
  transition: transform 0.7s var(--ease-smooth);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 38, 34, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 16px;
  background: rgba(201, 149, 122, 0.8);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 28rem;
  color: rgba(201, 149, 122, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

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

.testimonial-card {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s var(--ease-back), box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(74, 63, 58, 0.1);
}

.stars {
  font-size: 1rem;
  color: var(--rose-gold);
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.75;
  flex: 1;
}

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

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

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--charcoal-muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 149, 122, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

/* Contact info */
.contact-info .section-title { margin-bottom: 20px; }

.contact-desc {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--charcoal-mid);
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--rose-gold);
  flex-shrink: 0;
}

.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1877F2;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
}

.fb-badge svg {
  width: 22px;
  height: 22px;
}

.fb-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.35);
}

/* Contact form */
.contact-form {
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9957a' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(201, 149, 122, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-muted);
}

.form-note {
  font-size: 0.72rem;
  color: var(--charcoal-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--rose-gold), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo em {
  font-weight: 600;
  color: var(--rose-gold);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--charcoal-muted);
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.footer-links-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
}

.footer-links-col a,
.footer-links-col p {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
  line-height: 1.7;
}

.footer-links-col a:hover { color: var(--rose-gold-light); }

.footer-links-col p em { color: var(--rose-gold-light); font-style: italic; }

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-credit { color: rgba(255, 255, 255, 0.35) !important; }
.footer-credit strong { color: var(--rose-gold-light); }

/* ═══════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  padding: 14px 24px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px var(--rose-gold-glow), 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--rose-gold-glow);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-image-col { order: -1; }

  .why-image-wrap img {
    height: 400px;
    border-radius: 200px 200px 24px 24px;
  }

  .why-image-badge {
    right: 10px;
    bottom: -16px;
    width: 100px;
    height: 100px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(60px, 10vw, 100px); }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large { grid-row: auto; }

  .gallery-item--large .gallery-img-wrap img,
  .gallery-item:not(.gallery-item--large) .gallery-img-wrap img {
    height: 260px;
  }

  /* Hero */
  .hero-actions { gap: 20px; }
  .hero-scroll-hint { display: none; }

  /* Floating CTA */
  .floating-cta span { display: none; }
  .floating-cta {
    padding: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
    bottom: 24px;
    right: 24px;
  }

  .floating-cta svg { width: 22px; height: 22px; }
}

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

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

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

@media (max-width: 400px) {
  .hero-title { font-size: 2.6rem; }
  .btn-primary { padding: 14px 32px; font-size: 0.75rem; }
}
