/* ═══════════════════════════════════════════════════════════════
   MARIA MUNTER — Shared Stylesheet  (style.css)
   All pages load this file. Edit here → changes everywhere.
   ═══════════════════════════════════════════════════════════════ */

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #7A6128;
    --black: #080808;
    --dark: #111111;
    --dark2: #181818;
    --dark3: #222222;
    --border: #2C2C2C;
    --text: #E8E8E0;
    --text-muted: #888880;
    --white: #F5F4F0;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: all 0.3s;
  }
  .nav-logo img { height: 38px; opacity: 0.92; }
  .nav-logo { text-decoration: none; }
  .nav-links { display: flex; gap: 2.2rem; align-items: center; }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .lang-toggle {
    display: flex; gap: 0;
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-left: 1.5rem;
  }
  .lang-toggle button {
    background: none; border: none; cursor: pointer;
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem; font-family: 'Inter', sans-serif;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    transition: all 0.2s;
  }
  .lang-toggle button.active {
    background: var(--gold);
    color: var(--black);
    font-weight: 500;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
    text-align: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 65%);
  }
  .hero-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 79px, rgba(201,168,76,0.03) 80px
    );
  }
  .hero-content { position: relative; z-index: 2; padding: 0 2rem; }
  .hero-logo { width: clamp(260px, 36vw, 480px); margin-bottom: 2.5rem; }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.65rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin: 0 auto 2.8rem;
    max-width: 600px;
    text-align: center;
  }
  .hero-tagline span { color: var(--gold); }
  .hero-cta {
    display: inline-block;
    padding: 0.85rem 2.4rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .hero-cta:hover { background: var(--gold); color: var(--black); }
  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  }
  .hero-scroll span {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted); opacity: 0.5;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
  }
  @keyframes scrollAnim {
    0%,100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.9; transform: scaleY(1.2); }
  }

  /* ── SECTIONS ── */
  section { padding: 8rem 0; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }
  .container-wide { max-width: 1300px; margin: 0 auto; padding: 0 4rem; }

  .section-label {
    font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .divider-gold {
    width: 48px; height: 1px;
    background: var(--gold);
    margin: 1.8rem 0;
  }

  /* ── ABOUT ── */
  #about { background: var(--dark); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .about-image {
    position: relative;
  }
  .about-image-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: var(--dark2);
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
  }
  .about-image-placeholder .icon { font-size: 2.5rem; opacity: 0.3; }
  .about-image-placeholder p { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.4; }
  .about-frame {
    position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
    border: 1px solid var(--gold-dim); pointer-events: none;
  }
  .about-text p {
    font-size: 1.02rem; color: var(--text-muted);
    margin-bottom: 1.2rem; line-height: 1.85;
  }
  .about-text p strong { color: var(--text); font-weight: 400; }
  .values-row {
    display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
  }
  .value-tag {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    color: var(--text-muted);
  }

  /* ── WORKSHOPS ── */
  #workshops { background: var(--black); }
  .workshops-intro { max-width: 620px; margin-bottom: 4rem; }
  .workshops-intro p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.85; }
  .workshop-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  }
  .workshop-card {
    background: var(--dark2);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
  }
  .workshop-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
  }
  .workshop-number {
    font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold-dim);
    margin-bottom: 1.2rem; display: block;
  }
  .workshop-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--white); margin-bottom: 0.8rem; line-height: 1.2;
  }
  .workshop-desc {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 1.5rem;
  }
  .workshop-details {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .workshop-detail {
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-dim);
  }
  .workshop-cta {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .workshop-cta:hover { color: var(--gold-light); }

  /* ── ARTISTIC BOOK ── */
  #artistic-book { background: var(--dark); }
  .gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
  .gallery-filters {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }
  .filter-btn {
    background: none; border: 1px solid var(--border);
    padding: 0.4rem 1.1rem; cursor: pointer;
    font-size: 0.7rem; font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); transition: all 0.2s;
  }
  .filter-btn.active, .filter-btn:hover {
    border-color: var(--gold); color: var(--gold);
  }
  /* ── Gallery grid — explicit 3-column layout, 5 rows ── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px 220px 220px 360px;
    gap: 3px;
  }
  /* Kalandra: wide landscape (2 cols × 2 rows) */
  .gallery-item-kalandra    { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  /* Straffet: tall portrait (1 col × 3 rows) */
  .gallery-item-straffet    { grid-column: 3;          grid-row: 1 / span 3; }
  /* Royalty: wide landscape (2 cols × 2 rows) */
  .gallery-item-royalty     { grid-column: 1 / span 2; grid-row: 3 / span 2; }
  /* Love Me: portrait (1 col × 2 rows) */
  .gallery-item-loveme      { grid-column: 3;          grid-row: 4 / span 2; }
  /* Divorce Dress: small portrait */
  .gallery-item-divorce     { grid-column: 1;          grid-row: 5; }
  /* I Choose Green: small portrait */
  .gallery-item-choosegreen { grid-column: 2;          grid-row: 5; }

  .gallery-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    overflow: hidden; position: relative; cursor: pointer;
    transition: all 0.4s;
    text-decoration: none; color: inherit; display: block;
  }
  .gallery-item-inner {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.8rem; color: var(--text-muted);
    transition: all 0.4s;
  }
  .gallery-item-inner img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
    display: block;
  }
  .gallery-item:hover .gallery-item-inner img { transform: scale(1.05); }
  .gallery-item .icon { font-size: 2rem; opacity: 0.2; }
  .gallery-item-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  .gallery-item:hover .gallery-item-label { transform: translateY(0); }
  .gallery-item-label h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--white); font-weight: 400;
  }
  .gallery-item-label p {
    font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  }
  .gallery-item:hover { border-color: var(--gold-dim); }

  /* ── SHOP ── */
  #shop { background: var(--black); }
  .shop-note {
    display: inline-block;
    background: var(--dark2);
    border-left: 2px solid var(--gold);
    padding: 0.8rem 1.4rem;
    font-size: 0.82rem; color: var(--text-muted);
    margin-bottom: 3.5rem;
  }
  .shop-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  }
  .shop-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .shop-item:hover { border-color: var(--gold-dim); }
  .shop-item-image {
    width: 100%; aspect-ratio: 1;
    background: var(--dark3);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 2.5rem;
    position: relative; overflow: hidden;
  }
  .shop-item-image > span { opacity: 0.06; }
  .coming-soon-badge {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
  }
  .shop-item-info {
    padding: 1.5rem;
    display: flex; flex-direction: column; flex: 1;
  }
  .shop-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; color: var(--white); font-weight: 400;
    margin-bottom: 0.4rem;
  }
  .shop-item-desc {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 1rem; flex: 1;
  }
  .shop-item-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto;
  }
  .shop-price { font-size: 1rem; color: var(--gold); font-weight: 400; }
  .shop-btn {
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold-dim);
    color: var(--gold); background: none; cursor: pointer;
    transition: all 0.2s;
    text-decoration: none; display: inline-block;
  }
  .shop-btn:hover { background: var(--gold); color: var(--black); }

  /* ── INSTAGRAM STRIP ── */
  #instagram { background: var(--dark); padding: 5rem 0; }
  .insta-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  .insta-handle {
    display: flex; align-items: center; gap: 0.8rem;
  }
  .insta-icon { font-size: 1.4rem; color: var(--gold); }
  .insta-handle a {
    color: var(--text); text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    transition: color 0.2s;
  }
  .insta-handle a:hover { color: var(--gold); }
  .insta-link {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 2px;
  }
  .insta-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px;
  }
  .insta-post {
    aspect-ratio: 1;
    background: var(--dark2);
    border: 1px solid var(--border);
    display: block;
    cursor: pointer;
    transition: border-color 0.3s;
    overflow: hidden; position: relative;
    animation: shimmer 2s ease-in-out infinite alternate;
  }
  @keyframes shimmer {
    from { background: var(--dark2); }
    to   { background: var(--dark3, #222222); }
  }
  .insta-post::after {
    content: '↗';
    position: absolute; inset: 0;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold);
    opacity: 0; transition: opacity 0.3s;
    font-style: normal;
  }
  .insta-post:hover::after { opacity: 1; }
  .insta-post:hover { border-color: var(--gold-dim); animation: none; }
  .insta-post--loaded { animation: none; background: var(--dark3, #222); }
  .insta-post--loaded::after { content: '↗'; }
  .insta-video-badge {
    position: absolute; top: 0.5rem; right: 0.5rem;
    background: rgba(8,8,8,0.7); color: var(--gold);
    font-size: 0.55rem; padding: 0.2rem 0.45rem;
    pointer-events: none; border-radius: 2px;
  }

  /* ── CONTACT ── */
  #contact { background: var(--black); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  }
  .contact-info p {
    color: var(--text-muted); font-size: 1rem; line-height: 1.85;
    margin-bottom: 2rem;
  }
  .contact-detail {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 1.2rem;
  }
  .contact-detail-icon { color: var(--gold); font-size: 1rem; margin-top: 0.1rem; }
  .contact-detail-text { font-size: 0.9rem; color: var(--text-muted); }
  .contact-detail-text strong { color: var(--text); display: block; font-weight: 400; }
  .map-container {
    margin-top: 2rem;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .map-container iframe {
    width: 100%; height: 260px; border: none;
    filter: invert(90%) hue-rotate(180deg) saturate(0.6);
    opacity: 0.8;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    color: var(--text);
    font-size: 0.9rem; font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold-dim);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group select option { background: var(--dark2); }
  .form-submit {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2.5rem;
    font-size: 0.78rem; font-family: 'Inter', sans-serif;
    letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    align-self: flex-start; margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--gold); color: var(--black); }
  .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
  .form-status {
    font-size: 0.78rem; letter-spacing: 0.05em;
    min-height: 1.2em;
  }
  .form-status--success { color: #7fb97f; }
  .form-status--error   { color: #c97a7a; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0;
  }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo img { height: 28px; opacity: 0.6; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-size: 0.72rem; color: var(--text-muted); text-decoration: none;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 0.7rem; color: var(--text-muted); opacity: 0.5;
  }


  /* ── ARTIST STATEMENT ── */
  .artist-statement {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.9;
    border-left: 2px solid var(--gold-dim);
    padding-left: 1.2rem;
    margin-top: 1.4rem !important;
  }
  /* ── UTILITY ── */
  .text-gold { color: var(--gold); }
  .hidden-no { display: none; }
  .show-no .hidden-no { display: block; }
  .show-no .hidden-en { display: none; }
  .show-en .hidden-no { display: none; }
  .show-en .hidden-en { display: block; }

  /* ── COMING UP ── */
  .coming-up-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .event-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    transition: border-color 0.3s;
  }
  .event-card:hover { border-color: var(--gold-dim); }
  .event-date {
    display: flex; flex-direction: column; align-items: center;
    min-width: 52px; padding-top: 0.2rem;
  }
  .event-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1;
  }
  .event-month {
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 0.3rem;
  }
  .event-info { flex: 1; }
  .event-type {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.4rem;
  }
  .event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 300; color: var(--white);
    margin-bottom: 0.4rem;
  }
  .event-detail { font-size: 0.8rem; color: var(--text-muted); }
  .event-status {
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); border: 1px solid var(--border);
    padding: 0.3rem 0.6rem; white-space: nowrap; align-self: flex-start;
  }
  .newsletter-box {
    background: var(--dark);
    border: 1px solid var(--gold-dim);
    padding: 2.5rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; flex-wrap: wrap;
  }
  .newsletter-box > div:first-child { flex: 1; min-width: 240px; }
  .newsletter-box > div:last-child { flex-shrink: 0; }
  .newsletter-form { display: flex; gap: 0; flex-shrink: 0; }
  .newsletter-input {
    background: var(--dark2); border: 1px solid var(--border);
    border-right: none; color: var(--text);
    padding: 0.75rem 1.2rem; font-family: 'Inter', sans-serif;
    font-size: 0.85rem; outline: none; min-width: 220px;
  }
  .newsletter-input:focus { border-color: var(--gold-dim); }
  .newsletter-btn {
    background: none; color: var(--gold);
    border: 1px solid var(--gold); padding: 0.75rem 1.8rem;
    font-family: 'Inter', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer; white-space: nowrap; transition: all 0.3s;
  }
  .newsletter-btn:hover { background: var(--gold); color: var(--black); }
  .newsletter-btn:disabled { opacity: 0.5; cursor: not-allowed; }

  .logo-text {
    font-family: 'CoveredByYourGrace', cursive;
    font-size: 28px;
    line-height: 1;
    background: linear-gradient(180deg, #F5DC6A 0%, #C9A84C 45%, #8A6820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    text-decoration: none;
  }
  .hero-logo-text {
    font-family: 'CoveredByYourGrace', cursive;
    font-size: clamp(52px, 10vw, 96px);
    line-height: 1;
    background: linear-gradient(180deg, #F5DC6A 0%, #C9A84C 45%, #8A6820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 2.5rem;
    white-space: nowrap;
  }

  /* ── NEWSLETTER MODAL ── */
  .nl-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
  }
  .nl-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.75);
  }
  .nl-modal-panel {
    position: relative; z-index: 1;
    background: var(--dark2);
    border: 1px solid var(--gold-dim);
    padding: 2.5rem;
    width: min(480px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
  }
  .nl-modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none;
    color: var(--text-muted); font-size: 1.4rem;
    cursor: pointer; line-height: 1; padding: 0.2rem 0.4rem;
    transition: color 0.2s;
  }
  .nl-modal-close:hover { color: var(--gold); }
  .nl-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; font-size: 1.5rem;
    color: var(--white); margin: 0 0 1.5rem;
  }
  /* Override Infomaniak's light-theme styles within the modal */
  .nl-modal-panel .inf-content { display: flex; flex-direction: column; gap: 1rem; margin: 0; }
  .nl-modal-panel .inf-input { display: flex; flex-direction: column; gap: 0; }
  .nl-modal-panel .inf-input input[type="email"] {
    background: var(--dark3); color: var(--text);
    border: 1px solid var(--border, #333);
    padding: 0.7rem; font-size: 0.9rem; width: 100%;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
  }
  .nl-modal-panel .inf-input input[type="email"]:focus { border-color: var(--gold-dim); outline: none; }
  .nl-modal-panel .inf-input.inf-error input { border-color: #c97a7a !important; }
  .nl-modal-panel .inf-message { display: none; font-size: 0.72rem; color: #c97a7a; margin-top: 0.3rem; }
  .nl-modal-panel .inf-input.inf-error .inf-message { display: block; }
  .nl-modal-panel .inf-submit { display: flex; }
  .nl-submit {
    background: none; border: 1px solid var(--gold);
    color: var(--gold); padding: 0.8rem 2rem;
    font-size: 0.78rem; font-family: 'Inter', sans-serif;
    letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
  }
  .nl-submit:hover { background: var(--gold); color: var(--black); }
  .nl-submit.disabled, .nl-submit:disabled { opacity: 0.5; cursor: not-allowed; }
  .nl-rgpd {
    font-size: 0.75rem; color: var(--text-muted);
    line-height: 1.5; margin: 0;
  }
  .nl-success-msg {
    color: #7fb97f; font-size: 0.9rem; line-height: 1.6;
    padding: 1rem 0;
  }
  /* Infomaniak structural overrides — preserve our layout */
  .nl-modal-panel .inf-form { all: unset; display: block; }

  /* ═══════════════════════════════════════════════════════════════
   RESPONSIVE & MOBILE
   Breakpoints: 900px (tablet), 600px (large phone), 400px (small phone)
   ═══════════════════════════════════════════════════════════════ */

  /* ── Hamburger button (hidden on desktop) ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text-muted);
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

  /* ── TABLET — 900px ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    .nav-hamburger { display: flex; }

    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(8,8,8,0.98);
      backdrop-filter: blur(16px);
      padding: 5rem 2.5rem 2.5rem;
      flex-direction: column;
      gap: 0;
      border-bottom: 1px solid var(--border);
      z-index: 100;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      font-size: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--border);
      letter-spacing: 0.08em;
    }
    .lang-toggle { margin-left: 0; margin-top: 1.5rem; align-self: flex-start; }

    .container, .container-wide { padding: 0 1.8rem; }
    section { padding: 5rem 0; }

    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-width: 420px; margin: 0 auto; }
    .workshop-cards, .shop-grid { grid-template-columns: 1fr; }
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: none;
      grid-auto-rows: 240px;
    }
    .gallery-item-kalandra, .gallery-item-royalty, .gallery-item-straffet,
    .gallery-item-loveme, .gallery-item-divorce, .gallery-item-choosegreen {
      grid-column: unset; grid-row: unset;
    }
    .gallery-item-kalandra { grid-column: span 2; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }

    .coming-up-grid { grid-template-columns: 1fr; }
    .newsletter-box { flex-direction: column; padding: 2rem; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; min-width: unset; }

    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-detail { gap: 0.8rem; }
    .map-container { height: 220px; }
  }

  /* ── LARGE PHONE — 600px ── */
  @media (max-width: 600px) {
    nav { padding: 0.9rem 1.2rem; }
    .container, .container-wide { padding: 0 1.2rem; }
    section { padding: 4rem 0; }

    /* Hero */
    .hero-content { padding: 0 1rem; }
    .hero-tagline { font-size: clamp(1rem, 4.5vw, 1.3rem); margin-bottom: 2rem; }
    .hero-cta { padding: 0.75rem 1.8rem; font-size: 0.72rem; }
    .hero-scroll { display: none; }
    .hero-logo-text {
      font-size: clamp(38px, 9vw, 52px);
      letter-spacing: 2px;
      white-space: normal;
      text-align: center;
      line-height: 1.15;
    }

    /* About */
    .about-image { max-width: 300px; margin: 0 auto; }
    .about-text p { font-size: 0.95rem; }
    .artist-statement { font-size: 1.1rem; }
    .values-row { gap: 0.7rem; }
    .value-tag { font-size: 0.65rem; padding: 0.3rem 0.7rem; }

    /* Section headings */
    .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    /* Workshop cards */
    .workshop-card { padding: 1.8rem; }
    .workshop-number { font-size: 2.5rem; }

    /* Gallery */
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: none;
      grid-auto-rows: 280px;
      gap: 6px;
    }
    .gallery-item-kalandra, .gallery-item-royalty, .gallery-item-straffet,
    .gallery-item-loveme, .gallery-item-divorce, .gallery-item-choosegreen {
      grid-column: unset; grid-row: unset;
    }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .gallery-filters { flex-wrap: wrap; gap: 0.4rem; }

    /* Shop */
    .shop-item-name { font-size: 1rem; }

    /* Events */
    .event-card { flex-direction: column; gap: 0.8rem; padding: 1.5rem; }
    .event-date { flex-direction: row; align-items: baseline; gap: 0.6rem; min-width: unset; }
    .event-day { font-size: 1.4rem; }
    .event-status { align-self: flex-start; }

    /* Contact */
    .contact-form { gap: 1.2rem; }
    .map-container { height: 180px; }

    /* Footer */
    .footer-links { gap: 0.8rem; font-size: 0.7rem; }
    .logo-text { font-size: 22px !important; }

    /* Insta */
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .insta-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  }

  /* ── SMALL PHONE — 400px ── */
  @media (max-width: 400px) {
    .container, .container-wide { padding: 0 1rem; }
    section { padding: 3rem 0; }
    .hero-logo-text { font-size: clamp(32px, 8.5vw, 42px); letter-spacing: 1px; }
    .about-image { max-width: 260px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
    .workshop-cards { grid-template-columns: 1fr; }
    .hero-cta { width: 100%; text-align: center; box-sizing: border-box; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .coming-up-grid { grid-template-columns: 1fr; }
  }
