  /* ═══════════════════════════════════════════════════════════
     RESET & TOKENS
  ══════════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:          #FF999A;
    --white:       #FFFFFF;
    --white60:     rgba(255,255,255,0.6);
    --white30:     rgba(255,255,255,0.3);
    --hero-shadow: drop-shadow(0px 4px 12px rgba(180,60,62,0.4))
                   drop-shadow(0px 2px 4px rgba(0,0,0,0.15));
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Elms+Sans', Helvetica, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ═══════════════════════════════════════════════════════════
     NAV
  ══════════════════════════════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: linear-gradient(#d4607a, rgba(255,153,154, 0));
    display: flex; justify-content: space-between; align-items: center;
    padding: max(1.1rem, env(safe-area-inset-top, 1.1rem)) 1.5rem 1rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(.16,1,.3,1);
  }
  nav.nav-visible { transform: translateY(0); }
  .nav-logo {
    font-family: 'Mr Dafoe', cursive;
    font-size: 1.6rem; letter-spacing: 0.02em;
    color: var(--white); text-decoration: none;
    display: flex; align-items: flex-end; gap: 0.55rem;
  }
  .nav-icon {
    height: 2rem; width: auto; display: block;
    filter: drop-shadow(0px 4px 8px rgba(180,60,62,0.35))
            drop-shadow(0px 1px 3px rgba(180,60,62,0.2));
  }
  /* ── Language switcher — sits beside the logo, left-aligned ── */
  .nav-left { display: flex; align-items: flex-end; gap: 0.95rem; }
  .nav-lang {
    display: flex; align-items: center; gap: 0.5rem;
    list-style: none;
  }
  .nav-lang li { display: flex; align-items: center; }
  .nav-lang li + li::before {
    content: ""; display: block;
    width: 1px; height: 0.7rem; margin-right: 0.5rem;
    background: var(--white30);
  }
  .lang-link {
    position: relative;
    font-weight: 100; font-size: 0.68rem; letter-spacing: 0.1em;
    text-transform: uppercase; white-space: nowrap;
    color: var(--white); text-decoration: none;
    opacity: 0.55; padding-bottom: 2px;
    transition: opacity 0.2s;
  }
  .lang-link:hover { opacity: 0.9; }
  .lang-link[aria-current="true"] { opacity: 1; font-weight: 100; cursor: default; }
  .lang-link[aria-current="true"]::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
    height: 1.5px; background: var(--white); border-radius: 2px;
  }
  /* Compact codes (ES/EN…) on small screens, full names on desktop */
  .lang-full { display: none; }
  @media (max-width: 420px) {
    .nav-left { gap: 0.7rem; }
    .nav-lang { gap: 0.4rem; }
    .nav-lang li + li::before { margin-right: 0.4rem; }
  }
  @media (min-width: 768px) {
    .nav-lang { gap: 0.6rem; }
    .nav-lang li + li::before { margin-right: 0.6rem; }
    .lang-link { font-size: 0.7rem; }
    .lang-full { display: inline; }
    .lang-code { display: none; }
  }
  .nav-desktop { display: none; list-style: none; align-items: center; gap: 2.5rem; }
  .nav-desktop > li { position: relative; }
  .nav-desktop > li.nav-dropdown { padding-bottom: 0 rem; }
  .nav-desktop > li > a,
  .nav-desktop > li > span {
    font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--white); text-decoration: none;
    opacity: 0.85; cursor: pointer; transition: opacity 0.2s;
  }
  .nav-dropdown-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%); list-style: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 0.9rem 1.2rem 0.8rem; min-width: 175px;
    border-top: 2px solid rgba(255,255,255,0.25);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(160,50,52,0.22);
    display: flex; flex-direction: column; gap: 0.6rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.16,1,.3,1);
    transform-origin: top center;
  }
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; }
  .nav-dropdown-menu.dd-open            { opacity: 1; pointer-events: auto; }
  .nav-dropdown-menu li a {
    font-weight: 300; font-size: 0.85rem; letter-spacing: 0.1em;
    color: var(--white); text-decoration: none; opacity: 0.8; white-space: nowrap;
  }
  .nav-menu-btn {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 4px;
  }
  .nav-menu-btn span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-menu-btn.open span:nth-child(2) { opacity: 0; }
  .nav-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .menu-overlay {
    position: fixed; inset: 0; background: var(--bg); z-index: 99;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s cubic-bezier(.16,1,.3,1);
  }
  .menu-overlay.open { opacity: 1; pointer-events: auto; }
  .menu-overlay > a,
  .menu-overlay > .menu-group {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
  }
  .menu-overlay.open > a,
  .menu-overlay.open > .menu-group { opacity: 1; transform: translateY(0); }
  .menu-overlay.open > *:nth-child(1) { transition-delay: 0.05s; }
  .menu-overlay.open > *:nth-child(2) { transition-delay: 0.15s; }
  .menu-overlay.open > *:nth-child(3) { transition-delay: 0.22s; }
  .menu-overlay > a {
    font-weight: 300; font-size: 2.2rem;
    color: var(--white); text-decoration: none; letter-spacing: 0.06em;
  }
  .menu-group { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
  .menu-group-label {
    font-weight: 300; font-size: 2.2rem;
    color: var(--white); letter-spacing: 0.06em; opacity: 0.5;
  }
  .menu-group a {
    font-weight: 300; font-size: 1.3rem; letter-spacing: 0.1em;
    color: var(--white); text-decoration: none; opacity: 0.85; transition: opacity 0.2s;
  }
  /* merged: all opacity:1 hover states */
  .nav-desktop > li > a:hover,
  .nav-desktop > li > span:hover,
  .nav-dropdown-menu li a:hover,
  .menu-group a:hover,
  .footer-contact a:hover { opacity: 1; }
  @media (min-width: 768px) {
    .nav-desktop  { display: flex; }
    .nav-menu-btn { display: none; }
    .menu-overlay { display: none !important; }
  }

  /* ═══════════════════════════════════════════════════════════
     HERO SEQUENCE
  ══════════════════════════════════════════════════════════ */
  .sequence-wrapper { position: relative; height: 600vh; }
  .sequence-sticky {
    position: sticky; top: 0; width: 100%; height: 100svh;
    overflow: hidden; background: #FF999A;
  }
  #seqCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .seq-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
  .seq-overlay > * { pointer-events: auto; }
  .hero-title-wrap {
    position: absolute; left: 0; top: auto; bottom: 40%; transform: none;
    width: 100%; padding: 0 1.2rem;
    display: flex; align-items: center; justify-content: center;
    will-change: bottom;
    opacity: 0; animation: fadeUp 0.9s 0.3s cubic-bezier(.16,1,.3,1) forwards;
    transition: none;
  }
  .hero-title {
    font-family: 'Mr Dafoe', cursive;
    font-size: clamp(2.1rem, 11.55vw, 3.68rem);
    line-height: 0.95; letter-spacing: 0.01em;
    color: var(--white); text-align: center; flex-shrink: 1;
    filter: var(--hero-shadow);
  }
  .hero-dash {
    height: clamp(0.28rem, 1.17vw, 0.47rem); width: auto; flex-shrink: 0;
    filter: var(--hero-shadow);
  }
  .hero-sub {
    font-weight: 300; font-style: italic;
    font-size: clamp(1rem, 4.5vw, 1.25rem); color: var(--white);
    line-height: 1.5; letter-spacing: 0.03em;
    margin-bottom: 1.8rem; text-align: center;
    opacity: 0; transition: opacity 0.6s ease;
  }
  .hero-sub.visible { opacity: 1; }
  /* merged: .hero-cta and .about-cta share 7 declarations */
  .hero-cta,
  .about-cta {
    display: inline-block; font-weight: 400;
    font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    border-bottom: 1px solid var(--white60); padding-bottom: 3px;
    transition: border-color 0.2s;
  }
  .hero-cta:hover,
  .about-cta:hover { border-color: var(--white); }
  .hero-cta { transition: border-color 0.2s, opacity 0.6s ease; opacity: 0; }
  .hero-cta.visible { opacity: 1; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* merged: .seq-progress and .cc-progress-fill */
  .seq-progress,
  .cc-progress-fill { height: 1px; background: rgb(255,255,255); transition: width 0.1s linear; }
  .seq-progress { position: absolute; bottom: 0; left: 0; width: 0%; z-index: 10; }
  /* merged: scroll hint lines share style + animation */
  .scroll-hint-line,
  .hint-arrow {
    width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.65), transparent);
    animation: pulse 2s ease-in-out infinite;
  }
  .scroll-hint-line { height: 32px; }
  .hint-arrow       { height: 40px; margin: 0 auto; animation-duration: 1.6s; }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50%      { opacity: 0.35; transform: scaleY(0.5); }
  }
  .scroll-hint {
    position: absolute;
    bottom: max(2rem, env(safe-area-inset-bottom, 2rem));
    left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    z-index: 10; opacity: 0; animation: fadeUp 1s 1.1s ease forwards; transition: opacity 0.4s;
  }
  .scroll-hint.hidden { opacity: 0 !important; pointer-events: none; }
  .scroll-hint-label {
    font-size: 0.65rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--white60);
  }

  /* ── BELOW LOOP ── */
  .below-loop {
    background: #d4607a;
    display: flex; flex-direction: column; align-items: center;
    padding: 2rem 1.5rem max(1rem, env(safe-area-inset-bottom, .5rem));
    text-align: center; position: relative; z-index: 1;
  }
  .hero-footer {
    position: absolute;
    bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
    left: 0; right: 0; padding: 0 1.5rem;
    display: flex; justify-content: space-between; align-items: flex-end;
    z-index: 10; pointer-events: none;
  }
  .hero-footer > * { pointer-events: auto; }
  .footer-insta { display: block; flex-shrink: 0; }
  .footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
  .footer-contact a {
    font-size: clamp(0.875rem, 3.75vw, 1.06rem); font-weight: 300;
    letter-spacing: 0.08em; color: var(--white); text-decoration: none;
    transition: opacity 0.2s;
    text-shadow: 0px 2px 8px rgba(180,60,62,0.3);
  }

  /* ── SVG DIVIDERS ─────────────────────────────────────────────
     Shared rule for orangeDivider.svg (after below-loop) and
     barTop.svg (before about-footer). Both scale to 100% screen
     width, height proportional, zero gaps on all sides.
  ─────────────────────────────────────────────────────────── */
  .svg-divider {
    top: 100%;      /* starts exactly where the nav bottom edge ends           */
    left: -10px;     /* 1 px bleed: closes sub-pixel side gap on mobile without */
    right: -10px;    /* needing overflow:hidden (which hides SVGs in Safari)    */
    width: auto;    /* fills between left:-1px and right:-1px automatically    */
    line-height: 0;
    font-size: 0;
    pointer-events: none;
    z-index: 0;
  }
  .svg-divider img {
    display: block;
    width: 100vw;      /* viewport unit: immune to content-box narrowing on mobile Safari */
    height: auto;
  }

  /* ═══════════════════════════════════════════════════════════
     CROSSED CULTURES SECTION
  ══════════════════════════════════════════════════════════ */
  .cc-wrapper { position: relative; height: 700vh; }
  #crossed-cultures {
    position: sticky; top: 0; height: 100svh; overflow: hidden;
    background: #FF9B91; user-select: none; -webkit-user-select: none; cursor: default;
  }
  #ccScene { position: absolute; inset: 0; perspective: 900px; perspective-origin: 50% 50%; }
  .cc-card {
    position: absolute; top: 50%; left: 50%;
    width: min(92vw, 1280px); height: min(30.7vw, 428px);
    border-radius: 20px; background: #ddd;
    box-shadow: 10px 20px 60px rgba(0,0,0,0.22), 3px 6px 18px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.55);
    overflow: hidden; will-change: transform, opacity;
    backface-visibility: hidden; -webkit-backface-visibility: hidden; cursor: pointer;
  }
  .cc-card img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; pointer-events: none; transition: opacity 0.35s ease;
  }
  .cc-card img.loading { opacity: 0; }
  .cc-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 15px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.42), transparent);
    color: rgba(255,255,255,0.88);
    font-family:'Elms+Sans';
    font-size: clamp(9px, 0.9vw, 12px); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase;
  }
  .ct-outer {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: clamp(300px, 49vw, 677px); height: 33vh; overflow: hidden;
    z-index: 90; pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 52%, transparent 92%);
    mask-image:         linear-gradient(to bottom, black 52%, transparent 92%);
  }
  .ct-inner { padding: 38px 4px 120px; text-align: left; will-change: transform; }
  .ct-title {
    font-family: 'Elms+Sans', font-weight:400;
    font-style: italic;
    font-size: clamp(32px, 4.5vw, 62px); color: rgba(255,255,255,0.92);
    line-height: 1; margin-bottom: 22px; letter-spacing: 0.01em; text-align: center;
  }
  /* merged: .about-body and .ct-body p share 6 declarations */
  .about-body,
  .ct-body p {
    font-weight: 300; font-size: clamp(0.9rem, 3.4vw, 1.05rem);
    line-height: 1.88; letter-spacing: 0.02em;
    color: rgb(255,255,255); margin-bottom: 1.6rem;
  }
  .ct-body p { text-align: justify; text-align-last: left; }
  .ct-quote {
    margin-top: 8px; font-weight: 300; font-style: italic;
    font-size: clamp(0.88rem, 3.4vw, 1.12rem);
    letter-spacing: 0.06em; color: rgba(255,255,255,0.68);
    line-height: 1.6; border: none; padding: 0; text-align: center; display: block;
  }
  #ccDots {
    position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 7px; pointer-events: none; z-index: 90;
  }
  .cc-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(255,255,255,0.28); transition: background 0.35s ease, transform 0.35s ease;
  }
  .cc-dot.active { background: rgba(255,255,255,0.88); transform: scale(2); }
  #ccCounter {
    position: absolute; bottom: 28px; right: 36px;
    pointer-events: none; text-align: right; z-index: 90;
  }
  .cc-counter-current {
    font-family: 'Elms+Sans';
    font-size: clamp(22px, 2.8vw, 36px); color: rgb(255,255,255); line-height: 1;
  }
  .cc-counter-total {
    font-size: clamp(8px, 0.75vw, 10px); letter-spacing: 0.22em;
    text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 3px;
  }
  .cc-progress-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: rgba(255,255,255,0.15); z-index: 100;
  }
  .cc-progress-fill { width: 0%; }
  .cc-bowl {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%); z-index: 90; pointer-events: none;
  }
  .cc-bowl img { width: clamp(36px, 4vw, 56px); height: auto; display: block; }
  .cc-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    text-align: center; pointer-events: none; z-index: 90; opacity: 0;
    animation: fadeUp 0.6s ease 0.8s forwards, ccHintOut 0.8s ease 4.5s forwards;
  }
  .cc-hint p {
    color: rgba(255,255,255,0.55); font-size: 9px;
    letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 10px;
  }
  @keyframes ccHintOut { to { opacity: 0; } }

  /* ═══════════════════════════════════════════════════════════
     PERSONA SECTION
  ══════════════════════════════════════════════════════════ */
  #persona { background: #FF9B91; padding: 6rem 1.5rem 7rem; position: relative; }
  @media (min-width: 768px)  { #persona { padding: 8rem 4rem 9rem; } }
  @media (min-width: 1100px) { #persona { padding: 8rem 6rem 9rem; } }
  .persona-section-inner {
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
  }
  .persona-heading {
    width: clamp(180px, 55vw, 320px); height: auto; display: block;
    filter: var(--hero-shadow);
  }
  .ps-image-stack {
    display: block; text-decoration: none; color: inherit;
    height: min(60vh, 520px); max-height: 600px; width: auto; flex-shrink: 0;
  }
  .ps-image-stack-inner { position: relative; height: 100%; aspect-ratio: 1 / 2; }
  .ps-img-persona {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block;
    filter: drop-shadow(0px 8px 24px rgba(180,60,62,0.35))
            drop-shadow(0px 2px 8px rgba(0,0,0,0.12));
    mix-blend-mode: multiply; background: transparent;
  }
  .ps-img-face {
    position: absolute; left: 50%; top: 8.57%; transform: translateX(-50%);
    width: 38%; height: auto; display: block; pointer-events: none;
  }
  .persona-text {
    max-width: 560px; width: 100%;
    font-weight: 300; font-style: italic;
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    line-height: 1.7; letter-spacing: 0.03em; color: var(--white); text-align: center;
  }
  .persona-cta-row { margin-top: 0.5rem; display: flex; justify-content: center; }

  /* ═══════════════════════════════════════════════════════════
     ABOUT SECTION
  ══════════════════════════════════════════════════════════ */
  #about {
    background: #FF9B91; padding: 6rem 1.5rem 0; position: relative; margin-bottom: 0;
  }
  @media (min-width: 768px)  { #about { padding: 8rem 4rem 0; } }
  @media (min-width: 1100px) { #about { padding: 8rem 6rem 0; } }
  .section-divider {
    display: flex; align-items: center; gap: 1.2rem; margin-bottom: 4.5rem;
  }
  .section-divider::before,
  .section-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.22); }
  .section-divider-label {
    font-weight: 300; font-size: 0.62rem; letter-spacing: 0.38em;
    text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap;
  }
  .about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 0; }
  .about-grid--index {
    grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; margin-bottom: 0;
  }
  @media (max-width: 767px) { .about-grid--index { grid-template-columns: 1fr; } }
  .about-intro {
    font-weight: 300; font-style: italic;
    font-size: clamp(1.05rem, 4vw, 1.28rem);
    line-height: 1.68; letter-spacing: 0.025em; color: var(--white); margin-bottom: 1.8rem;
  }
  .about-cta-row { margin-top: 4.5rem; display: flex; justify-content: center; }
  .about-bowl-ship {
    display: flex; align-items: center; justify-content: flex-end; overflow: visible;
    filter: drop-shadow(0px 4px 8px rgba(180,60,62,0.35))
            drop-shadow(0px 1px 3px rgba(180,60,62,0.2));
  }
  .about-bowl-ship img {
    width: clamp(260px, 46vw, 680px); height: auto; display: block;
    margin-right: clamp(-3rem, -4vw, -1.5rem);
    margin-bottom: 2rem;
  }
  @media (max-width: 767px) {
    .about-bowl-ship { justify-content: center; }
    .about-bowl-ship img { margin-right: 0; width: clamp(220px, 80vw, 420px); }
  }
  /* scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.75s cubic-bezier(.16,1,.3,1),
                transform 0.75s cubic-bezier(.16,1,.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .rd1 { transition-delay: 0.06s; }
  .rd2 { transition-delay: 0.14s; }
  .rd3 { transition-delay: 0.24s; }
  .rd4 { transition-delay: 0.34s; }

  /* ═══════════════════════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════════════════════ */
  /* Static footer — sits at end of page content */
  /* ── FOOTER ─────────────────────────────────────────────────── */

  /* barTop.svg — flush above the fixed footer, 10 px bleed closes mobile gap */
  .footer-bar-top {
    position: absolute;
    bottom: 100%;
    left: -10px;
    right: -10px;
    width: auto;
    line-height: 0;
    font-size: 0;
    pointer-events: none;
    z-index: 0;
  }
  .footer-bar-top img {
    display: block;
    width: 100%;
    height: auto;
  }

  .site-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    height: 150px;
    background: #675b91;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(1.2rem, 3vw, 2.5rem);
    overflow: visible;
    transform: translateY(140%);
    transition: transform 0.9s cubic-bezier(.16,1,.3,1);
  }
  .site-footer.sf-visible { transform: translateY(0); }
  .sf-left  { display: flex; align-items: center; position: relative; z-index: 1; }
  .sf-right { display: flex; justify-content: flex-end; align-items: center; position: relative; z-index: 1; }
  .sf-center {
    display: flex; flex-direction: column;
    align-items: center; gap: 3px;
    align-self: flex-start;
    transform: translateY(-28px);
    position: relative; z-index: 1;
  }
  .sf-center-link {
    display: flex; flex-direction: column;
    align-items: center; gap: 3px;
    text-decoration: none; color: inherit;
  }
  .sf-center-link:hover { opacity: 0.85; transition: opacity 0.2s; }
  .sf-bowl {
    width: clamp(36px, 4.5vw, 62px);
    height: auto; display: block;
    filter: drop-shadow(0px 3px 9px rgba(103,91,145,0.4))
            drop-shadow(0px 1px 3px rgba(0,0,0,0.12));
  }
  .sf-brand { display: flex; align-items: center; gap: clamp(0.4rem, 1.2vw, 0.75rem); }
  .sf-brand-title {
    font-family: 'Mr Dafoe', cursive;
    font-size: clamp(1.1rem, 2.6vw, 1.65rem);
    line-height: 0.9;
    color: var(--white);
    text-align: center;
    filter: drop-shadow(0px 2px 6px rgba(103,91,145,0.35));
  }
  .sf-dash { height: clamp(0.25rem, 0.75vw, 0.42rem); width: auto; flex-shrink: 0; filter: var(--hero-shadow); }
  .footer-insta { display: block; flex-shrink: 0; }
  .footer-insta img {
    height: 3rem; width: auto; display: block;
    filter: drop-shadow(0px 2px 6px rgba(103,91,145,0.4));
    transition: opacity 0.2s;
  }
  .footer-insta:hover img { opacity: 0.75; }
  .footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
  .footer-contact a {
    font-size: clamp(1.25rem, 2.5vw, 1.63rem);
    font-style: italic;
    font-weight: 300; letter-spacing: 0.08em;
    color: var(--white); text-decoration: none;
    transition: opacity 0.2s;
    text-shadow: 0px 2px 8px rgba(103,91,145,0.3);
  }
  .footer-contact a:hover { opacity: 0.75; }
  .site-footer::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 0; right: 0;
    height: 100px;
    background: #675b91;
  }
  .privacyPolicy {
    margin-top: 40px;
    font-size: 0.58rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
    text-decoration: none;
}
  body.footer-active { padding-bottom: 210px; }
  @media (max-width: 767px) {
    .sf-right { min-width: 0; }
    .footer-contact a {
      font-size: clamp(0.6rem, 3.2vw, 0.85rem);
      letter-spacing: 0.02em;
      word-break: break-all;
    }
  }
