/* ═══════════════════════════════════════════════
   Nail Salon — Elegant, Feminine, Gallery-Forward
   Design DNA: Ritual Nail Bar SF + Hand & Stone splits
   ═══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --primary: #c0616a;
  --bg: #f5e6e0;
  --bg-rose: #f9efec;
  --surface: #ffffff;
  --text: #2d1f20;
  --text-muted: #7a6263;
  --border: #e8d0cc;
  --accent: #c0616a;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --nav-height: 72px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow-soft: 0 2px 20px rgba(45, 31, 32, 0.06);
  --shadow-card: 0 4px 24px rgba(45, 31, 32, 0.08);
  --transition: 0.3s ease;

  /* Booking widget alias (widget uses --color-* prefix) */
  --color-primary: var(--primary);
  --color-text: var(--text);
  --color-text-muted: var(--text-muted);
  --color-border: var(--border);
  --color-surface: var(--bg-rose);
  --color-white: #ffffff;
}

/* ── Global ── */
html {
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ── Section Title ── */
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

/* ── Eyebrow Label ── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}

.eyebrow--center {
  text-align: center;
}

/* ── Section CTA Button ── */
.section-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  padding: 12px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.section-cta:hover {
  background: #a8525a;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 12px rgba(45, 31, 32, 0.08);
  backdrop-filter: blur(12px);
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: color var(--transition);
}

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

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

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

.nav--scrolled .nav__links a {
  color: var(--text-muted);
}

.nav__links a:hover {
  color: #fff;
}

.nav--scrolled .nav__links a:hover {
  color: var(--primary);
}

.nav__cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover {
  background: #a8525a !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.nav--scrolled .nav__hamburger span {
  background: var(--text);
}

.nav__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 31, 32, 0.75) 0%,
    rgba(45, 31, 32, 0.3) 40%,
    rgba(45, 31, 32, 0.05) 70%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
  padding-top: 120px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 14px 36px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO — Masonry Grid
   ═══════════════════════════════════════════════ */
.portfolio {
  background: var(--surface);
}

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

.portfolio__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.portfolio__item--tall {
  grid-row: span 2;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity var(--transition);
}

.portfolio__item:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

/* ═══════════════════════════════════════════════
   SPLIT SECTION — shared layout for merged sections
   ═══════════════════════════════════════════════ */
.split-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.split-section__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}

.split-section__left,
.split-section__right {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 80px 48px;
}

.split-section__content {
  width: 100%;
  max-width: 580px;
}

/* Left side aligns content to the right edge */
.split-section__left {
  justify-content: flex-end;
}

/* Right side aligns content to the left edge */
.split-section__right {
  justify-content: flex-start;
}

/* ── Angled background — diagonal divider ── */
.angled-bg {
  background: var(--bg-rose);
}

.angled-bg::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  width: 120px;
  background: var(--bg-rose);
  transform: skewX(-3deg);
  z-index: 0;
}

.angled-bg > .split-section__content {
  position: relative;
  z-index: 1;
}
/* ═══════════════════════════════════════════════
   GALLERY + HOURS split
   ═══════════════════════════════════════════════ */
.split-section--gallery-hours .split-section__inner {
  grid-template-columns: 1fr 1fr;
  min-height: auto;
}

.split-section__left--gallery {
  padding: 0;
  overflow: hidden;
}

.gallery-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Hours Block (with background image) ── */
.hours-block {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1519014816548-bf5fe059798b?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
}

.hours-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 31, 32, 0.82);
}

.hours-block__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
}

.hours-block .eyebrow {
  color: var(--primary);
  margin-bottom: 8px;
}

.hours-block__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hours-block__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hours-block__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-block__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-block__day {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hours-block__time {
  color: rgba(255, 255, 255, 0.6);
}

.hours-block__closed {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   SERVICES — Visual Cards
   ═══════════════════════════════════════════════ */
.services-section {
  background: var(--surface);
}

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

.services-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.services-card:hover {
  transform: translateY(-4px);
}

.services-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 31, 32, 0.85) 0%,
    rgba(45, 31, 32, 0.2) 50%,
    transparent 100%
  );
}

.services-card__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}

.services-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.services-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.5;
}

.services-card__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.services-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 40px;
}

/* ── Booking-only section ── */
.split-section--booking-only {
  background: var(--bg-rose);
  padding: 80px 0;
  text-align: center;
}

/* ── Mobile: gallery+hours and services cards ── */
@media (max-width: 768px) {
  .split-section--gallery-hours .split-section__inner {
    grid-template-columns: 1fr;
  }

  .gallery-hero-img {
    height: 240px;
  }

  .hours-block {
    padding: 36px 20px;
  }

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

@media (max-width: 480px) {
  .services-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-card {
    aspect-ratio: 16 / 9;
  }
}
/* ═══════════════════════════════════════════════
   SERVICES + BOOKING split
   ═══════════════════════════════════════════════ */
.split-section--services-booking {
  background: var(--surface);
}

.split-section__left--services {
  background: var(--surface);
  padding-right: 64px;
}

.split-section__right--booking {
  padding-left: 64px;
}

.split-booking__cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

/* ── Services Table (inside split) ── */
.services__table {
  width: 100%;
  border-collapse: collapse;
}

.services__table tr {
  border-bottom: 1px solid var(--border);
}

.services__table tr:last-child {
  border-bottom: none;
}

.services__table td {
  padding: 20px 0;
  vertical-align: middle;
}

.services__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  padding-right: 24px !important;
}

.services__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-right: 24px !important;
}

.services__price {
  font-weight: 600;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   ABOUT + STAFF split
   ═══════════════════════════════════════════════ */
.split-section--about-staff {
  background: var(--bg);
}

.split-section--about-staff .split-section__inner {
  grid-template-columns: 45% 55%;
}

.split-section__left--about {
  background: var(--bg);
  padding-right: 48px;
}

.split-section__right--staff {
  background: var(--surface);
  padding-left: 64px;
}

/* Straight divider on the staff (right) side */
.split-section__right--staff::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--border);
  z-index: 0;
}

.split-section__right--staff > .split-section__content {
  position: relative;
  z-index: 1;
}

/* ── About content inside split ── */
.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about__benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.about__benefit-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.about__benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   STAFF — Standalone card grid
   ═══════════════════════════════════════════════ */
.staff-section {
  background: var(--surface);
}

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

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

.staff-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.staff-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.staff-card__role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.staff-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   ABOUT — Standalone with photos
   ═══════════════════════════════════════════════ */
.about-section {
  background: var(--bg);
}

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

.about-layout__img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ═══════════════════════════════════════════════
   STAFF LIST — horizontal card layout
   ═══════════════════════════════════════════════ */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.staff-list__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.staff-list__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-soft);
}

.staff-list__info {
  flex: 1;
  min-width: 0;
}

.staff-list__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.staff-list__role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.staff-list__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.staff-list__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.staff-list__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: var(--bg);
}

/* ═══════════════════════════════════════════════
   REVIEWS — Cards
   ═══════════════════════════════════════════════ */
.reviews {
  background: var(--bg);
}

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

.reviews__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

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

.reviews__star {
  color: var(--primary);
  font-size: 1rem;
}

.reviews__quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.reviews__author {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   FAQ (colors only — structure from base.css)
   ═══════════════════════════════════════════════ */
.faq {
  background: var(--surface);
}

.faq-question {
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: #2d1f20;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer__address a {
  text-decoration: none;
  transition: color var(--transition);
}

.footer__address a:hover {
  color: var(--primary);
}

.footer__hours {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer__social-links {
  display: flex;
  gap: 16px;
}

.footer__social-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition), transform var(--transition);
}

.footer__social-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer__map {
  min-height: 200px;
}

.footer__map iframe {
  border-radius: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .portfolio__grid {
    grid-auto-rows: 180px;
  }

  .split-section__left,
  .split-section__right {
    padding: 60px 32px;
  }

  .split-section__left--services {
    padding-right: 40px;
  }

  .split-section__right--booking {
    padding-left: 40px;
  }

  .split-section__left--about {
    padding-right: 32px;
  }

  .split-section__right--staff {
    padding-left: 40px;
  }

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

/* ── Mobile ── */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Nav mobile */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: rgba(45, 31, 32, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav__links--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links--open a {
    color: #fff !important;
    font-size: 1.1rem;
  }

  .nav__hamburger--open span {
    background: #fff !important;
  }

  /* Hero mobile */
  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .hero__content {
    padding-bottom: 48px;
  }

  /* Portfolio mobile */
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }

  .portfolio__item--tall {
    grid-row: span 2;
  }

  /* Split sections stack on mobile */
  .split-section__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-section--about-staff .split-section__inner {
    grid-template-columns: 1fr;
  }

  .split-section__left,
  .split-section__right {
    padding: 48px 20px;
    justify-content: center;
  }

  .split-section__left--services {
    padding-right: 20px;
  }

  .split-section__right--booking {
    padding-left: 20px;
  }

  .split-section__left--about {
    padding-right: 20px;
  }

  .split-section__right--staff {
    padding-left: 20px;
  }

  .split-section__content {
    max-width: 100%;
  }

  /* Hide angled pseudo-elements on mobile */
  .angled-bg::before,
  .split-section__right--staff::before {
    display: none;
  }

  /* About image overlap reset on mobile */
  .about__image-wrap {
    margin-right: 0;
  }

  /* Services mobile */
  .services__table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .services__table td {
    padding: 0;
  }

  .services__name {
    width: 100%;
    margin-bottom: 4px;
  }

  .services__desc {
    flex: 1;
  }

  .services__price {
    flex-shrink: 0;
  }

  /* Staff list mobile — cards still horizontal but tighter */
  .staff-list__card {
    gap: 16px;
  }

  .staff-list__photo {
    width: 64px;
    height: 64px;
  }

  /* Reviews mobile */
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews__card {
    padding: 28px 24px;
  }

  /* Staff grid mobile */
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 360px;
    margin: 0 auto;
  }

  /* About layout mobile */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .portfolio__grid {
    grid-auto-rows: 130px;
  }

  .section__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  .split-section__left,
  .split-section__right {
    padding: 36px 16px;
  }

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

  .staff-list__creds {
    justify-content: center;
  }
}
