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

:root {
  --bg:          #f9f7f4;
  --bg-alt:      #f2ede8;
  --dark:        #1a1512;
  --dark-soft:   #2e2723;
  --accent:      #b8904a;
  --accent-light:#d4aa6e;
  --accent-dim:  #f0e4cc;
  --text:        #3a332c;
  --text-muted:  #7a6f65;
  --border:      #e2d9cf;
  --white:       #ffffff;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --nav-h:    72px;
  --radius:   12px;
  --radius-lg:20px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Typography Utilities ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(249, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav__logo { color: var(--dark); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav.scrolled .nav__link { color: var(--text-muted); }
.nav.scrolled .nav__link:hover { color: var(--dark); background: var(--bg-alt); }

.nav__link--cta {
  color: var(--white) !important;
  background: var(--accent) !important;
  padding: 0.5rem 1.25rem !important;
}
.nav__link--cta:hover { background: var(--accent-light) !important; }

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav.scrolled .nav__toggle span { background: var(--dark); }

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

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-light); border-color: var(--accent-light); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('studio.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 8, 6, 0.55) 0%,
      rgba(10, 8, 6, 0.35) 50%,
      rgba(10, 8, 6, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}

.hero__eyebrow {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--white);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  line-height: 1;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.hero__scroll:hover { color: rgba(255,255,255,0.7); }

.hero__scroll-icon {
  width: 32px;
  height: 48px;
  border: 1.5px solid currentColor;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-arrow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(14px); opacity: 0.3; }
}

/* ─── Section Shared ───────────────────────────────────────── */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
}

.section__lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ─── About / Team ─────────────────────────────────────────── */
.about { background: var(--white); }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 2rem;
  width: 100%;
}

.team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.team__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.team__card:hover {
  box-shadow: 0 12px 40px rgba(26,21,18,0.08);
  transform: translateY(-3px);
}

.team__portrait {
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.team__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--accent-dim);
  box-shadow: 0 8px 32px rgba(184,144,74,0.18);
  display: block;
  margin: 0 auto;
}


.team__name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
}

.team__role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

.team__bio {
  margin-top: 0.875rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.team__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.team__tags li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
}

.team__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.team__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.875rem 0.35rem 0.6rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.team__phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.team__phone:hover {
  color: var(--dark);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.team__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.875rem 0.35rem 0.6rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.team__instagram svg { width: 15px; height: 15px; flex-shrink: 0; }
.team__instagram:hover {
  color: #c13584;
  border-color: #c13584;
  background: rgba(193,53,132,0.05);
}

/* ─── Services ─────────────────────────────────────────────── */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}

.service:hover {
  box-shadow: 0 10px 36px rgba(26,21,18,0.07);
  transform: translateY(-4px);
  border-color: var(--accent-light);
}

.service__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service__icon svg { width: 24px; height: 24px; }

.service__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Pricing ──────────────────────────────────────────────── */
.pricing { background: var(--dark); }

.pricing .section__title  { color: var(--white); }
.pricing .section__eyebrow { color: var(--accent); }
.pricing .section__lead    { color: rgba(255,255,255,0.5); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

/* Stylist price cards */
.pricing__stylist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 2rem;
}

.pricing__stylist-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s;
}

.pricing__stylist-card:hover {
  border-color: rgba(184,144,74,0.35);
}

.pricing__stylist-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing__stylist-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.pricing__stylist-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.pricing__stylist-role {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.pricing__note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.pricing__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, background 0.25s;
}

.pricing__card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(184,144,74,0.35);
}

.pricing__card-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-list { display: flex; flex-direction: column; gap: 0.875rem; }

.price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-list__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.price-list__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.pricing__loyalty {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.loyalty {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(184,144,74,0.12);
  border: 1px solid rgba(184,144,74,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
}

.loyalty__icon {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

.loyalty__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.loyalty__text strong {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.loyalty__text span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}

.contact__block-icon svg { width: 20px; height: 20px; }

.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact__value {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.65;
}

.hours-table {
  border-collapse: collapse;
  font-size: 0.875rem;
  width: 100%;
}

.hours-table td {
  padding: 0.3rem 0;
  color: var(--text);
  vertical-align: top;
}

.hours-table td:first-child {
  padding-right: 1.5rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hours-table__closed td { color: var(--text-muted); }

.contact__ig-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(131,58,180,0.08), rgba(193,53,132,0.08), rgba(253,162,29,0.08));
  border: 1px solid rgba(193,53,132,0.2);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}

.contact__ig-banner:hover {
  background: linear-gradient(135deg, rgba(131,58,180,0.14), rgba(193,53,132,0.14), rgba(253,162,29,0.12));
  border-color: rgba(193,53,132,0.4);
  transform: translateY(-2px);
}

.contact__ig-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #833ab4, #c13584, #fd9d29);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact__ig-icon svg { width: 22px; height: 22px; }

.contact__ig-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.contact__ig-handle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.contact__ig-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.contact__ig-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.contact__ig-banner:hover .contact__ig-arrow {
  transform: translateX(3px);
  color: #c13584;
}

.contact__phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.contact__phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text);
  transition: color 0.2s;
}
.contact__phone-link:hover { color: var(--accent); }

.contact__phone-name {
  font-weight: 600;
  color: var(--dark);
  min-width: 64px;
}

.contact__phone-num {
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.contact__map-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.contact__map {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 280px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(184,144,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.map-pin {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,144,74,0.35);
}

.map-pin svg { width: 28px; height: 28px; }

.map-label {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.map-address {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding-block: 2rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__nav a:hover { color: rgba(255,255,255,0.8); }

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__instagram:hover { color: #e1a1c9 !important; }

/* ─── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.team__card:nth-child(2) { transition-delay: 0.1s; }
.service:nth-child(2)    { transition-delay: 0.05s; }
.service:nth-child(3)    { transition-delay: 0.1s; }
.service:nth-child(4)    { transition-delay: 0.15s; }
.service:nth-child(5)    { transition-delay: 0.2s; }
.service:nth-child(6)    { transition-delay: 0.25s; }
.pricing__card:nth-child(2) { transition-delay: 0.1s; }
.pricing__card:nth-child(3) { transition-delay: 0.2s; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(249, 247, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(26,21,18,0.1);
  }

  .nav__menu.open { display: flex; }

  .nav__link {
    color: var(--text-muted) !important;
    padding: 0.875rem 1rem !important;
    border-radius: var(--radius) !important;
    width: 100%;
    display: block;
    background: none !important;
  }
  .nav__link:hover { color: var(--dark) !important; background: var(--bg-alt) !important; }

  .nav__link--cta {
    margin-top: 0.5rem;
    text-align: center;
    background: var(--accent) !important;
    color: var(--white) !important;
  }

  .nav__toggle { display: flex; }

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

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

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

  .team__body {
    align-items: center;
    width: 100%;
  }

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

  .contact__map-wrap {
    position: static;
  }

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

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: 0.1em; }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .loyalty {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
