

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --charcoal: #1C1C1A;
    --charcoal-mid: #2E2E2B;
    --warm-white: #F7F5F1;
    --cream: #EDE9E1;
    --gold: #B8965A;
    --gold-light: #D4B07A;
    --gold-pale: #F0E6D3;
    --slate: #4A4845;
    --slate-light: #7A7672;
    --text-muted: #9A9591;
    --border: rgba(184, 150, 90, 0.2);
    --border-light: rgba(28, 28, 26, 0.08);
  }

  html { scroll-behavior: smooth; }

  html {
    min-height: 100%;
    overscroll-behavior: none;
    background: #2E2E2B;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overscroll-behavior-y: none;
  }

  /* Push footer to bottom and prevent white space below */
  footer {
    margin-top: auto;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 4rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
  }

  nav.scrolled {
    background: rgba(247, 245, 241, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-light);
  }

  .nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
    overflow: visible;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--warm-white);
    transition: color 0.5s ease;
    line-height: 1;
    white-space: nowrap;
  }

  nav.scrolled .nav-logo-main { color: var(--charcoal); }
  nav.scrolled .nav-logo-sub { color: var(--gold); }

  .nav-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: color 0.5s ease;
    white-space: nowrap;
  }

  nav.scrolled .nav-logo-sub { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin-left: 3rem;
    margin-right: auto;
  }

  .nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(247, 245, 241, 0.8);
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a:hover { color: rgba(247, 245, 241, 1); }

  nav.scrolled .nav-links a { color: var(--slate); }
  nav.scrolled .nav-links a:hover { color: var(--charcoal); }

  .nav-cta {
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border: 1px solid rgba(184, 150, 90, 0.6);
    color: var(--gold-light) !important;
    transition: all 0.3s ease !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    border-color: var(--gold) !important;
  }

  .nav-cta::after { display: none !important; }

  nav.scrolled .nav-cta { color: var(--gold) !important; }
  nav.scrolled .nav-cta:hover { color: var(--charcoal) !important; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg {
    position: absolute;
    inset: -8%;
    background:
      linear-gradient(160deg, rgba(28,28,26,0.65) 0%, rgba(28,28,26,0.32) 50%, rgba(28,28,26,0.6) 100%),
      url('../images/hero-kitchen.jpg') center/cover no-repeat;
    transform-origin: center center;
    will-change: transform;
    animation: kenBurns 22s ease-in-out infinite alternate;
  }

  @keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0%, 0%); }
    33%  { transform: scale(1.06) translate(-1.2%, -0.4%); }
    66%  { transform: scale(1.09) translate(0.8%, 0.7%); }
    100% { transform: scale(1.04) translate(-0.5%, 1.2%); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.1s ease 0.5s forwards;
  }

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

  .hero-subline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(247, 245, 241, 0.75);
    max-width: 580px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 1.1s ease 0.75s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 1s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    background: var(--gold);
    color: var(--charcoal);
    transition: all 0.35s ease;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border: 1px solid rgba(247, 245, 241, 0.3);
    color: rgba(247, 245, 241, 0.85);
    transition: all 0.35s ease;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
  }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
    z-index: 2;
  }

  .hero-scroll-indicator span {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(247, 245, 241, 0.45);
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ─── MARQUEE ─── */
  .marquee-strip {
    background: var(--charcoal);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-light);
    flex-shrink: 0;
  }

  .marquee-dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── INTRO SECTION ─── */
  .intro {
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
  }

  .intro-left {}

  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

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

  .section-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .section-headline em { font-style: italic; color: var(--gold); }

  .section-body {
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--slate);
    margin-bottom: 2rem;
  }

  .intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .stat-item {
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .intro-right {
    position: relative;
  }

  .intro-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
  }

  .intro-img-accent {
    position: absolute;
    bottom: -2rem;
    left: -2.5rem;
    width: 55%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 6px solid var(--warm-white);
  }

  .intro-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 90px;
    height: 90px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .intro-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1;
  }

  .intro-badge-txt {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.75;
  }

  /* ─── COLLECTIONS GRID ─── */
  .collections {
    background: var(--charcoal);
    padding: 7rem 4rem;
  }

  .collections-header {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .collections-header .section-eyebrow { color: var(--gold); }
  .collections-header .section-eyebrow::before { background: var(--gold); }
  .collections-header .section-headline { color: var(--warm-white); margin-bottom: 0; }

  .view-all-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    padding-bottom: 0.25rem;
  }

  .view-all-link:hover { gap: 0.9rem; }

  .collections-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 340px 340px;
    gap: 1.5px;
  }

  .collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
  }

  .collection-card.large { grid-row: 1 / 3; }

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

  .collection-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.65);
  }

  .collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,28,26,0.8) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
  }

  .collection-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .collection-card.large .collection-title { font-size: 2.2rem; }

  .collection-cta {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
  }

  .collection-card:hover .collection-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── PROCESS TEASER ─── */
  .process {
    padding: 8rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: var(--border);
  }

  .process-step {
    text-align: center;
    padding: 0 1.5rem;
  }

  .step-circle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--warm-white);
    position: relative;
    z-index: 1;
  }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold);
  }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
  }

  .step-desc {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--slate-light);
  }

  .process-

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    transition: all 0.35s ease;
  }

  .btn-outline:hover {
    background: var(--charcoal);
    color: var(--warm-white);
  }

  /* ─── TESTIMONIAL ─── */
  .testimonial-section {
    background: var(--cream);
    padding: 7rem 4rem;
  }

  .testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
    display: block;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
  }

  .testimonial-author {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-light);
  }

  .testimonial-author strong {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
  }

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
  }

  .t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
  }
  .t-dot.active { background: var(--gold); transform: scale(1.3); }

  /* ─── MATERIALS / CRAFTSMANSHIP ─── */
  .craftsmanship {
    padding: 8rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
  }

  .craft-image-stack {
    position: relative;
    height: 550px;
  }

  .craft-img-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
  }

  .craft-img-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58%;
    height: 58%;
    object-fit: cover;
    border: 6px solid var(--warm-white);
  }

  .craft-accent-line {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
  }

  .material-tag {
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border);
    color: var(--slate);
    transition: all 0.3s ease;
  }

  .material-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(28,28,26,0.75), rgba(28,28,26,0.75)),
      url('../images/kitchen-open-luxury.jpg') center/cover no-repeat;
  }

  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 2rem;
  }

  .cta-content .section-eyebrow { justify-content: center; color: var(--gold); }
  .cta-content .section-eyebrow::before { background: var(--gold); }

  .cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
  }

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

  .cta-body {
    font-size: 0.97rem;
    color: rgba(247, 245, 241, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal-mid);
    padding: 2.5rem 4rem 2rem;
    margin: 0;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand {}

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--warm-white);
    margin-bottom: 0.35rem;
  }

  .footer-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(154, 149, 145, 0.9);
    line-height: 1.7;
    max-width: 260px;
  }

  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: 1.25rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .footer-links a {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--slate-light);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
  }

  .footer-fine {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.4; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.22s; }
  .reveal-delay-3 { transition-delay: 0.36s; }
  .reveal-delay-4 { transition-delay: 0.5s; }

  @media (prefers-reduced-motion: reduce) {
    *, .hero-content *, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
    .marquee-track { animation-play-state: paused; }
  }

  @media (max-width: 1100px) {
    nav { padding: 0 1.5rem; }
    .intro, .craftsmanship { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .collections { padding: 4rem 1.5rem; }
    .collections-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .collection-card.large { grid-row: auto; }
    .collections-grid .collection-card { height: 280px; }
    .process { padding: 4rem 1.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .testimonial-section { padding: 4rem 1.5rem; }
    .cta-banner { height: 420px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .intro-img-accent, .intro-badge { display: none; }
    .craft-image-stack { height: 350px; }
  }

  /* ─── MOBILE NAV ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 200;
  }

  .nav-hamburger span {
    display: block;
    height: 1.5px;
    background: var(--warm-white);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
  }

  nav.scrolled .nav-hamburger span { background: var(--charcoal); }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .mobile-menu-overlay.open {
    display: flex;
    opacity: 1;
  }

  .mobile-menu-overlay .mobile-logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .mobile-menu-overlay .mobile-logo-text { color: var(--warm-white); }
  .mobile-menu-overlay .mobile-logo-text strong { display: block; font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.06em; }
  .mobile-menu-overlay .mobile-logo-text span { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

  .mobile-menu-overlay ul {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
  }

  .mobile-menu-overlay ul li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mobile-menu-overlay.open ul li { opacity: 1; transform: translateY(0); }
  .mobile-menu-overlay.open ul li:nth-child(1) { transition-delay: 0.05s; }
  .mobile-menu-overlay.open ul li:nth-child(2) { transition-delay: 0.1s; }
  .mobile-menu-overlay.open ul li:nth-child(3) { transition-delay: 0.15s; }
  .mobile-menu-overlay.open ul li:nth-child(4) { transition-delay: 0.2s; }
  .mobile-menu-overlay.open ul li:nth-child(5) { transition-delay: 0.25s; }
  .mobile-menu-overlay.open ul li:nth-child(6) { transition-delay: 0.3s; }
  .mobile-menu-overlay.open ul li:nth-child(7) { transition-delay: 0.35s; }

  .mobile-menu-overlay ul li a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: rgba(247,245,241,0.75);
    transition: color 0.2s ease;
    font-family: "Playfair Display", serif;
  }

  .mobile-menu-overlay ul li a:hover { color: var(--gold); }

  .mobile-menu-overlay .mobile-cta {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
  }

  .mobile-menu-overlay.open .mobile-cta { opacity: 1; transform: translateY(0); }

  @media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    nav { padding: 0 1.5rem; }
    .nav-hamburger span { background: var(--warm-white); }
    nav.scrolled .nav-hamburger span { background: var(--charcoal); }
  }

  @media (min-width: 1101px) {
    .mobile-menu-overlay { display: none !important; }
  }

  .nav-logo-img { 
    transition: filter 0.5s ease;
    filter: brightness(0) invert(1);
  }
  nav.scrolled .nav-logo-img { 
    filter: brightness(0);
  }


  /* ─── SUBPAGE SHARED ─── */
  .page-hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(28,28,26,0.55) 0%, rgba(28,28,26,0.3) 50%, rgba(28,28,26,0.7) 100%);
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .page-hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }

  .page-hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--warm-white);
    letter-spacing: -0.01em;
  }

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

  .page-intro {
    padding: 6rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 7rem;
    align-items: start;
  }

  .page-intro-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
  }

  .page-intro-left h2 em { font-style: italic; color: var(--gold); }

  .page-intro-right p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--slate);
    margin-bottom: 1.5rem;
  }

  /* Gallery Grid */
  .gallery-section {
    padding: 2rem 4rem 7rem;
  }

  .gallery-section-header {
    max-width: 1300px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
  }

  .gallery-grid .gallery-item {
    aspect-ratio: 4/3;
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

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

  .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
    cursor: pointer;
  }

  /* wide/tall variants disabled - all galleries use uniform 3x3 grid */

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.92);
  }

  .gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.82);
  }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px dashed var(--border);
    gap: 0.75rem;
    transition: background 0.3s ease;
  }

  .gallery-placeholder:hover { background: var(--gold-pale); }

  .gallery-placeholder-icon {
    width: 40px;
    height: 40px;
    opacity: 0.3;
  }

  .gallery-placeholder-text {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    padding: 0 1rem;
  }

  /* Feature blocks */
  .feature-strip {
    background: var(--charcoal);
    padding: 6rem 4rem;
  }

  .feature-strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .feature-card {
    padding: 2.5rem;
    border: 1px solid rgba(184,150,90,0.15);
    transition: border-color 0.3s ease;
  }

  .feature-card:hover { border-color: rgba(184,150,90,0.4); }

  .feature-icon {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
  }

  .feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--warm-white);
    margin-bottom: 0.75rem;
  }

  .feature-card p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--slate-light);
  }

  /* CTA strip */
  .page-cta {
    padding: 7rem 4rem;
    text-align: center;
    background: var(--cream);
  }

  .page-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .page-cta h2 em { font-style: italic; color: var(--gold); }

  .page-cta p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
  }

  /* Process page specific */
  .process-timeline {
    padding: 6rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
  }

  .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 56px;
    bottom: -1rem;
    width: 1px;
    background: var(--border);
  }

  .timeline-num {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .timeline-num span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
  }

  .timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    padding-top: 0.6rem;
  }

  .timeline-content p {
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--slate);
    margin-bottom: 1rem;
  }

  .timeline-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .timeline-tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border);
    color: var(--slate-light);
  }

  /* About page */
  .values-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    box-sizing: border-box;
    width: 100%;
  }

  .value-item {
    padding: 2.5rem;
    background: var(--warm-white);
    border-bottom: 2px solid var(--gold);
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
  }

  .value-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
  }

  .value-item p {
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--slate);
  }

  /* Team section */
  .team-section {
    background: var(--charcoal);
    padding: 6rem 4rem;
  }

  .team-grid {
    max-width: 1300px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

  .team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--charcoal-mid);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(184,150,90,0.2);
  }

  .team-photo-placeholder {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-light);
    opacity: 0.5;
  }

  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--warm-white);
    margin-bottom: 0.35rem;
  }

  .team-role {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* Contact page */
  .contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 7rem;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2rem;
  }

  .contact-detail {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
  }

  .contact-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .contact-detail-value {
    font-size: 1rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
  }

  .contact-detail-value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s ease;
  }

  .contact-detail-value a:hover { border-color: var(--gold); }

  /* Form */
  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.5rem;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1px solid var(--border-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
  }

  .form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
  }

  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9591' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

  .form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--gold);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
  }

  .form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* Legal pages */
  .legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 6rem 4rem;
  }

  .legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 3rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
  }

  .legal-content h2:first-of-type { border-top: none; margin-top: 0; }

  .legal-content p {
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--slate);
    margin-bottom: 1rem;
  }

  .legal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
  }

  .legal-content ul li {
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--slate);
    margin-bottom: 0.4rem;
  }

  .legal-updated {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
  }

  /* Responsive subpage */
  @media (max-width: 1100px) {
    .page-hero-content { padding: 0 1.5rem; }
    .page-intro { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
    .gallery-section { padding: 2rem 1.5rem 4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.two-col { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
    .feature-strip { padding: 4rem 1.5rem; }
    .feature-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-timeline { padding: 4rem 1.5rem; }
    .values-grid {
      grid-template-columns: 1fr !important;
      padding: 2.5rem 1.5rem !important;
      gap: 1.25rem !important;
      width: 100% !important;
    }
    .team-section { padding: 4rem 1.5rem; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .legal-content { padding: 4rem 1.5rem; }
    .page-cta { padding: 4rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
  }


  /* ─── COMPREHENSIVE MOBILE OVERRIDES ─── */

  /* ── 768px tablet/mobile ── */
  @media (max-width: 768px) {

    /* ── Footer ── */
    footer {
      padding: 2rem 1.5rem 2rem !important;
    }
    .footer-top {
      grid-template-columns: 1fr 1fr !important;
      gap: 1.5rem !important;
      padding-bottom: 1.5rem !important;
      margin-bottom: 1rem !important;
    }
    .footer-bottom {
      flex-direction: column !important;
      gap: 0.5rem !important;
      align-items: flex-start !important;
    }

    /* ── Contact layout (class-based) ── */
    .mobile-contact-layout {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      padding: 2.5rem 1.5rem !important;
    }

    /* ── Section padding overrides ── */
    section[style*="padding:6rem 4rem"],
    section[style*="padding:5rem 4rem"],
    section[style*="padding:7rem 4rem"],
    section[style*="padding:8rem 4rem"] {
      padding: 2.5rem 1.5rem !important;
    }

    /* ── Inner max-width containers ── */
    div[style*="max-width:1300px"],
    div[style*="max-width: 1300px"] {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    /* ── All 2-col grids → 1 col (class-based, Safari safe) ── */
    .mobile-2col {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
    }

    /* ── Values cards grid (about us) ── */
    .values-cards-grid {
      grid-template-columns: 1fr !important;
      gap: 1.25rem !important;
      width: 100% !important;
    }
    .values-cards-grid > div {
      min-width: 0 !important;
      box-sizing: border-box !important;
      width: 100% !important;
      padding: 1.75rem !important;
    }

    /* ── Repeat grids → 1 col (class-based, Safari safe) ── */
    .mobile-2col,
    .mobile-3col {
      grid-template-columns: 1fr !important;
      gap: 1.25rem !important;
    }

    /* ── 4-col grids → 2 col ── */
    .mobile-4col {
      grid-template-columns: 1fr 1fr !important;
      gap: 0 !important;
    }

    /* ── Gallery ── */
    .gallery-grid {
      grid-template-columns: 1fr !important;
    }
    .gallery-grid .gallery-item {
      aspect-ratio: 4/3 !important;
    }

    /* ── Collections grid ── */
    .collections-grid {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto !important;
    }
    .collection-card.large { grid-row: auto !important; }
    .collections-grid .collection-card { height: 260px; }

    /* ── Homepage ── */
    .intro { padding: 3rem 1.5rem !important; gap: 2rem !important; }
    .intro-img-accent { display: none !important; }
    .intro-badge { display: none !important; }
    .intro-stats { grid-template-columns: 1fr 1fr !important; }
    .craftsmanship { padding: 3rem 1.5rem !important; gap: 2rem !important; }
    .craft-image-stack { height: 280px !important; }
    .craft-img-front { display: none !important; }
    .craft-accent-line { display: none !important; }
    .marquee-strip { display: none; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
    .hero-actions { flex-direction: column !important; align-items: center !important; }
    .process-steps { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
    .process-steps::before { display: none !important; }

    /* ── Page hero ── */
    .page-hero { height: 45vh; min-height: 320px; }
    .page-hero-content { padding: 0 1.5rem !important; }
    .page-hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; }

    /* ── Page CTA ── */
    .page-cta { padding: 3rem 1.5rem !important; }

    /* ── Feature strip ── */
    .feature-strip { padding: 3rem 1.5rem !important; }
    .feature-strip-inner { grid-template-columns: 1fr !important; gap: 1rem !important; }

    /* ── Gallery section ── */
    .gallery-section { padding: 2rem 1.5rem 3rem !important; }
    .gallery-section-header { margin-bottom: 2rem !important; }

    /* ── Process timeline ── */
    .process-timeline { padding: 3rem 1.5rem !important; }
    .timeline-item { grid-template-columns: 48px 1fr !important; gap: 1.25rem !important; }
    .timeline-item::after { left: 23px !important; }

    /* ── Values grid (CSS class version) ── */
    .values-grid {
      grid-template-columns: 1fr !important;
      padding: 2.5rem 1.5rem !important;
      gap: 1.25rem !important;
      width: 100% !important;
    }
    .value-item {
      min-width: 0 !important;
      box-sizing: border-box !important;
      width: 100% !important;
    }

    /* ── Team section ── */
    .team-section { padding: 3rem 1.5rem !important; }

    /* ── About workshop grid ── */
    .about-workshop-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      padding: 0 !important;
    }

    /* ── Contact ── */
    .contact-layout { grid-template-columns: 1fr !important; gap: 2rem !important; padding: 3rem 1.5rem !important; }
    .form-row { grid-template-columns: 1fr !important; }

    /* ── Legal ── */
    .legal-content { padding: 3rem 1.5rem !important; }

    /* ── Buttons ── */
    .btn-primary, .btn-ghost {
      width: 100%;
      max-width: 320px;
      justify-content: center;
    }
    /* btn-outline: keep natural inline-flex, never force width */
    .btn-outline {
      display: inline-flex !important;
      width: auto !important;
      max-width: none !important;
    }

    /* ── Testimonial ── */
    .testimonial-section { padding: 3rem 1.5rem !important; }
    .testimonial-text { font-size: 1.2rem !important; }
  }

  /* ── 480px mobile only ── */
  @media (max-width: 480px) {
    footer { padding: 1.75rem 1rem 1.5rem !important; }
    .footer-top { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .process-steps { grid-template-columns: 1fr !important; }
    .values-grid { padding: 2rem 1rem !important; }
    .values-cards-grid { gap: 1rem !important; }
    .values-cards-grid > div { padding: 1.5rem !important; }
    .page-hero-title { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
    div[style*="grid-template-columns:repeat(4,1fr)"],
    div[style*="grid-template-columns: repeat(4,1fr)"] {
      grid-template-columns: 1fr 1fr !important;
    }
    .intro-stats { grid-template-columns: 1fr 1fr !important; }
  }

/* ─── ABOUT US MOBILE ─── */
  @media (max-width: 768px) {
    .about-workshop-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      padding: 0 1.5rem !important;
    }
    .about-team-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
    }
    /* Values grid cards - prevent overflow */
    .values-grid .value-item {
      min-width: 0 !important;
      word-wrap: break-word !important;
    }
    /* About page intro text section */
    .about-workshop-grid img {
      aspect-ratio: 4/3 !important;
      width: 100% !important;
    }
  }

  /* ─── PAPERFORM EMBED ─── */
  .paperform-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* Force all Paperform injected content to stay within bounds */
  .paperform-wrapper *,
  .paperform-wrapper iframe,
  .paperform-wrapper form,
  .paperform-wrapper input,
  .paperform-wrapper select,
  .paperform-wrapper textarea,
  .paperform-wrapper div {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Paperform injects a div with data-paperform-id — constrain it */
  [data-paperform-id] {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  @media (max-width: 768px) {
    .paperform-wrapper {
      width: 100% !important;
      max-width: 100vw !important;
      overflow-x: hidden !important;
    }
    /* Constrain Paperform's injected iframe */
    .paperform-wrapper iframe {
      width: 100% !important;
      max-width: 100% !important;
      min-width: unset !important;
    }
  }
