:root {
    --bg: #0e1f18;
    --bg2: #122318;
    --bg3: #0a1a12;
    --gold: #b89a5a;
    --gold-light: #d4b87a;
    --gold-pale: #e8d5a3;
    --cream: #f0e8d5;
    --text: #c8bda8;
    --text-dim: #7a7060;
    --border: rgba(184,154,90,0.25);
    --border-soft: rgba(184,154,90,0.12);
  }

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

  /* ── Global link reset — prevent browser-default blue/purple ── */
  a, a:link, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
  }

  /* Page content links — gold including visited (excludes buttons) */
  .page-main a:not(.btn-primary),
  .page-main a:not(.btn-primary):link,
  .page-main a:not(.btn-primary):visited { color: var(--gold); text-decoration: none; }
  .page-main a:not(.btn-primary):hover   { color: var(--gold-light); }

  /* Buttons — always dark text on gold, with proper cursor */
  .btn-primary,
  .btn-primary:link,
  .btn-primary:visited { color: var(--bg) !important; cursor: pointer; }
  .btn-primary:hover   { color: var(--bg) !important; cursor: pointer; }

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

  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  .nav-ig {
    display: flex; gap: 16px; align-items: center;
  }
  .nav-ig a {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex; align-items: center; gap: 6px;
  }
  .nav-ig a:hover { color: var(--gold-light); }
  .nav-ig svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: linear-gradient(to bottom, rgba(14,31,24,0.98) 0%, rgba(14,31,24,0) 100%);
    transition: background 0.4s;
  }
  nav.scrolled {
    background: rgba(10,26,18,0.97);
    border-bottom: 1px solid var(--border-soft);
    padding: 16px 60px;
  }
  .nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    text-decoration: none;
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(184,154,90,0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(18,35,24,0.8) 0%, transparent 50%);
  }
  /* geometric line art background */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,154,90,0.04) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(184,154,90,0.04) 80px);
  }
  .hero-content {
    text-align: center;
    position: relative; z-index: 2;
    animation: heroIn 1.4s cubic-bezier(0.16,1,0.3,1) both;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: heroIn 1.4s 0.2s cubic-bezier(0.16,1,0.3,1) both;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 12vw, 11rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 8px;
    animation: heroIn 1.4s 0.1s cubic-bezier(0.16,1,0.3,1) both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.6em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 20px;
    animation: heroIn 1.4s 0.3s cubic-bezier(0.16,1,0.3,1) both;
  }
  /* TTOO Logo SVG area */
  .hero-logo-mark {
    margin: 40px auto 0;
    width: 160px; height: 160px;
    opacity: 0.85;
    display: block;
    object-fit: contain;
    animation: heroIn 1.4s 0.4s cubic-bezier(0.16,1,0.3,1) both;
  }
  @keyframes rotateSlow { to { transform: rotate(360deg); } }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-align: center;
    width: 100%;
    color: var(--text-dim);
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    animation: heroIn 1.4s 0.8s cubic-bezier(0.16,1,0.3,1) both;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* ── DIVIDER ── */
  .section-divider {
    display: flex; align-items: center; gap: 20px;
    margin: 0 auto 60px;
    max-width: 320px;
  }
  .section-divider::before, .section-divider::after {
    content: ''; flex: 1;
    height: 1px; background: var(--border);
  }
  .divider-diamond {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  /* ── ABOUT ── */
  #about {
    padding: 140px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
  }
  .about-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--text);
    font-style: italic;
  }
  .about-intro strong {
    color: var(--cream); font-style: normal; font-weight: 400;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 60px;
    margin-bottom: 80px;
  }
  .about-col {
    padding: 40px 0;
  }
  .about-col-divider {
    background: var(--border);
    margin: 40px 0;
  }
  .about-col-name {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .about-col-name::after {
    content: ''; flex: 1;
    height: 1px; background: var(--border);
  }
  .about-col-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text);
  }
  /* Philosophy block */
  .philosophy-block {
    border: 1px solid var(--border);
    padding: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .philosophy-block::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,154,90,0.05), transparent 70%);
  }
  .philosophy-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold);
    border-style: solid;
  }
  .philosophy-corner.tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
  .philosophy-corner.tr { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
  .philosophy-corner.bl { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
  .philosophy-corner.br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
  .philosophy-lines {
    display: flex; flex-direction: column; gap: 12px;
    position: relative; z-index: 1;
  }
  .philosophy-line {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .philosophy-line.visible { opacity: 1; transform: translateY(0); }
  .philosophy-line:nth-child(2) { transition-delay: 0.15s; }
  .philosophy-line:nth-child(3) { transition-delay: 0.3s; }
  .philosophy-line:nth-child(4) { transition-delay: 0.45s; color: var(--gold-light); font-style: italic; font-size: clamp(1rem,2vw,1.3rem); }

  /* ── ARTISTS ── */
  #artists {
    padding: 140px 60px;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
  }
  #artists::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(184,154,90,0.015) 40px,
      rgba(184,154,90,0.015) 41px
    );
  }
  .artists-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .artists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 60px;
  }
  .artist-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #0d1e16;
    cursor: none;
  }
  .artist-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.75);
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
                filter 0.5s ease;
  }
  .artist-card:hover .artist-card-img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(0.85);
  }
  .artist-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,26,18,0.92) 0%, rgba(10,26,18,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 50px 40px;
    transition: background 0.4s;
  }
  .artist-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(184,154,90,0.12);
    position: absolute; top: 20px; right: 30px;
    line-height: 1;
    font-style: italic;
    transition: color 0.4s;
  }
  .artist-card:hover .artist-card-number { color: rgba(184,154,90,0.2); }
  .artist-card-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .artist-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 12px;
  }
  .artist-card-spec {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
    line-height: 1.5;
    max-width: 280px;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
  }
  .artist-card:hover .artist-card-spec { opacity: 1; transform: translateY(0); }

  /* ── PORTFOLIO ── */
  #portfolio {
    padding: 140px 0;
    width: 100%;
  }
  #portfolio .section-label,
  #portfolio .section-title,
  #portfolio .section-divider {
    padding-left: 60px;
    padding-right: 60px;
  }
  .portfolio-tabs {
    display: flex; justify-content: center; gap: 0;
    margin: 50px 0;
    border: 1px solid var(--border);
    width: fit-content;
    margin-inline: auto;
  }
  .tab-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    background: transparent;
    border: none;
    padding: 16px 40px;
    cursor: pointer;
    position: relative;
  }
  .tab-btn::after {
    content: '';
    position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: var(--border);
  }
  .tab-btn:last-child::after { display: none; }
  .tab-btn.active {
    color: var(--bg);
    background: var(--gold);
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    display: none;
  }
  .portfolio-grid.active { display: grid; }
  .portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #0d1e16;
  }
  .portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(15%) brightness(0.8);
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
    display: block;
  }
  .portfolio-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(0.95);
  }
  .portfolio-item-overlay {
    position: absolute; inset: 0;
    background: rgba(10,26,18,0);
    transition: background 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .portfolio-item:hover .portfolio-item-overlay {
    background: rgba(10,26,18,0.3);
  }
  .portfolio-item-icon {
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
    color: var(--gold-pale);
    font-size: 1.5rem;
  }
  .portfolio-item:hover .portfolio-item-icon { opacity: 1; transform: scale(1); }

  /* placeholder portfolio items using CSS patterns */
  .port-placeholder {
    width: 100%; height: 100%;
    background: #0d1e16;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
  }

  /* ── BOOKING ── */
  #booking {
    padding: 140px 60px;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
  }
  #booking::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(184,154,90,0.04), transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(184,154,90,0.03), transparent 50%);
  }
  .booking-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative; z-index: 1;
    text-align: center;
  }
  .booking-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 50px;
  }
  .booking-headline em { color: var(--gold-light); font-style: italic; }
  .booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
    margin-bottom: 60px;
  }
  .booking-step {
    padding: 40px 30px;
    background: var(--bg3);
    text-align: center;
    position: relative;
  }
  .booking-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(184,154,90,0.2);
    line-height: 1;
    margin-bottom: 16px;
  }
  .booking-step-title {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .booking-step-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-dim);
  }
  .booking-deposit {
    border: 1px solid var(--border);
    padding: 40px 60px;
    margin-bottom: 50px;
    position: relative;
  }
  .booking-deposit-label {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .booking-deposit-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
  }
  .booking-deposit-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
    margin: 12px 0 4px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    color: var(--bg);
    background: var(--gold);
    border: none;
    padding: 20px 52px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 40px rgba(184,154,90,0.25);
  }
  .btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s;
  }
  .btn-primary:hover .btn-arrow { transform: translateX(5px); }

  /* ── STUDIO ── */
  #studio {
    padding: 140px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .studio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 70px;
  }
  .studio-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 30px;
  }
  .studio-text h3 em { color: var(--gold-light); font-style: italic; }
  .studio-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
  }
  .studio-address {
    display: flex; align-items: center; gap: 12px;
    margin-top: 36px;
    padding: 20px 0;
    border-top: 1px solid var(--border-soft);
  }
  .studio-address-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
  }
  .studio-address-text {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
  }
  .studio-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .studio-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #0d1e16;
  }
  .studio-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    transition: transform 0.7s ease, filter 0.4s;
  }
  .studio-img-wrap:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) brightness(0.9);
  }
  /* Map embed placeholder */
  .map-embed {
    aspect-ratio: 4/3;
    background: #0d1e16;
    border: 1px solid var(--border-soft);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
    color: var(--text-dim);
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    position: relative;
    overflow: hidden;
  }
  .map-embed iframe {
    width: 100%; height: 100%;
    border: none;
    opacity: 0.7;
    filter: invert(90%) hue-rotate(140deg) brightness(0.6) saturate(0.5);
    transition: opacity 0.3s;
  }
  .map-embed:hover iframe { opacity: 0.9; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border-soft);
    padding: 60px;
    display: flex;
    align-items: center; justify-content: space-between;
    background: var(--bg3);
  }
  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--gold-light);
  }
  .footer-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-dim);
    text-align: center;
  }

    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── MARQUEE BAND ── */
  .marquee-band {
    background: var(--bg3);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .marquee-track {
    display: inline-flex; gap: 0;
    animation: marquee 30s linear infinite;
  }
  .marquee-band:hover .marquee-track {
    animation-play-state: paused;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    cursor: pointer;
    transition: color 0.2s;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    padding: 0 40px;
    opacity: 0.85;
  }
  .marquee-item:hover { color: var(--gold-light); opacity: 1; }
  .marquee-dot {
    color: rgba(184,154,90,0.3);
    padding: 0 10px;
  }

  /* ── SECTION TITLES ── */
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .section-title em { color: var(--gold-light); font-style: italic; }

  /* ── ARTIST BIO BUTTON ── */
  .artist-bio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(184,154,90,0.5);
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease,
                background 0.25s, border-color 0.25s;
    align-self: flex-start;
    position: relative;
    z-index: 2;
  }
  .artist-bio-btn::after {
    content: '→';
    font-size: 0.7rem;
    transition: transform 0.25s;
    font-family: serif;
  }
  .artist-card:hover .artist-bio-btn {
    opacity: 1;
    transform: translateY(0);
  }
  .artist-bio-btn:hover {
    background: rgba(184,154,90,0.12);
    border-color: var(--gold-light);
  }
  .artist-bio-btn:hover::after {
    transform: translateX(4px);
  }

  /* ── ARTIST BIO MODAL ── */
  .bio-modal {
    display: none;
    position: fixed; inset: 0; z-index: 9998;
    align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .bio-modal.open  { display: flex; }
  .bio-modal.visible { opacity: 1; }

  .bio-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(8,20,14,0.92);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }

  .bio-modal-box {
    position: relative; z-index: 1;
    width: min(620px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0d1e16;
    border: 1px solid rgba(184,154,90,0.2);
    padding: 60px 52px;
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(184,154,90,0.35) transparent;
  }
  .bio-modal-box::-webkit-scrollbar { width: 4px; }
  .bio-modal-box::-webkit-scrollbar-track { background: transparent; }
  .bio-modal-box::-webkit-scrollbar-thumb {
    background: rgba(184,154,90,0.35);
    border-radius: 2px;
  }
  .bio-modal-box::-webkit-scrollbar-thumb:hover {
    background: rgba(184,154,90,0.6);
  }
  .bio-modal.visible .bio-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .bio-modal-close {
    position: absolute; top: 22px; right: 26px;
    background: none;
    border: 1px solid rgba(184,154,90,0.3);
    color: var(--gold);
    font-size: 0.9rem;
    width: 40px; height: 40px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
  }
  .bio-modal-close:hover {
    background: rgba(184,154,90,0.1);
    border-color: var(--gold-light);
    transform: rotate(90deg);
  }

  .bio-modal-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .bio-modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 8px;
  }
  .bio-modal-spec {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 28px;
  }
  .bio-modal-divider {
    width: 40px;
    height: 1px;
    background: rgba(184,154,90,0.4);
    margin-bottom: 28px;
  }
  .bio-modal-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.85;
    font-weight: 300;
  }
  /* ── Section headers inside bio text (KONZEPT / PROZESS / FINAL) ── */
  .bio-modal-text .bio-section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.55em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184,154,90,0.3);
    font-weight: 400;
  }
  .bio-modal-text .bio-section-title:first-child {
    margin-top: 0;
  }
  .bio-modal-text .bio-para {
    margin-bottom: 1.1em;
    color: var(--text-dim);
  }
  .bio-modal-text .bio-para:last-child {
    margin-bottom: 0;
  }

  /* Mobile: button always visible */
  @media (max-width: 900px) {
    .artist-bio-btn {
      opacity: 1;
      transform: translateY(0);
    }
    .bio-modal-box {
      padding: 44px 28px;
    }
  }

  /* ── HAMBURGER MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-light);
    transition: all 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ── MOBILE NAV DRAWER ── */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,20,14,0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-drawer a:hover { color: var(--gold-light); }
  .nav-drawer .drawer-ig {
    display: flex; gap: 28px; align-items: center;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
  }
  .nav-drawer .drawer-ig a {
    font-size: 0.7rem;
    display: flex; align-items: center; gap: 8px;
  }
  .nav-drawer .drawer-ig svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    /* Nav */
    nav { padding: 18px 20px; }
    nav.scrolled { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-ig { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    #hero { padding: 0 20px; min-height: 100svh; }
    .hero-title { font-size: clamp(3.2rem, 14vw, 5.5rem); }
    .hero-eyebrow { font-size: 0.5rem; letter-spacing: 0.3em; margin-bottom: 18px; }
    .hero-subtitle { font-size: 0.5rem; letter-spacing: 0.35em; margin-top: 14px; }
    .hero-logo-mark { width: 100px; height: 100px; }

    /* About */
    #about { padding: 80px 20px; }
    .about-intro { font-size: 1.1rem; margin-bottom: 50px; }
    .about-grid { grid-template-columns: 1fr; gap: 0; }
    .about-col-divider { height: 1px; width: 100%; margin: 0; background: var(--border); }
    .about-col { padding: 28px 0; }
    .about-col-text { font-size: 1rem; }
    .philosophy-block { padding: 32px 20px; }
    .philosophy-line { font-size: clamp(0.95rem, 3.5vw, 1.3rem); }

    /* Artists */
    #artists { padding: 80px 20px; }
    .artists-grid { grid-template-columns: 1fr; gap: 4px; }
    .artist-card { aspect-ratio: 4/5; }
    .artist-card-spec { opacity: 1; transform: none; }
    .artist-card-name { font-size: 2.2rem; }
    .artist-card-overlay { padding: 30px 24px; }

    /* Portfolio */
    #portfolio { padding: 80px 0; }
    #portfolio .section-label,
    #portfolio .section-title,
    #portfolio .section-divider { padding-left: 20px; padding-right: 20px; }
    .portfolio-tabs { margin: 36px auto; }
    .tab-btn { padding: 14px 28px; font-size: 0.55rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

    /* Booking */
    #booking { padding: 80px 20px; }
    .booking-headline { font-size: clamp(2rem, 8vw, 3.5rem); margin-bottom: 36px; }
    .booking-steps { grid-template-columns: 1fr; }
    .booking-step { padding: 28px 20px; }
    .booking-deposit { padding: 28px 20px; margin-bottom: 36px; }
    .btn-primary { padding: 18px 36px; font-size: 0.6rem; }

    /* Studio */
    #studio { padding: 80px 20px; }
    .studio-layout { grid-template-columns: 1fr; gap: 36px; margin-top: 50px; }
    .studio-text h3 { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 20px; }
    .studio-text p { font-size: 0.95rem; }
    .map-embed { aspect-ratio: 4/3; }

    /* Section titles */
    .section-title { font-size: clamp(2rem, 8vw, 3.2rem); }
    .section-label { font-size: 0.55rem; }

    /* Footer */
    footer { padding: 40px 20px; flex-direction: column; gap: 18px; text-align: center; }
    .footer-logo { font-size: 0.8rem; }
    .footer-tagline { font-size: 0.75rem; }

    /* Marquee */
    .marquee-item { font-size: 0.55rem; padding: 0 24px; }

    /* Lightbox */
    #lb-prev { left: 8px; width: 40px; height: 40px; font-size: 1.1rem; }
    #lb-next { right: 8px; width: 40px; height: 40px; font-size: 1.1rem; }
    #lb-close { top: 14px; right: 14px; width: 38px; height: 38px; }
    #lb-img { max-width: 96vw; max-height: 80vh; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: clamp(2.8rem, 16vw, 4.5rem); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .booking-steps { grid-template-columns: 1fr; }
  }
  /* ── LANGUAGE SWITCHER ── */
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-right: 6px;
  }
  .lang-btn {
    background: none;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 0.45rem;
    letter-spacing: 0.2em;
    color: rgba(184,154,90,0.38);
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.25s;
    text-transform: uppercase;
  }
  .lang-btn:hover,
  .lang-btn.active {
    color: var(--gold-light);
  }
  .lang-div {
    color: rgba(184,154,90,0.18);
    font-size: 0.5rem;
    user-select: none;
    pointer-events: none;
  }
  @media (max-width: 900px) {
    .lang-switcher { display: flex; }
    .lang-btn { font-size: 0.48rem; padding: 3px 5px; }
  }
  .drawer-lang {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 14px 0 18px;
    border-bottom: 1px solid rgba(184,154,90,0.1);
    margin-bottom: 6px;
  }
  .drawer-lang .lang-btn {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    padding: 6px 10px;
  }
  @media (min-width: 901px) {
    .drawer-lang { display: none; }
  }
  @media (max-width: 900px) {
    .drawer-lang { display: none; }
  }


/* ══════════════════════════════════════════════════
   INNER PAGES — shared layout
══════════════════════════════════════════════════ */
.page-header {
  padding: 160px 40px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(184,154,90,0.12);
  max-width: 760px;
  margin: 0 auto;
}
.page-header .section-label { margin-bottom: 18px; }
.page-header .page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-header .page-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-header .page-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-style: italic;
  margin-bottom: 30px;
}
.page-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 40px 140px;
}
.psec {
  margin-bottom: 60px;
}
.psec-label {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.psec h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.psec h2 em { font-style: italic; color: var(--gold-light); }
.psec h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 36px 0 14px;
}
.psec p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 1.1em;
}
.psec p strong { color: var(--cream); font-weight: 400; }
.page-divider {
  width: 40px;
  height: 1px;
  background: rgba(184,154,90,0.35);
  margin: 48px 0;
}
.page-box {
  border: 1px solid rgba(184,154,90,0.2);
  padding: 32px 40px;
  margin: 40px 0;
  background: rgba(184,154,90,0.03);
}
.page-box p { margin-bottom: 0.7em; }
.page-box p:last-child { margin-bottom: 0; }
.page-cta {
  text-align: center;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(184,154,90,0.12);
  margin-top: 60px;
}
.page-cta .section-label { margin-bottom: 24px; }
.page-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 30px;
}
.faq-item {
  border-bottom: 1px solid rgba(184,154,90,0.1);
  padding: 30px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.6;
}
.faq-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.85;
  font-weight: 300;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
.step-card {
  border: 1px solid rgba(184,154,90,0.15);
  padding: 28px 24px;
}
.step-num {
  font-family: 'Cinzel', serif;
  font-size: 0.45rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 400;
}
.step-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.city-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid rgba(184,154,90,0.2);
  padding: 7px 14px;
  text-transform: uppercase;
}
.aftercare-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(184,154,90,0.08);
}
.aftercare-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(184,154,90,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  padding-top: 4px;
}
.aftercare-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.aftercare-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.85;
  font-weight: 300;
}
@media (max-width: 600px) {
  .page-header { padding: 130px 24px 60px; }
  .page-main { padding: 60px 24px 100px; }
  .page-box { padding: 24px 20px; }
  .step-grid { grid-template-columns: 1fr; }
  .aftercare-step { flex-direction: column; gap: 10px; }
}
