/* ========================================
   SG NAILS – ZÜRICH | Global Stylesheet
   ======================================== */

:root {
  --black: #0d0d0d;
  --off-black: #1a1a1a;
  --charcoal: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --cream: #f9f5ef;
  --white: #ffffff;
  --grey-light: #f2efe9;
  --grey-mid: #9a9590;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7570;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

/* ---------- 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);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--off-black);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section--grey {
  background: var(--grey-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: transparent;
  color: var(--black);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav__logo span {
  color: var(--gold);
}

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

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  padding: 10px 22px;
  font-size: 0.75rem;
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.65) 0%, rgba(13,13,13,0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- About Strip ---------- */
.about-strip {
  padding: 80px 0;
  background: var(--white);
}

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

.about-strip__img {
  position: relative;
}

.about-strip__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--grey-light);
}

.about-strip__img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gold);
  opacity: 0.12;
}

.about-strip__text .label { margin-bottom: 12px; }

.about-strip__text h2 {
  margin-bottom: 20px;
}

.about-strip__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-strip__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-light);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Services Section ---------- */
.services {
  background: var(--off-black);
  padding: 96px 0;
}

.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  color: var(--white);
}

.services__header h2 { color: var(--white); }
.services__header p { color: rgba(255,255,255,0.6); margin-top: 16px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

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

.service-card:hover .service-card__arrow {
  transform: translateX(4px);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
}

.service-card__body {
  padding: 24px;
}

.service-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card__arrow {
  transition: var(--transition);
}

/* ---------- Perks / Benefits ---------- */
.perks {
  padding: 96px 0;
  background: var(--cream);
}

.perks__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}

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

.perk {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.perk__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, #a8854e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}

.perk__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.perk__text {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ---------- Pricing Section ---------- */
.pricing {
  padding: 96px 0;
  background: var(--white);
}

.pricing__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing__tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--grey-light);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-body);
}

.pricing__tab:hover,
.pricing__tab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.pricing__panel {
  display: none;
  max-width: 680px;
  margin: 0 auto;
}

.pricing__panel.active { display: block; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-light);
  gap: 16px;
}

.price-row:first-child { border-top: 1px solid var(--grey-light); }

.price-row__name {
  font-size: 1rem;
  color: var(--text-dark);
  flex: 1;
}

.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--grey-mid);
  margin: 0 12px;
  opacity: 0.5;
}

.price-row__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- Team Section ---------- */
.team {
  padding: 96px 0;
  background: var(--off-black);
}

.team__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
  color: var(--white);
}

.team__header .label { color: var(--gold); }
.team__header h2 { color: var(--white); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 20px;
  position: relative;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

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

.team-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #333 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Reviews ---------- */
.reviews {
  padding: 96px 0;
  background: var(--cream);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.reviews__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.9rem;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--grey-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-card__source {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---------- Instagram Section ---------- */
.instagram {
  padding: 96px 0;
  background: var(--white);
}

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

.instagram__handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.instagram__item {
  aspect-ratio: 1;
  background: var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0);
  transition: var(--transition);
}

.instagram__item:hover::after {
  background: rgba(201,169,110,0.3);
}

.instagram__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--grey-light), #e8e4dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.4;
}

/* ---------- Service Page Hero ---------- */
.service-hero {
  padding: 160px 0 80px;
  background: var(--off-black);
  text-align: center;
}

.service-hero h1 { color: var(--white); }
.service-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

/* ---------- Service Price Page ---------- */
.service-features {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

.service-features__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.feature-pill__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---------- Full Price List ---------- */
.full-pricing {
  padding: 96px 0;
  background: var(--white);
}

.full-pricing__inner {
  max-width: 680px;
  margin: 0 auto;
}

.full-pricing__header {
  text-align: center;
  margin-bottom: 56px;
}

.price-group {
  margin-bottom: 48px;
}

.price-group__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  border-bottom-width: 1px;
  opacity: 0.6;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 100px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.04;
}

.cta-banner h2 {
  color: var(--white);
  max-width: 560px;
  margin: 0 auto 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ---------- Footer ---------- */
.footer {
  background: #080808;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}

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

.footer__brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer__brand-text {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--gold); }

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

.footer__contact p span {
  opacity: 0.7;
}

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

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

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

.footer__bottom p { font-size: 0.8rem; }

.footer__bottom a { color: var(--gold); }

/* ---------- Booking Bar ---------- */
.booking-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.booking-bar .btn {
  box-shadow: 0 8px 32px rgba(201,169,110,0.4);
}

/* ---------- About Page ---------- */
.about-story {
  padding: 96px 0;
}

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

.about-story__img-stack {
  position: relative;
}

.about-story__img-main {
  width: 80%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--grey-light);
}

.about-story__img-secondary {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--gold-light);
  border: 6px solid var(--white);
}

/* ---------- Mobile Nav Overlay ---------- */
@media (max-width: 768px) {
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);

    /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav__links.nav__links--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    padding: 12px 0;
    transition: color 0.2s;
  }

  .nav__links a:hover,
  .nav__links a.active {
    color: var(--gold);
  }

  .nav__links .btn--gold {
    margin-top: 16px;
    font-size: 0.9rem;
    padding: 14px 36px;
    color: var(--white) !important;
  }

  /* Scroll Lock */
  body.nav-open { overflow: hidden; }

  /* Hamburger → X Animation */
  .nav__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__hamburger--open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

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

  .nav__hamburger { display: flex; }

  .about-strip__grid { grid-template-columns: 1fr; }
  .about-strip__img { display: none; }

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

  .perks__grid { grid-template-columns: repeat(2, 1fr); }

  .team__grid { grid-template-columns: repeat(2, 1fr); }

  .instagram__grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__img-secondary { display: none; }
}

@media (max-width: 480px) {
  .perks__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .about-strip__stats { flex-direction: column; gap: 20px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* ---------- Image Placeholder Style ---------- */
.img-placeholder {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey-mid);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

.img-placeholder--dark {
  background: #2a2a2a;
  color: rgba(255,255,255,0.2);
}

.img-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}
