  :root{
    --bg: #FFF0EB;
    --bg-soft: #FBDDCD;
    --card: #FFFFFF;
    --ink: #01110A;
    --ink-soft: rgba(1,17,10,0.62);
    --wine: #FF4D0D;
    --wine-deep: #D9420A;
    --brass: #C9BBB1;
    --line: rgba(1,17,10,0.14);
    --radius: 2px;
    --display: "Pally", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --body: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "Space Mono", ui-monospace, monospace;
    --maxw: 1120px;

    /* ---------- Fluid type scale ----------
       Every value is clamp(min, preferred, max): min/max are rem (root
       16px), so they scale with the user's font-size setting; the
       preferred value uses vw so size interpolates smoothly between
       the min and max instead of jumping at a breakpoint. Mobile/tablet
       naturally land nearer the min end, desktop nearer the max end —
       no per-device overrides needed. See the @supports fallback block
       near the bottom of this file for browsers without clamp(). */
    --fs-h1:    clamp(2.125rem, 1.7rem + 3vw, 3.625rem);   /* hero H1: 34px → 58px */
    --fs-h2:    clamp(1.625rem, 1.4rem + 1.6vw, 2.25rem);  /* section H2s: 26px → 36px */
    --fs-h2-lg: clamp(1.625rem, 1.35rem + 1.9vw, 2.375rem);/* footer CTA H2: 26px → 38px */
    --fs-h3:    clamp(1.0625rem, 1rem + 0.5vw, 1.25rem);   /* card H3s: 17px → 20px */
    --fs-h4:    clamp(1rem, 0.94rem + 0.4vw, 1.125rem);    /* 16px → 18px, unused today, kept for future content */
    --fs-h5:    clamp(0.9375rem, 0.9rem + 0.25vw, 1rem);   /* 15px → 16px */
    --fs-h6:    clamp(0.875rem, 0.85rem + 0.2vw, 0.9375rem);/* 14px → 15px */
    --fs-body:  clamp(0.9375rem, 0.9rem + 0.25vw, 1rem);   /* paragraph text: 15px → 16px */
    --fs-lede:  clamp(1rem, 0.94rem + 0.4vw, 1.125rem);    /* intro/lede paragraphs: 16px → 18px */
    --fs-small: clamp(0.8125rem, 0.8rem + 0.1vw, 0.875rem);/* fine print/labels: 13px → 14px */
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img,svg{ max-width:100%; display:block; }
  a{ color: inherit; }
  .wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  h1,h2,h3,h4,h5,h6{
    font-family: var(--display);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 0.4em;
    letter-spacing: -0.02em;
    white-space: pre-line;
  }
  /* Generic fallback sizes — components below (.hero h1, .section-head h2,
     card h3s, etc.) set their own clamp() for the specific spot they're
     used in; these cover any heading that doesn't have one. */
  h1{ font-size: var(--fs-h1); }
  h2{ font-size: var(--fs-h2); }
  h3{ font-size: var(--fs-h3); }
  h4{ font-size: var(--fs-h4); }
  h5{ font-size: var(--fs-h5); }
  h6{ font-size: var(--fs-h6); }
  .eyebrow{
    font-family: var(--mono);
    font-size: var(--fs-body);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wine);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before{
    content:"";
    width: 22px; height:1px;
    background: var(--brass);
    display:inline-block;
  }
  p{ margin: 0 0 1em; color: var(--ink-soft); font-weight: 300; }

  :focus-visible{
    outline: 2px solid var(--wine);
    outline-offset: 3px;
  }

  /* ---------- Header ---------- */
  header{
    position: sticky; top:0; z-index: 50;
    background: rgba(236,228,212,0.86);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding: 16px 24px;
    max-width: var(--maxw); margin:0 auto;
    gap: 16px;
    position: relative;
  }
  .logo{
    display:flex; align-items:center;
    text-decoration:none;
    color: var(--ink);
  }
  .logo-img{
    height: 30px;
    width: auto;
    display:block;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  }
  .logo:hover .logo-img{ transform: scale(1.05) rotate(-1.5deg); }
  .nav-right{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; flex:1; }
  .nav-links{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin: 0 auto; }
  .nav-links a{
    font-family: var(--mono);
    font-size: 0.8125rem; /* 13px */
    letter-spacing: 0.03em;
    color: var(--ink-soft);
    text-decoration:none;
    transition: color .2s ease;
  }
  .nav-links a:hover{ color: var(--wine); }
  .nav-links a:not(:last-child)::after{
    content:"|";
    margin-left: 18px;
    color: var(--line);
  }
  .nav-burger{
    display:none;
    align-items:center; justify-content:center;
    width:38px; height:38px;
    background:none;
    border:1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    cursor:pointer;
    transition: border-color .2s ease, color .2s ease;
  }
  .nav-burger svg{ width:20px; height:20px; }
  .nav-burger:hover{ border-color: var(--brass); }
  .nav.menu-open .nav-burger{ color: var(--wine); border-color: var(--wine); }

  .lang-switch{ position: relative; }
  .lang-trigger{
    display:flex; align-items:center; gap:6px;
    font-family: var(--mono);
    font-size: 0.75rem; /* 12px */
    letter-spacing: 0.03em;
    background: none;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 8px 11px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: color .2s ease, border-color .2s ease;
  }
  .lang-trigger svg{ width:16px; height:16px; flex-shrink:0; }
  .lang-trigger:hover{ color: var(--ink); border-color: var(--brass); }
  .lang-trigger .lang-current{ text-transform: uppercase; }
  .lang-switch.open .lang-trigger{ color: var(--wine); border-color: var(--wine); }

  .lang-menu{
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 28px -14px rgba(1,17,10,0.3);
    display: flex;
    flex-direction: column;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity .2s ease, transform .25s cubic-bezier(.34,1.56,.64,1), visibility .2s;
    z-index: 60;
  }
  .lang-switch.open .lang-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .lang-menu button{
    font-family: var(--body);
    font-size: 0.875rem; /* 14px */
    text-align: left;
    background: none;
    border: 0;
    border-radius: var(--radius);
    padding: 10px 12px;
    cursor: pointer;
    color: var(--ink);
    transition: background .15s ease, color .15s ease;
  }
  .lang-menu button:hover{ background: var(--bg-soft); }
  .lang-menu button[aria-current="true"]{ color: var(--wine); font-weight: 700; }

  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    gap: 8px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 0.90625rem; /* 14.5px */
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--wine);
    background: var(--wine);
    color: #FBF7EF;
    text-decoration:none;
    cursor:pointer;
    position: relative;
    overflow: hidden;
    transition: background .15s ease, transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
    white-space: nowrap;
  }
  .btn::after{
    content:"→";
    display:inline-block;
    max-width:0;
    opacity:0;
    overflow:hidden;
    transform: translateX(-4px);
    transition: max-width .25s ease, opacity .2s ease, transform .25s ease;
  }
  .btn:hover{
    background: var(--wine-deep);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 18px -8px rgba(217,66,10,0.55);
  }
  .btn:hover::after{ max-width: 20px; opacity:1; transform: translateX(0); }
  .btn:active{ transform: translateY(1px) scale(0.98); box-shadow:none; }
  .btn-ghost{
    background: transparent; color: var(--wine);
  }
  .btn-ghost:hover{ background: rgba(110,42,52,0.08); }
  .btn-sm{ padding: 9px 16px; font-size: 1rem; } /* 16px */

  /* ---------- Hero ---------- */
  .hero{
    padding: 76px 0 60px;
  }
  .hero .wrap{
    max-width: 720px;
  }
  .hero .sub{
    font-size: clamp(1.0625rem, 1rem + 0.6vw, 1.25rem); /* 17px → 20px */
    max-width: 46ch;
  }
  .hero-cta-row{
    display:flex; align-items:center; gap: 16px; flex-wrap:wrap;
    margin-top: 8px;
  }

  /* ---------- Sections generic ---------- */
  section{ padding: 64px 0; }
  .section-head{ max-width: 640px; margin-bottom: 25px; }
  .about-text{ font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.03125rem); line-height: 1.6; max-width: 68ch; margin:0; } /* 15px → 16.5px */
  .section-head h2{ font-size: var(--fs-h2); }
  hr.rule{
    border:0; border-top:1px solid var(--line);
    margin: 0;
  }

  /* ---------- How it works (ticket cards) ---------- */
  .steps{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
  }
  .ticket{
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 3px dashed var(--wine);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease, border-left-width .2s ease;
  }
  .ticket:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 26px -14px rgba(1,17,10,0.28);
    border-left-width: 6px;
  }
  .steps .ticket:nth-child(1):hover{ transform: translateY(-8px) rotate(-1.2deg); }
  .steps .ticket:nth-child(2):hover{ transform: translateY(-8px) rotate(0.9deg); }
  .steps .ticket:nth-child(3):hover{ transform: translateY(-8px) rotate(-0.6deg); }
  .steps .ticket:nth-child(4):hover{ transform: translateY(-8px) rotate(1.1deg); }
  .steps .ticket:nth-child(2){ transition-delay: .08s; }
  .steps .ticket:nth-child(3){ transition-delay: .16s; }
  .steps .ticket:nth-child(4){ transition-delay: .24s; }
  .ticket .seat-label{
    font-family: var(--mono);
    font-size: 0.6875rem; /* 11px — fixed-size micro label, no fluid scaling needed */
    letter-spacing: 0.1em;
    color: var(--brass);
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color .3s ease;
  }
  .ticket:hover .seat-label{ color: var(--wine); }
  .ticket h3{ font-size: var(--fs-h3); margin-bottom: 8px; }
  .ticket p{ margin:0; } /* inherits fluid --fs-body from <body> */
  .steps + .events-callout{ margin-top: 24px; }

  /* ---------- Events (What to expect) ---------- */
  .events-lede{ font-size: var(--fs-lede); color: var(--ink-soft); max-width: 640px; } /* 16px → 18px */
  .events-inline-link{
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s ease;
  }
  .events-inline-link:hover{ color: var(--wine); }
  .events-offer{
    font-family: var(--mono);
    font-size: 0.8125rem; /* 13px */
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 24px;
  }
  .event-types{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
  }
  .event-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 3px dashed var(--wine);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease, border-left-width .2s ease;
  }
  .event-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 26px -14px rgba(1,17,10,0.28);
    border-left-width: 6px;
  }
  .event-card h3{ font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem); margin-bottom: 10px; } /* 17px → 19px */
  .event-card > p{ margin-bottom: 18px; } /* inherits fluid --fs-body from <body> */
  .event-points{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 12px; }
  .event-points li{ font-size: 0.9375rem; color: var(--ink-soft); } /* 15px */
  .event-points strong{ color: var(--ink); }
  .events-cities-cta{ margin: 0 0 40px; }
  .events-cities-link{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    font-family: var(--mono);
    font-size: var(--fs-small); /* 13px → 14px */
    letter-spacing: 0.03em;
    color: var(--wine);
    text-decoration:none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: gap .25s ease, border-color .2s ease;
  }
  .events-cities-link::after{
    content:"→";
    transition: transform .25s ease;
  }
  .events-cities-link:hover{ border-color: var(--wine); }
  .events-cities-link:hover::after{ transform: translateX(4px); }
  .events-types{ max-width: 640px; margin-bottom: 24px; }
  .events-types h3{ font-size: var(--fs-h3); }
  .events-types p{ margin:0; }
  .events-callout{
    font-size: 0.9375rem; /* 15px */
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin:0;
    max-width: 640px;
  }

  /* ---------- Why grid ---------- */
  .why-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .why-card{
    background: var(--bg);
    padding: 30px 24px;
    transition: background .3s ease;
    flex: 1 1 calc(33.333% - 1px);
    max-width: calc(33.333% - 1px);
    min-width: 220px;
  }
  .why-card:hover{ background: var(--bg-soft); }
  .why-card svg{ width:26px; height:26px; margin-bottom: 18px; color: var(--wine); transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
  .why-card:hover svg{ transform: scale(1.2) rotate(-8deg); }
  .why-card h3{ font-size: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem); margin-bottom: 8px; } /* 15px → 17px, matches original desktop max */
  .why-card p{ margin:0; } /* inherits fluid --fs-body from <body> */
  .why-grid .why-card:nth-child(2){ transition-delay: .06s; }
  .why-grid .why-card:nth-child(3){ transition-delay: .12s; }
  .why-grid .why-card:nth-child(4){ transition-delay: .18s; }
  .why-grid .why-card:nth-child(5){ transition-delay: .24s; }
  .why-grid .why-card:nth-child(6){ transition-delay: .3s; }

  /* ---------- Values ---------- */
  .values-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .value-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  }
  .value-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 26px -14px rgba(1,17,10,0.28);
  }
  .value-emoji{
    display:flex;
    align-items:center;
    justify-content:center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-soft);
    font-size: 1.375rem;
    margin-bottom: 18px;
  }
  .value-card h3{ font-size: var(--fs-h3); margin-bottom: 8px; }
  .value-card p{ margin:0; } /* inherits fluid --fs-body from <body> */

  /* ---------- Quote ---------- */
  .quote-section{
    background: var(--ink);
    color: var(--bg);
  }
  .quote-section .wrap{ max-width: 780px; text-align:center; position:relative; }
  .quote-section .wrap::before{
    content:"\201C";
    position:absolute;
    top:-54px; left:50%;
    transform: translateX(-50%) scale(0.4);
    font-family: var(--display);
    font-size: 8.125rem; /* 130px — purely decorative, already scaled via transform */
    color: var(--wine);
    opacity: 0;
    line-height:1;
    pointer-events:none;
    transition: opacity .5s ease .15s, transform .55s cubic-bezier(.34,1.56,.64,1) .15s;
  }
  .quote-section .wrap.in::before{ opacity: 0.45; transform: translateX(-50%) scale(1); }
  .quote-title{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.125rem, 1rem + 1.4vw, 1.4375rem); /* 18px → 23px */
    color: var(--wine);
    margin: 0 0 18px;
  }
  blockquote{
    margin:0 0 20px;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.375rem, 1.2rem + 2vw, 1.875rem); /* 22px → 30px */
    line-height:1.35;
  }
  cite{
    font-family: var(--mono);
    font-style: normal;
    font-size: 0.78125rem; /* 12.5px */
    letter-spacing: 0.04em;
    color: var(--wine);
    opacity: 1;
  }

  /* ---------- FAQ ---------- */
  .faq-list{
    display:flex; flex-direction:column; gap:12px;
    max-width: 760px;
  }
  .faq-item{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 22px;
    transition: border-color .25s ease;
  }
  .faq-item[open]{ border-color: var(--brass); }
  .faq-item summary{
    cursor: pointer;
    list-style: none;
    display:flex; align-items:center; justify-content:space-between;
    gap: 16px;
    padding: 18px 0;
    font-family: var(--display);
    font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.03125rem); /* 15px → 16.5px */
    font-weight: 500;
    color: var(--ink);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content:"+";
    flex-shrink:0;
    font-family: var(--mono);
    font-size: 1.25rem; /* 20px */
    color: var(--wine);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  }
  .faq-item[open] summary::after{ transform: rotate(45deg); }
  .faq-item p{ margin: 0 0 20px; max-width: 62ch; } /* inherits fluid --fs-body from <body> */
  .faq-item .event-points{ margin: 0 0 20px; }
  .faq-item p.faq-note{ font-size: 0.8125rem; color: var(--ink-soft); margin-top: -10px; } /* 13px */
  .faq-item p.faq-note strong{ color: var(--ink); }
  .faq-list .faq-item:nth-child(2){ transition-delay: .06s; }
  .faq-list .faq-item:nth-child(3){ transition-delay: .12s; }
  .faq-list .faq-item:nth-child(4){ transition-delay: .18s; }
  .faq-list .faq-item:nth-child(5){ transition-delay: .24s; }
  .faq-list .faq-item:nth-child(6){ transition-delay: .3s; }
  .faq-list .faq-item:nth-child(7){ transition-delay: .36s; }
  .faq-list .faq-item:nth-child(8){ transition-delay: .42s; }

  /* ---------- Geo-targeted content ----------
     Server-tagged by the Netlify Edge Function in
     netlify/edge-functions/geo.js — it adds a class like
     "geo-ee" to <html> based on the visitor's real location
     (not their language choice). Elements with data-geo="XX"
     are hidden by default and only shown to visitors whose
     country matches. Pure CSS, no client-side JS or API call.

     To target a new country: add a rule here (copy an existing
     line and swap the code), then give your element the matching
     data-geo="XX" attribute. Codes are ISO 3166-1 alpha-2
     (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). */
  [data-geo]{ display:none; }
  html.geo-ee [data-geo~="EE"]{ display:block; }
  html.geo-se [data-geo~="SE"]{ display:block; }
  html.geo-es [data-geo~="ES"]{ display:block; }

  /* Hero CTAs: show the default "Reserve your seat" button unless the
     visitor is in a country with its own Meetup/WhatsApp pair, in which
     case swap to that pair instead. Both rows are flex, so these override
     the block default set above. */
  .hero-cta-geo{ display:none; }
  html.geo-ee .hero-cta-geo[data-geo~="EE"],
  html.geo-se .hero-cta-geo[data-geo~="SE"],
  html.geo-es .hero-cta-geo[data-geo~="ES"]{
    display:flex;
  }
  html.geo-ee .hero-cta-default,
  html.geo-se .hero-cta-default,
  html.geo-es .hero-cta-default{
    display:none;
  }

  /* ---------- Cities ---------- */
  .section-note{
    font-size: var(--fs-lede); /* 16px → 18px */
    color: var(--ink-soft);
    margin: 10px 0 0;
  }
  .city-cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .city-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    min-height: 14rem;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  }
  .city-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 26px -14px rgba(1,17,10,0.28);
  }
  .cities-expanding{
    font-family: var(--mono);
    font-size: var(--fs-small);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 32px 0 18px;
  }
  .city-cards-soon{ margin-bottom: 0; } /* same fixed 3-column grid as .city-cards, so widths always match exactly */
  .cities-ambassador{ margin: 28px 0 0; max-width: 640px; }
  .city-card h3{ font-size: var(--fs-h3); margin-bottom: 4px; } /* 17px → 20px */
  .city-card-country{
    font-family: var(--mono);
    font-size: var(--fs-small);
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    margin: 0 0 20px;
  }
  .city-card-soon{ display:flex; flex-direction:column; align-items:flex-start; justify-content:center; min-height:0; padding: 20px 24px; }
  .city-card-soon svg{ width:26px; height:26px; margin-bottom: 16px; color: var(--brass); }
  .city-card-soon h3{ margin-bottom: 4px; }
  .city-card-soon .city-card-country{ margin: 0 0 8px; }
  .city-card-soon-label{
    font-family: var(--mono);
    font-size: var(--fs-small);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wine);
    margin: 0;
  }
  .city-card-ctas{ display:flex; flex-direction:column; gap: 10px; }
  .city-card-ctas .btn{ width:100%; white-space:normal; }
  .city-card-ctas svg{ width:16px; height:16px; flex-shrink:0; }
  .btn svg, .btn-icon-img{ width:16px; height:16px; flex-shrink:0; object-fit:contain; }
  .btn-icon-img[src*="meetup-icon"]{ border: 1px solid #fff; border-radius: 50%; }

  /* ---------- Footer CTA ---------- */
  .cta-footer{
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
  }
  .cta-footer h2{ font-size: var(--fs-h2-lg); max-width: 22ch; } /* 26px → 38px */
  .cta-footer p{ max-width: 46ch; }
  .cta-footer .btn{ margin-top: 8px; }

  footer.site-footer{
    padding: 30px 24px 26px;
    font-family: var(--mono);
    font-size: 0.75rem; /* 12px */
    color: var(--ink-soft);
  }
  .footer-inner{
    max-width: var(--maxw);
    margin: 0 auto;
    display:flex;
    flex-direction: column;
    align-items:center;
    gap: 18px;
  }
  .footer-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap: 10px 14px;
    padding-bottom: 18px;
    width: 100%;
    position: relative;
  }
  .footer-links::after{
    content:"";
    position:absolute;
    bottom:0; left:50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--line);
  }
  .footer-links a{
    color: var(--ink-soft);
    text-decoration:none;
    letter-spacing: 0.03em;
    transition: color .2s ease;
  }
  .footer-links a:hover{ color: var(--wine); }
  .footer-links a:not(:last-child)::after{
    content:"|";
    margin-left: 14px;
    color: var(--line);
  }
  .footer-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-inner .lang-menu{ right: auto; left: 50%; transform: translate(-50%, -6px) scale(0.98); }
  .footer-inner .lang-switch.open .lang-menu{ transform: translate(-50%, 0) scale(1); }

  /* ---------- Back to top ---------- */
  .back-to-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: var(--wine);
    color: #FBF7EF;
    border: 1px solid var(--wine);
    cursor: pointer;
    box-shadow: 0 10px 22px -10px rgba(1,17,10,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1), visibility .3s, background .15s ease;
    z-index: 80;
  }
  .back-to-top svg{ width:20px; height:20px; }
  .back-to-top.show{ opacity:1; visibility:visible; transform: translateY(0) scale(1); }
  .back-to-top:hover{ background: var(--wine-deep); transform: translateY(-3px) scale(1.05); }
  .back-to-top:active{ transform: translateY(0) scale(0.95); }
  @media (prefers-reduced-motion: reduce){
    .back-to-top{ transition: opacity .2s ease, visibility .2s; }
    .back-to-top.show{ transform:none; }
    .back-to-top:hover{ transform:none; }
  }
  @media (max-width: 880px){
    .back-to-top{ right:16px; bottom:16px; width:44px; height:44px; }
  }

  /* ---------- Confetti ---------- */
  .confetti-piece{
    position: fixed;
    top:0; left:0;
    width:6px; height:6px;
    border-radius:1px;
    pointer-events:none;
    z-index:999;
    will-change: transform, opacity;
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 880px){
    .hero{ padding: 48px 0 44px; }
    .steps{ grid-template-columns: 1fr; }
    .why-card{ flex-basis: calc(50% - 1px); max-width: calc(50% - 1px); }
    .values-grid{ grid-template-columns: repeat(2, 1fr); }
    .city-cards{ grid-template-columns: repeat(2, 1fr); }

    .nav-burger{ display:flex; }
    .nav-right{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      background: rgb(236,228,212);
      border-bottom: 1px solid var(--line);
      padding: 18px 24px 22px;
      box-shadow: 0 16px 26px -18px rgba(1,17,10,0.3);
      display: none;
    }
    .nav.menu-open .nav-right{ display:flex; }
    .nav-links{ flex-direction:column; align-items:flex-start; gap:14px; margin:0; }
    .nav-links a:not(:last-child)::after{ content:none; }
    .nav-right .btn{ width:100%; }
    .nav-right .lang-switch{ width:100%; }
    .nav-right .lang-trigger{ width:100%; justify-content:center; }
    .nav-right .lang-menu{ position:static; width:100%; box-shadow:none; transform:none; opacity:1; visibility:visible; display:none; margin-top:8px; }
    .nav-right .lang-switch.open .lang-menu{ display:flex; }
  }
  @media (max-width: 520px){
    .why-card{ flex-basis: 100%; max-width: 100%; }
    .values-grid{ grid-template-columns: 1fr; }
    .city-cards{ grid-template-columns: 1fr; }
  }

  /* ---------- Fallback fixed-breakpoint type scale ----------
     Secondary fallback: the clamp() rules already handle fluid
     scaling for every current browser. This block gives browsers
     that don't support clamp() fixed rem sizes instead, split into
     the two breakpoints requested — mobile (<=768px) and tablet
     (769px-1024px). @supports not (...) keeps it from ever running
     (or fighting) alongside the fluid rules above. */
  @supports not (font-size: clamp(1rem, 1vw, 2rem)){
    /* Mobile: phones and small tablets in portrait, <=768px */
    @media (max-width: 768px){
      h1{ font-size: 2rem; }        /* 32px */
      h2{ font-size: 1.75rem; }     /* 28px */
      h3{ font-size: 1.125rem; }    /* 18px */
      h4{ font-size: 1.0625rem; }   /* 17px */
      h5{ font-size: 1rem; }        /* 16px */
      h6{ font-size: 0.9375rem; }   /* 15px */
      body{ font-size: 0.9375rem; } /* 15px */
    }
    /* Tablet: 769px-1024px */
    @media (min-width: 769px) and (max-width: 1024px){
      h1{ font-size: 2.75rem; }     /* 44px */
      h2{ font-size: 2rem; }        /* 32px */
      h3{ font-size: 1.1875rem; }   /* 19px */
      h4{ font-size: 1.0625rem; }   /* 17px */
      h5{ font-size: 1rem; }        /* 16px */
      h6{ font-size: 0.9375rem; }   /* 15px */
      body{ font-size: 1rem; }      /* 16px */
    }
  }
