/* ============================================================
   ArtLux – index.css
   Global Design System + Homepage + Shared Heroes
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */

   :root {
    --bg: #f7f5f0;
    --surface: #ffffff;
    --surface-soft: #fbf8f1;
    --text: #1a1918;
    --muted: #6a6866;
    --primary: #111110;
  
    --gold-300: #e8d8a0;
    --gold-500: #c9a33a;
    --gold-600: #a88a2a;
    --gold-700: #8a7022;
    --gold-light: rgba(201, 163, 58, 0.1);
  
    --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.14);
  
    --radius: 12px;
    --radius-lg: 22px;
    --brd: 1px solid rgba(0, 0, 0, 0.07);
    --brd-gold: 1px solid rgba(201, 163, 58, 0.22);
  
    --s-1: 0.25rem;
    --s-2: 0.5rem;
    --s-3: 0.75rem;
    --s-4: 1rem;
    --s-5: 1.25rem;
    --s-6: 1.5rem;
    --s-8: 2rem;
    --s-10: 2.5rem;
    --s-12: 3rem;
    --s-16: 4rem;
    --s-20: 5rem;
    --s-24: 6rem;
  
    --ff-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ff-serif: "Playfair Display", Georgia, serif;
  
    --fs-hero: clamp(3.2rem, 7vw, 7.8rem);
    --fs-h2: clamp(2rem, 3.2vw, 3rem);
    --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
    --fs-lead: clamp(1rem, 1.5vw, 1.15rem);
    --fs-body: 1rem;
  
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition: all 0.34s var(--ease);
  }
  
  /* ============================================================
     BASE
     ============================================================ */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
  }
  
  body {
    font-family: var(--ff-sans);
    font-size: var(--fs-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }
  
  button,
  input,
  textarea,
  select {
    font: inherit;
  }
  
  .container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 4vw, 3rem);
  }
  
  ::selection {
    background: var(--gold-500);
    color: #fff;
  }
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  
  .btn,
  .al-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 0.86rem 2rem;
    border-radius: 999px;
    font-weight: 750;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
  }
  
  .btn:focus-visible,
  .al-btn:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 3px;
  }
  
  .btn--primary,
  .al-btn--light {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: #111110;
    border-color: rgba(201, 163, 58, 0.4);
    box-shadow: 0 10px 26px rgba(201, 163, 58, 0.24);
  }
  
  .btn--primary:hover,
  .al-btn--light:hover {
    background: linear-gradient(135deg, #efd98f, #c9a33a);
    color: #111110;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(201, 163, 58, 0.32);
  }
  
  .btn--outline,
  .al-btn--ghost {
    background: transparent;
    color: var(--gold-700);
    border-color: rgba(201, 163, 58, 0.55);
  }
  
  .btn--outline:hover svg,
  .al-btn--ghost:hover svg {
    transform: translateX(4px);
  }

  .btn--outline:hover,
  .al-btn--ghost:hover {
    background: var(--gold-500);
    color: #fff;
    border-color: var(--gold-500);
    transform: translateY(-2px);
  }
  
  .btn--hero-light {
    background: #fff;
    color: #0f0d0a;
    border-color: #fff;
  }
  
  .btn--hero-light:hover {
    background: var(--gold-500);
    color: #fff;
    border-color: var(--gold-500);
    transform: translateY(-2px);
  }
  
  .btn--hero-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.28);
  }
  
  .btn--hero-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
  }
  
  /* ============================================================
     SHARED INNER PAGE HERO
     Used by about.html, gallery.html, commission.html, contact.html
     ============================================================ */
  
  .page-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 24px 90px;
    overflow: hidden;
    color: #f7f0e6;
    background: #0f0d0b;
    isolation: isolate;
  }
  
  .page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
      linear-gradient(
        90deg,
        rgba(15, 13, 11, 0.92) 0%,
        rgba(15, 13, 11, 0.72) 42%,
        rgba(15, 13, 11, 0.45) 100%
      ),
      radial-gradient(
        circle at 22% 45%,
        rgba(200, 164, 93, 0.22),
        transparent 34%
      ),
      linear-gradient(
        135deg,
        #15100d 0%,
        #1d1712 42%,
        #0f0d0b 100%
      );
  }
  
  .page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: saturate(0.7);
  }
  
  .page-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(15, 13, 11, 0.16), rgba(15, 13, 11, 0.72)),
      linear-gradient(to right, rgba(15, 13, 11, 0.86), rgba(15, 13, 11, 0.34), rgba(15, 13, 11, 0.72));
  }
  
  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
      linear-gradient(rgba(247, 240, 230, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(247, 240, 230, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
  }
  
  .page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 520px;
    height: 520px;
    z-index: -1;
    border: 1px solid rgba(200, 164, 93, 0.22);
    border-radius: 50%;
    box-shadow:
      inset 0 0 0 28px rgba(200, 164, 93, 0.025),
      inset 0 0 0 58px rgba(200, 164, 93, 0.018);
  }
  
  .page-hero__content {
    width: min(1120px, 100%);
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .page-hero__eye {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px;
    color: #e2c982;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }
  
  .page-hero__eye::before,
  .page-hero__eye::after {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a45d);
  }
  
  .page-hero__eye::after {
    background: linear-gradient(90deg, #c8a45d, transparent);
  }
  
  .page-hero__title {
    margin: 0;
    font-family: var(--ff-serif);
    font-size: clamp(3rem, 7vw, 7.2rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.065em;
    text-wrap: balance;
    color: #fff;
  }
  
  .page-hero__title em {
    color: var(--gold-500);
    font-style: italic;
    font-weight: 900;
  }
  
  .page-hero__sub {
    max-width: 660px;
    margin: 28px auto 0;
    color: rgba(247, 240, 230, 0.76);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.85;
    font-weight: 400;
  }
  
  /* ============================================================
     HOMEPAGE HERO
     Used by index.html classes: .hero, .hero__content, etc.
     ============================================================ */
  
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px clamp(1.5rem, 5vw, 4rem) 70px;
    background:
      radial-gradient(circle at 12% 20%, rgba(201, 163, 58, 0.16), transparent 32%),
      linear-gradient(135deg, #fbf7ee 0%, #f3eadb 48%, #e7d8bd 100%);
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(17, 17, 16, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(17, 17, 16, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 18%;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    border: 1px solid rgba(201, 163, 58, 0.2);
    box-shadow:
      inset 0 0 0 28px rgba(201, 163, 58, 0.035),
      inset 0 0 0 64px rgba(201, 163, 58, 0.025);
    pointer-events: none;
  }
  
  .hero__content {
    position: relative;
    z-index: 2;
    width: min(1320px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
  }
  
  .hero__text {
    max-width: 620px;
  }
  
  .hero__eyebrow {
    color: var(--gold-700);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }
  
  .hero__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-hero);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.07em;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .hero__title em {
    color: var(--gold-600);
    font-style: italic;
  }
  
  .hero__subtitle {
    max-width: 540px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.82;
    margin-bottom: 2rem;
  }
  
  .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  /* ── Hero slideshow ── */
  .hero__slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #111;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
  }

  .hero__slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
  }

  .hero__slides {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .hero__slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

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

  /* Prev / Next arrows */
  .hero__slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s;
  }

  .hero__slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .hero__slide-btn svg {
    width: 18px;
    height: 18px;
  }

  .hero__slide-prev { left: 0.85rem; }
  .hero__slide-next { right: 0.85rem; }

  /* Dot indicators */
  .hero__slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
  }

  .hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
  }

  .hero__dot.active {
    background: #fff;
    transform: scale(1.35);
  }
  
  .hero__side-img {
    min-height: 270px;
  }
  
  /* ============================================================
     HOMEPAGE STATS
     ============================================================ */
  
  .home-stats {
    background: #111110;
    color: #fff;
  }
  
  .home-stats__inner {
    max-width: 1120px;
    margin-inline: auto;
    padding: 1.8rem clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-stat {
    flex: 1;
    text-align: center;
  }
  
  .home-stat strong {
    display: block;
    font-family: var(--ff-serif);
    color: var(--gold-500);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
    font-weight: 900;
  }
  
  .home-stat span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  
  .home-stat-div {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.11);
  }
  
  /* ============================================================
     SECTIONS
     ============================================================ */
  
  .section {
    padding-block: var(--s-20);
  }
  
  .section__header {
    text-align: center;
    margin-bottom: var(--s-12);
  }
  
  .section__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-h2);
    color: var(--primary);
    line-height: 1.12;
    letter-spacing: -0.04em;
  }
  
  .section__title::after {
    content: "";
    display: block;
    width: 44px;
    height: 2.5px;
    background: var(--gold-500);
    border-radius: 2px;
    margin: var(--s-4) auto 0;
  }
  
  .section__subtitle {
    font-size: var(--fs-lead);
    color: var(--muted);
    max-width: 620px;
    margin-inline: auto;
    margin-top: var(--s-4);
    line-height: 1.72;
  }
  
  .section__eyebrow {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: var(--s-4);
    display: block;
  }
  
  /* ============================================================
     PROCESS
     ============================================================ */
  
  .process {
    background: var(--bg);
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-6);
    list-style: none;
  }
  
  .step {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--s-10) var(--s-8);
    border: var(--brd-gold);
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
  }
  
  .step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 163, 58, 0.45);
  }
  
  .step__num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-500);
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold-600);
    margin-bottom: var(--s-6);
    flex-shrink: 0;
  }
  
  .step__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-h3);
    color: var(--primary);
    margin-bottom: var(--s-3);
    letter-spacing: -0.025em;
  }
  
  .step__text {
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.95rem;
  }
  
  .section__cta {
    margin-top: var(--s-10);
    text-align: center;
  }
  
  /* ============================================================
     FEATURED WORKS
     ============================================================ */
  
  .featured {
    background: var(--bg);
    padding-top: 0;
  }
  
  .cards {
    display: grid;
    gap: var(--s-6);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: var(--brd);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-300);
  }
  
  .card__media {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  
  .card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
  }
  
  .card:hover .card__media img {
    transform: scale(1.05);
  }
  
  .card__body {
    padding: var(--s-5) var(--s-6);
    border-top: var(--brd-gold);
    text-align: center;
    background: var(--surface);
  }
  
  .card__title {
    font-family: var(--ff-serif);
    font-weight: 900;
    font-size: 1.08rem;
    color: var(--primary);
    margin-bottom: var(--s-1);
    letter-spacing: -0.02em;
  }
  
  .card__meta {
    color: var(--muted);
    font-size: 0.83rem;
    font-style: italic;
  }
  
  /* ============================================================
     BIO / ABOUT PREVIEW
     ============================================================ */
  
  .bio {
    background: var(--surface);
  }
  
  .bio__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s-16);
    align-items: center;
  }
  
  .bio__content .section__title {
    text-align: left;
  }
  
  .bio__content .section__title::after {
    margin-left: 0;
  }
  
  .bio__content .section__subtitle {
    text-align: left;
    margin-inline: 0;
    margin-top: var(--s-4);
    margin-bottom: var(--s-6);
  }
  
  .bio__quote {
    font-family: var(--ff-serif);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    font-style: italic;
    color: var(--muted);
    border-left: 2.5px solid var(--gold-500);
    padding: var(--s-4) var(--s-6);
    margin: var(--s-6) 0 var(--s-8);
    background: var(--gold-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.75;
  }
  
  .bio__quote cite {
    display: block;
    margin-top: var(--s-3);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gold-600);
    font-family: var(--ff-sans);
  }
  
  .bio__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3 / 4;
    background: #111;
  }
  
  .bio__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* ============================================================
     TESTIMONIALS
     ============================================================ */
  
  .testimonials {
    background: var(--bg);
  }
  
  .quotes {
    display: grid;
    gap: var(--s-6);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .quote {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--s-10) var(--s-8) var(--s-8);
    box-shadow: var(--shadow-sm);
    border: var(--brd);
    border-top: 2.5px solid var(--gold-500);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
  }
  
  .quote::before {
    content: "\201C";
    font-family: var(--ff-serif);
    font-size: 8rem;
    line-height: 1;
    color: var(--gold-500);
    opacity: 0.08;
    position: absolute;
    top: -0.8rem;
    left: var(--s-4);
    pointer-events: none;
  }
  
  .quote:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .quote__text {
    font-style: italic;
    color: #3a3835;
    margin-bottom: var(--s-6);
    font-size: 1rem;
    line-height: 1.78;
    position: relative;
    z-index: 1;
  }
  
  .quote__author {
    border-top: var(--brd);
    padding-top: var(--s-4);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .quote__name {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
  }
  
  .quote__role {
    font-size: 0.82rem;
    color: var(--gold-600);
  }
  
  /* ============================================================
     STATEMENT BAND
     ============================================================ */
  
  .band {
    background:
      radial-gradient(circle at 50% 0%, rgba(201, 163, 58, 0.16), transparent 34%),
      #0d0c0a;
    padding-block: var(--s-16);
    text-align: center;
  }
  
  .band__title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: var(--s-4);
  }
  
  .band__title em {
    color: var(--gold-500);
    font-style: italic;
  }
  
  .band__sub {
    color: rgba(255, 255, 255, 0.58);
    max-width: 580px;
    margin: 0 auto var(--s-8);
    line-height: 1.72;
  }
  
  /* ============================================================
     LEGACY / GENERAL STATS
     ============================================================ */
  
  .stats {
    display: flex;
    gap: var(--s-8);
    padding: var(--s-6) 0;
    border-top: var(--brd);
    border-bottom: var(--brd);
    margin: var(--s-6) 0 var(--s-8);
  }
  
  .stat {
    text-align: center;
    position: relative;
    flex: 1;
  }
  
  .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
  }
  
  .stat__num {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--gold-600);
    font-weight: 900;
    line-height: 1;
    display: block;
  }
  
  .stat__label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: var(--s-1);
    letter-spacing: 0.3px;
  }
  
  /* ============================================================
     RESPONSIVE
     ============================================================ */

  /* ── Tablet (≤1024px) ───────────────────────────────────── */
  @media (max-width: 1024px) {
    /* Hero: stack to single column, remove full-screen lock */
    .hero {
      min-height: auto;
      padding: 100px clamp(1.5rem, 5vw, 3rem) 56px;
    }

    .hero__content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2.5rem;
    }

    .hero__text {
      max-width: 600px;
      margin-inline: auto;
    }

    .hero__subtitle {
      margin-inline: auto;
    }

    .hero__actions {
      justify-content: center;
    }

    /* Slideshow on tablet */
    .hero__slideshow {
      aspect-ratio: 4 / 3;
      border-radius: 20px;
    }

    /* Bio */
    .bio__grid {
      grid-template-columns: 1fr;
      gap: var(--s-8);
    }

    .bio__content .section__title,
    .bio__content .section__subtitle {
      text-align: center;
      margin-inline: auto;
    }

    .bio__content .section__title::after {
      margin-left: auto;
    }

    .bio__media {
      max-width: 440px;
      max-height: 360px;
      width: 100%;
      margin-inline: auto;
    }
  }

  /* ── Mobile (≤768px) ────────────────────────────────────── */
  @media (max-width: 768px) {
    /* Inner page heroes — shorter and tighter */
    .page-hero {
      min-height: 52vh;
      padding: 110px 20px 56px;
    }

    .page-hero::after {
      display: none; /* remove the giant decorative circle */
    }

    .page-hero__title {
      font-size: clamp(2.2rem, 10vw, 3.6rem);
      letter-spacing: -0.05em;
    }

    .page-hero__sub {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-top: 18px;
    }

    .page-hero__eye {
      font-size: 0.7rem;
      gap: 10px;
      margin-bottom: 14px;
    }

    .page-hero__eye::before,
    .page-hero__eye::after {
      width: 22px;
    }

    /* Homepage hero */
    .hero {
      padding: 88px 1.25rem 40px;
    }

    .hero::after {
      display: none; /* remove the giant decorative circle */
    }

    .hero__title {
      font-size: clamp(2.2rem, 9vw, 3.4rem);
      letter-spacing: -0.06em;
      margin-bottom: 1rem;
    }

    .hero__subtitle {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    /* Slideshow on mobile */
    .hero__slideshow {
      aspect-ratio: 3 / 2;
      border-radius: 16px;
    }

    .hero__slide-btn {
      width: 36px;
      height: 36px;
    }

    .hero__slide-btn svg {
      width: 16px;
      height: 16px;
    }

    /* Stats: proper 2×2 grid */
    .home-stats__inner {
      flex-wrap: wrap;
      gap: 0;
    }

    .home-stat {
      flex: 0 0 50%;
      padding: 1.4rem 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .home-stat:nth-child(odd) {
      border-right: 1px solid rgba(255, 255, 255, .07);
    }

    .home-stat-div {
      display: none;
    }

    /* Featured cards: landscape ratio so they're not towering tall */
    .card__media {
      aspect-ratio: 3 / 2;
    }

    /* Section spacing */
    .section {
      padding-block: 3.5rem;
    }

    .section__header {
      margin-bottom: 2.5rem;
    }

    .band {
      padding-block: 3rem;
    }

    .band__title {
      font-size: clamp(1.7rem, 7vw, 2.8rem);
    }

    .band__sub {
      font-size: 0.94rem;
    }
  }

  /* ── Small mobile (≤520px) ──────────────────────────────── */
  @media (max-width: 520px) {
    /* Inner page heroes */
    .page-hero {
      min-height: 46vh;
      padding: 100px 16px 48px;
    }

    .page-hero__title {
      font-size: clamp(1.9rem, 11vw, 2.8rem);
      letter-spacing: -0.045em;
    }

    .page-hero__eye {
      font-size: 0.6rem;
      letter-spacing: 0.14em;
    }

    .page-hero__eye::before,
    .page-hero__eye::after {
      width: 14px;
    }

    .page-hero__sub {
      font-size: 0.91rem;
    }

    /* Homepage hero */
    .hero {
      padding: 82px 1rem 36px;
    }

    .hero__eyebrow {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      margin-bottom: 0.75rem;
    }

    .hero__title {
      font-size: clamp(2rem, 10vw, 2.8rem);
      margin-bottom: 0.85rem;
    }

    .hero__subtitle {
      font-size: 0.9rem;
      line-height: 1.72;
      margin-bottom: 1.4rem;
    }

    /* Slideshow on small phones */
    .hero__slideshow {
      aspect-ratio: 4 / 3;
      border-radius: 14px;
    }

    .hero__slide-dots {
      bottom: 0.7rem;
      gap: 5px;
    }

    .hero__dot {
      width: 6px;
      height: 6px;
    }

    .hero__actions {
      flex-direction: column;
      align-items: stretch;
      gap: 0.6rem;
    }

    /* Stats */
    .home-stat {
      padding: 1.1rem 0.5rem;
    }

    .home-stat strong {
      font-size: clamp(1.4rem, 7vw, 1.9rem);
    }

    .home-stat span {
      font-size: 0.54rem;
      letter-spacing: 0.1em;
    }

    /* Cards: landscape, not portrait — much less tall */
    .card__media {
      aspect-ratio: 4 / 3;
    }

    .cards {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    /* Bio image: cap height on small screens */
    .bio__media {
      max-height: 260px;
      aspect-ratio: 3 / 2;
    }

    /* Steps */
    .steps {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .step {
      padding: 2rem 1.5rem;
    }

    .step__num {
      width: 48px;
      height: 48px;
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    /* Quotes */
    .quotes {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .quote {
      padding: 2rem 1.4rem 1.5rem;
    }

    /* Band */
    .section {
      padding-block: 3rem;
    }

    .section__header {
      margin-bottom: 2rem;
    }

    .band {
      padding-block: 2.5rem;
    }

    .band__title {
      font-size: clamp(1.5rem, 9vw, 2rem);
    }

    .band__sub {
      font-size: 0.9rem;
    }

    /* Bio quote */
    .bio__quote {
      font-size: 0.93rem;
      padding: 0.75rem 1rem;
      margin-bottom: 1.5rem;
    }
  }