/* ============================================================
   iDENTiTY SALON — MAIN STYLESHEET
   Apple-inspired premium design
   ============================================================ */

:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --rose-pale:   #f7c6d9;
  --teal:        #507778;
  --blush:       #fce9e8;
  --rose-deep:   #c67480;
  --gray-light:  #f5f5f5;
  --gray-mid:    #888;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::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(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}

.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--black);
  display: block;
  transition: var(--transition);
}

/* ============================================================
   HERO — Centered model, text split left & right
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 72px;
}

.hero-grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,198,217,0.28) 0%, transparent 70%);
  pointer-events: none;
  transition: left 0.1s ease, top 0.1s ease;
  transform: translate(-50%, -50%);
  top: 50%; left: 50%;
  z-index: 1;
}

/* 3-column grid */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 44% 1fr;
  width: 100%;
  min-height: calc(100vh - 72px);
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

/* LEFT column */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 72px;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  border: 1px solid var(--rose-pale);
  color: var(--rose-deep);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title-left {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--black);
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero-title-left em { font-style: italic; color: var(--teal); }

.hero-subtitle {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.8;
  max-width: 320px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(80,119,120,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.18);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* CENTER column — circle + model */
.hero-center-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: transparent;
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards;
  padding-top: 40px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* The circle behind the model */
.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: min(460px, 88%);
  height: min(460px, 88%);
  border-radius: 50%;
  background: var(--rose-pale);
  z-index: 0;
  animation: circleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes circleIn {
  from { transform: translate(-50%, -40%) scale(0.7); opacity: 0; }
  to   { transform: translate(-50%, -40%) scale(1);   opacity: 1; }
}

.hero-model-img {
  position: relative;
  z-index: 1;
  width: min(380px, 90%);
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: modelIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.15));
}

@keyframes modelIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-image-pill {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(247,198,217,0.7);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 2;
  animation: fadeUp 0.8s 1s both;
}

.hero-image-pill span { color: var(--rose-deep); }

/* Hero bottom bar */
.hero-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 72px;
  z-index: 10;
  border-top: 1px solid rgba(0,0,0,0.05);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-social a {
  color: rgba(0,0,0,0.4);
  transition: color var(--transition);
}

.hero-social a:hover { color: var(--teal); }

.hero-location {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 400;
}

/* RIGHT column */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 48px;
  gap: 48px;
}

.hero-title-right {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--black);
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s forwards;
}

.hero-title-right em { font-style: italic; color: var(--teal); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.hero-stat { text-align: right; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-mid);
  margin-top: 4px;
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.section {
  padding: 120px 48px;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--teal); }

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
}

.container { max-width: 1280px; margin: 0 auto; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--black);
  padding: 140px 48px;
  text-align: center;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 40px;
}

.manifesto-text em { font-style: italic; color: var(--rose-pale); }

.manifesto-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  font-weight: 300;
}

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

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--gray-light);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(80,119,120,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.service-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.service-card-price {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FULL PRICE LIST
   ============================================================ */
.pricing { background: var(--blush); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 60px;
}

.price-item {
  background: var(--blush);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.price-item:hover { background: var(--rose-pale); }

.price-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  white-space: nowrap;
  margin-left: 16px;
}

.pricing-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
}

/* ============================================================
   WHY CHOOSE US — INFOGRAPHIC
   ============================================================ */
.infographic { background: var(--white); }

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 80px;
}

.info-card {
  padding: 56px 36px;
  background: var(--gray-light);
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover { background: var(--blush); transform: translateY(-4px); }
.info-card:hover::before { transform: scaleX(1); }

.info-icon {
  font-size: 2.2rem;
  margin-bottom: 24px;
  display: block;
}

.info-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}

.info-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 12px;
}

.info-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--black); padding: 120px 0; }

.gallery-header {
  padding: 0 48px;
  margin-bottom: 60px;
}

.gallery-header .section-title { color: var(--white); }
.gallery-header .section-label { color: var(--rose-pale); }

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

.gallery-item {
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s;
  opacity: 0.88;
}

.gallery-item:hover img { transform: scale(1.05); opacity: 1; }

.gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 2; aspect-ratio: unset; min-height: 500px; }
.gallery-item:nth-child(2) { grid-column: span 4; min-height: 248px; }
.gallery-item:nth-child(3) { grid-column: span 4; min-height: 248px; }
.gallery-item:nth-child(4) { grid-column: span 5; min-height: 360px; }
.gallery-item:nth-child(5) { grid-column: span 4; min-height: 360px; }
.gallery-item:nth-child(6) { grid-column: span 3; min-height: 360px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-light);
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.team-card:hover img { transform: scale(1.05); filter: grayscale(0%); }

.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  transform: translateY(4px);
  transition: transform var(--transition);
}

.team-card:hover .team-card-info { transform: translateY(0); }

.team-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}

.team-card-role {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose-pale);
  margin-top: 3px;
}

/* ============================================================
   TESTIMONIALS — Animated Columns
   ============================================================ */
.testimonials { background: var(--black); padding: 120px 48px; overflow: hidden; }

.testimonials-header { text-align: center; margin-bottom: 80px; }
.testimonials-header .section-title { color: var(--white); }
.testimonials-header .section-label { color: var(--rose-pale); }
.testimonials-header .section-subtitle { color: rgba(255,255,255,0.45); margin: 0 auto; }

.testimonials-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-height: 680px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollUp 28s linear infinite;
}

.testimonials-col:nth-child(2) { animation-duration: 34s; animation-delay: -8s; }
.testimonials-col:nth-child(3) { animation-duration: 30s; animation-delay: -4s; }

@keyframes scrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.testimonials-col:hover { animation-play-state: paused; }

.testimonial-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: rgba(247,198,217,0.3); }

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

.testimonial-stars span { color: #fbbf24; font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.testimonial-source {
  font-size: 0.68rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Trustindex override */
.testimonials-trustindex { margin-top: 60px; }

/* ============================================================
   BRANDS
   ============================================================ */
.brands { background: var(--white); padding: 80px 48px; border-top: 1px solid rgba(0,0,0,0.06); }

.brands-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  margin-bottom: 48px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}

.brand-name:hover { color: var(--teal); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { background: var(--blush); padding: 100px 48px; }

.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.instagram-handle {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.instagram-handle:hover { opacity: 0.7; }

/* Smash Balloon override */
.instagram .sb-instagram-feed .sbi_item { border-radius: 0 !important; }

/* ============================================================
   CONTACT & HOURS
   ============================================================ */
.contact { background: var(--black); padding: 120px 48px; }

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

.contact-info .section-title { color: var(--white); }
.contact-info .section-label { color: var(--rose-pale); }

.contact-detail {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--rose-pale);
}

.contact-item-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-item-text strong {
  display: block;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item-text a {
  color: var(--rose-pale);
  transition: color var(--transition);
}

.contact-item-text a:hover { color: var(--white); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-day {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
}

.map-wrapper {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
}

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

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rose-pale); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-intro { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .nav-wrapper { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 80px 24px; }

  /* Hero 3-col → stacked on mobile */
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-left {
    padding: 48px 24px 32px;
    align-items: center;
    text-align: center;
  }
  .hero-subtitle { max-width: 100%; }
  .hero-buttons { flex-direction: row; justify-content: center; }
  .hero-center-image { min-height: 480px; }
  .hero-right {
    padding: 32px 24px 48px;
    align-items: center;
    gap: 32px;
  }
  .hero-title-right { text-align: center; }
  .hero-stats { align-items: center; flex-direction: row; justify-content: center; gap: 32px; }
  .hero-stat { text-align: center; }
  .hero-image-pill { bottom: 20px; font-size: 0.65rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 12; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-column: span 6; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: span 12; }
  .testimonials-columns { grid-template-columns: 1fr; max-height: 500px; }
  .testimonials-col:nth-child(2),
  .testimonials-col:nth-child(3) { display: none; }
  .infographic-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 24px; }
  .brands-row { gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact { padding: 80px 24px; }
  .brands { padding: 60px 24px; }
  .instagram { padding: 80px 24px; }
}

/* Mobile nav open state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 999;
}
