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

    :root {
      --honey: #C8860A;
      --honey-light: #E9A82A;
      --honey-dark: #6A4500;
      --dark: #2A1F0A;
      --dark2: #3D2C00;
      --cream: #FDF6E8;
      --linen: #F5EBD0;
      --muted: #7A6030;
      --border: #E8D9B8;
      --shadow: rgba(42,31,10,0.13);
    }

    /* ===== Intro overlay: loading + language ===== */
    #intro-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: linear-gradient(160deg, #1A1000 0%, var(--dark) 55%, var(--dark2) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.6s ease;
    }
    #intro-overlay::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V17L28 0l28 17v33z' fill='none' stroke='%23E9A82A' stroke-width='1.5'/%3E%3Cpath d='M28 100L0 83V50l28-17 28 17v33z' fill='none' stroke='%23E9A82A' stroke-width='1.5'/%3E%3Cpath d='M84 66L56 50V17L84 0l28 17v33z' fill='none' stroke='%23E9A82A' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: repeat;
      opacity: 0.05;
      pointer-events: none;
    }
    #intro-overlay.hide {
      opacity: 0;
      pointer-events: none;
    }
    .intro-inner {
      text-align: center;
      padding: 2rem;
      max-width: 460px;
      position: relative;
      z-index: 1;
    }
    .intro-logo {
      font-family: 'Bitter', serif;
      color: var(--cream);
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 2.5rem;
    }
    .intro-logo span { color: var(--honey-light); }

    .intro-bee {
      width: 72px;
      height: auto;
      margin: 0 auto 1.4rem;
      display: block;
      overflow: visible;
    }
    .bee-part {
      opacity: 0;
      animation: beeAppear 0.4s ease forwards;
    }
    .bee-body {
      fill: var(--honey-light);
      stroke: none;
    }
    .bee-stripe {
      stroke: var(--dark);
      stroke-width: 3;
      stroke-linecap: round;
    }
    .bee-wing-l, .bee-wing-r {
      fill: rgba(253, 246, 232, 0.85);
      stroke: none;
    }
    .bee-antenna {
      fill: none;
      stroke: var(--honey-light);
      stroke-width: 2.4;
      stroke-linecap: round;
    }
    /* assemble in quick sequence */
    .bee-body      { animation-delay: 0.05s; }
    .bee-stripe-1  { animation-delay: 0.25s; }
    .bee-stripe-2  { animation-delay: 0.35s; }
    .bee-wing-l    { animation-delay: 0.5s; }
    .bee-wing-r    { animation-delay: 0.5s; }
    .bee-antenna   { animation-delay: 0.65s; }
    @keyframes beeAppear {
      from { opacity: 0; transform: scale(0.6); }
      to   { opacity: 1; transform: scale(1); }
    }
    .bee-part { transform-box: fill-box; transform-origin: center; }
    /* gentle hover once assembled */
    .bee-float { animation: beeFloat 2s ease-in-out 0.9s infinite; transform-origin: center; }
    @keyframes beeFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-4px); }
    }
    .intro-loading-text {
      font-family: 'Karla', sans-serif;
      color: rgba(253,246,232,0.55);
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    @media (max-width: 420px) {
      .intro-logo { font-size: 1.6rem; }
    }

    html {
      scroll-behavior: smooth;
      overflow: hidden;
      height: 100%;
      height: 100dvh;
    }

    body {
      font-family: 'Karla', -apple-system, sans-serif;
      background: var(--cream);
      color: var(--dark);
      font-size: 17px;
      line-height: 1.7;
      overflow: hidden; /* Prevent body scroll */
      height: 100%;
      height: 100dvh;
      display: flex;
      flex-direction: column;
    }

    /* NAV */
    nav {
      background: var(--dark);
      padding: 1rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-family: 'Bitter', serif;
      color: var(--cream);
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
    }

    .logo span { color: var(--honey-light); }

    nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }

    nav ul a {
      color: #E8D9B8;
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      transition: color 0.2s;
      position: relative;
    }

    nav ul a:hover { color: var(--honey-light); }
    nav ul a.active { color: var(--honey-light); border-bottom: 2px solid var(--honey-light); padding-bottom: 2px; }

    .nav-arrow {
      display: inline-block;
      transition: transform 0.3s ease;
      margin-left: 2px;
    }
    nav ul a:hover .nav-arrow {
      transform: translateX(4px);
    }

    /* LANGUAGE SELECTOR */
    .lang-selector {
      position: relative;
      display: inline-block;
    }

    .lang-btn {
      background: transparent;
      border: 1px solid rgba(232, 217, 184, 0.35);
      color: #E8D9B8;
      padding: 0.35rem 0.75rem;
      border-radius: 4px;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .lang-btn:hover {
      color: var(--honey-light);
      border-color: var(--honey-light);
    }

    .lang-chevron {
      font-size: 0.6rem;
      transition: transform 0.2s ease;
    }

    .lang-selector.open .lang-chevron {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: var(--dark2);
      border: 1px solid rgba(232, 217, 184, 0.15);
      border-radius: 4px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.35);
      min-width: 120px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
      z-index: 150;
      overflow: hidden;
    }

    .lang-dropdown.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      background: transparent;
      border: none;
      color: #C9B98A;
      padding: 0.55rem 1rem;
      text-align: left;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .lang-option:hover {
      background: rgba(200, 134, 10, 0.15);
      color: var(--honey-light);
    }

    .lang-option.active {
      background: var(--honey);
      color: var(--cream);
    }

    /* SLIDING TRANSITION STRUCTURE */
    .page-container {
      flex-grow: 1; /* Fills remaining height */
      height: 0;    /* Force flex box to constrain height */
      min-height: 0; /* Prevent stretching beyond viewport */
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .page-slider {
      display: flex;
      width: 200%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
      will-change: transform;
    }

    .page-view {
      width: 50%;
      height: 100%;
      flex-shrink: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    /* FLOATING ARROW BUTTON */
    .slide-arrow {
      position: fixed;
      top: 50%;
      width: 54px;
      height: 54px;
      background: rgba(42, 31, 10, 0.65);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1.5px solid rgba(232, 217, 184, 0.35);
      border-radius: 50%;
      color: var(--honey-light);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 90;
      transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    }

    .slide-arrow.arrow-right {
      right: 25px;
      left: auto;
      transform: translateY(-50%);
    }

    .slide-arrow.arrow-left {
      left: 25px;
      right: auto;
      transform: translateY(-50%) rotate(180deg);
    }

    .slide-arrow:hover {
      background: var(--honey);
      color: var(--cream);
      border-color: var(--cream);
      box-shadow: 0 6px 20px rgba(200, 134, 10, 0.45);
    }

    .slide-arrow.arrow-right:hover {
      transform: translateY(-50%) translateX(5px);
    }

    .slide-arrow.arrow-left:hover {
      transform: translateY(-50%) translateX(-5px) rotate(180deg);
    }

    /* HERO */
    .hero {
      background: linear-gradient(160deg, #1A1000 0%, var(--dark) 50%, var(--dark2) 100%);
      color: var(--cream);
      padding: 6rem 2.5rem 5rem;
      text-align: center;
    }

    .hero-about {
      padding: 5rem 2.5rem 4rem;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--honey-light);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .hero h1 {
      font-family: 'Bitter', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      line-height: 1.15;
      margin-bottom: 1.3rem;
      font-weight: 700;
    }

    .hero-about h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      color: #C9B98A;
      max-width: 560px;
      margin: 0 auto 0.5rem;
      font-style: italic;
    }

    .hero-about p {
      max-width: 520px;
      margin: 0 auto;
    }

    .hero-badges {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 2.2rem;
      flex-wrap: wrap;
    }

    .hero-badges .badge {
      opacity: 0;
      animation: badgeSlideDown 0.5s ease forwards;
    }
    .hero-badges .badge:nth-child(1) { animation-delay: 0.15s; }
    .hero-badges .badge:nth-child(2) { animation-delay: 0.28s; }
    .hero-badges .badge:nth-child(3) { animation-delay: 0.41s; }
    .hero-badges .badge:nth-child(4) { animation-delay: 0.54s; }

    @keyframes badgeSlideDown {
      from { opacity: 0; transform: translateY(-14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .badge {
      background: var(--dark2);
      color: var(--honey-light);
      font-size: 0.75rem;
      padding: 0.4rem 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 2px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    a.badge:hover {
      background: var(--honey);
      color: var(--cream);
      transform: translateY(-2px);
    }

    .frame-flash {
      animation: frameFlash 1.6s ease;
      border-radius: 4px;
    }
    @keyframes frameFlash {
      0%   { box-shadow: 0 0 0 0 rgba(200,134,10,0); }
      20%  { box-shadow: 0 0 0 7px rgba(200,134,10,0.85), 0 0 22px rgba(233,168,42,0.55); }
      45%  { box-shadow: 0 0 0 4px rgba(200,134,10,0.35), 0 0 10px rgba(233,168,42,0.25); }
      65%  { box-shadow: 0 0 0 7px rgba(200,134,10,0.75), 0 0 18px rgba(233,168,42,0.45); }
      100% { box-shadow: 0 0 0 0 rgba(200,134,10,0); }
    }

    /* SECTIONS */
    section { padding: 4.5rem 2.5rem; }
    
    #about-view section { max-width: 960px; margin: 0 auto; }
    #about-view section.full { max-width: 100%; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--honey);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    h2 {
      font-family: 'Karla', sans-serif;
      font-size: 1.9rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 0.8rem;
      color: var(--dark);
      line-height: 1.25;
    }

    .divider {
      width: 42px;
      height: 3px;
      background: var(--honey);
      margin-bottom: 2.2rem;
      border-radius: 2px;
    }

    .vat-note {
      display: inline-block;
      background: var(--cream);
      border: 1px solid var(--honey);
      color: var(--honey-dark);
      font-size: 0.85rem;
      font-style: italic;
      font-weight: 600;
      padding: 0.4rem 1rem;
      border-radius: 4px;
      margin-bottom: 2rem;
    }

    /* =============================================
       SECTION DECOR — minimalistic & shared
    ============================================= */
    /* light sections get a faint honeycomb wash + a thin honey rule on top */
    .decor {
      position: relative;
      overflow: hidden;
    }
    .decor > * { position: relative; z-index: 1; }

    /* faint honeycomb texture, drifting top-right */
    .decor::before {
      content: '';
      position: absolute;
      top: -40px; right: -50px;
      width: 280px; height: 280px;
      opacity: 0.05;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V17L28 0l28 17v33z' fill='none' stroke='%23C8860A' stroke-width='1.5'/%3E%3Cpath d='M28 100L0 83V50l28-17 28 17v33z' fill='none' stroke='%23C8860A' stroke-width='1.5'/%3E%3Cpath d='M84 66L56 50V17L84 0l28 17v33z' fill='none' stroke='%23C8860A' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: repeat;
      pointer-events: none;
    }

    /* thin honey gradient rule across the very top */
    .decor::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--honey) 35%, var(--honey-light) 50%, var(--honey) 65%, transparent);
      opacity: 0.55;
      pointer-events: none;
    }

    /* PRODUCTS */
    .products { background: linear-gradient(165deg, var(--cream) 0%, var(--linen) 55%, #EFE2C2 100%); }

    .product-block { margin-bottom: 3rem; }

    .product-title {
      font-family: 'Bitter', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.3rem;
    }

    .product-desc {
      font-size: 0.88rem;
      color: #5E4A1E;
      font-style: italic;
      margin-bottom: 1rem;
    }

    /* TABLES */
    .table-container {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 1.5rem;
      border-radius: 3px;
      box-shadow: 0 2px 8px var(--shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      background: var(--cream);
    }

    thead { background: var(--dark); color: var(--cream); }

    thead th {
      padding: 0.7rem 1rem;
      text-align: left;
      font-weight: 600;
      letter-spacing: 0.04em;
      font-size: 0.78rem;
      text-transform: uppercase;
    }

    tbody tr { border-bottom: 1px solid var(--border); }
    tbody tr:last-child { border-bottom: none; }

    tbody td { padding: 0.65rem 1rem; }

    tbody tr:hover { background: #FDF0D0; }

    .td-type { font-weight: 600; color: var(--honey-dark); }
    .td-price { color: var(--honey); font-weight: 600; }

    /* SPECIAL */
    .special-block {
      background: var(--cream);
      border: 2px solid var(--honey);
      border-radius: 4px;
      padding: 1.3rem 1.8rem;
      margin-bottom: 3rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .special-price {
      font-family: 'Bitter', serif;
      font-size: 2.2rem;
      color: var(--honey);
      font-weight: 700;
      line-height: 1;
    }

    .special-label {
      font-family: 'Bitter', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
    }

    .special-sub { font-size: 0.85rem; color: var(--muted); font-style: italic; }

    /* DISCOUNTS */
    .discounts {
      background: var(--dark2);
      border-radius: 4px;
      padding: 1.6rem 2rem;
      margin-top: 0.5rem;
    }

    .discounts h3 {
      color: var(--honey-light);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 1.1rem;
      font-weight: 600;
    }

    .discount-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 360px;
      margin-bottom: 0.6rem;
      padding-bottom: 0.6rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .discount-row:last-child { border-bottom: none; margin-bottom: 0; }

    .discount-qty { color: #C9B98A; font-size: 0.95rem; }
    .discount-val { color: var(--honey-light); font-weight: 700; font-size: 1.1rem; }

    .note-box {
      background: var(--dark);
      color: var(--cream);
      border-radius: 4px;
      padding: 1.3rem 1.8rem;
      margin-top: 2rem;
      font-style: italic;
      font-size: 0.95rem;
      text-align: center;
      line-height: 1.7;
    }

    .note-box strong { color: var(--honey-light); font-style: normal; }

    /* =============================================
       ABOUT PAGE — FULL REDESIGN
       Aesthetic: Natural luxury · Beekeeper craft
    ============================================= */

    /* ABOUT HERO — immersive dark panel */
    #about-view .hero.hero-about {
      background: linear-gradient(160deg, #1A1000 0%, #2A1F0A 55%, #3D2800 100%);
      position: relative;
      overflow: hidden;
      padding: 5.5rem 2.5rem 5rem;
      text-align: center;
    }

    #about-view .hero.hero-about::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(200,134,10,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(233,168,42,0.08) 0%, transparent 55%);
      pointer-events: none;
    }

    /* Honeycomb decorative SVG pattern */
    #about-view .hero.hero-about::after {
      content: '';
      position: absolute;
      top: -30px; right: -40px;
      width: 320px; height: 320px;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V17L28 0l28 17v33z' fill='none' stroke='%23E9A82A' stroke-width='1.5'/%3E%3Cpath d='M28 100L0 83V50l28-17 28 17v33z' fill='none' stroke='%23E9A82A' stroke-width='1.5'/%3E%3Cpath d='M84 66L56 50V17L84 0l28 17v33z' fill='none' stroke='%23E9A82A' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: repeat;
      pointer-events: none;
    }

    #about-view .hero.hero-about > * { position: relative; z-index: 1; }

    #about-view .hero-about h1 {
      font-family: 'Bitter', serif;
      font-size: clamp(2.4rem, 6vw, 4rem);
      color: var(--cream);
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
      animation: aboutFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
      animation-delay: 0.1s;
    }

    #about-view .hero-about .hero-eyebrow {
      animation: aboutFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
      animation-delay: 0s;
    }

    #about-view .hero-about > p {
      animation: aboutFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
      animation-delay: 0.2s;
    }

    /* Decorative honey line under hero */
    .about-hero-line {
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--honey-light), transparent);
      margin: 1.6rem auto 0;
      animation: aboutFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
      animation-delay: 0.3s;
    }

    @keyframes aboutFadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ---- STORY SECTION ---- */
    .about-story {
      padding: 5rem 2.5rem;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .about-story::before {
      content: '"';
      font-family: 'Bitter', serif;
      font-size: 28rem;
      color: var(--honey);
      opacity: 0.035;
      position: absolute;
      top: -6rem; left: -2rem;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .about-story::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--honey) 35%, var(--honey-light) 50%, var(--honey) 65%, transparent);
      opacity: 0.55;
      pointer-events: none;
    }

    .about-story-inner {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-story-left {
      background: rgba(255, 252, 245, 0.7);
      padding: 2rem 2.2rem;
      border-radius: 8px;
      box-shadow: 0 2px 18px rgba(42, 31, 10, 0.06);
    }

    .about-story-left .section-label { margin-bottom: 0.5rem; }

    .about-story-left h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .story-body {
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.85;
      margin-top: 1.5rem;
    }

    .story-body p { margin-bottom: 1.1rem; }
    .story-body p:last-child { margin-bottom: 0; }

    /* Inviting closing line in the story */
    .story-cta-line {
      margin-top: 1.6rem;
      font-family: 'Bitter', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--honey-dark);
      line-height: 1.4;
      border-left: 3px solid var(--honey);
      padding-left: 1.2rem;
    }

    /* INTERNATIONAL PARTNERS */
    .partners {
      background: var(--cream);
      padding: 5rem 2.5rem;
    }
    .partners-inner { max-width: 960px; margin: 0 auto; text-align: center; }
    .partners-inner .section-label,
    .partners-inner .divider { }
    .partners-inner .divider { margin-left: auto; margin-right: auto; }
    .partners-text {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 560px;
      margin: 0 auto 2.2rem;
    }
    .partners-flags {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .partner-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      background: var(--linen);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.6rem 1.4rem;
      font-family: 'Bitter', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--dark);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .partner-chip:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(42,31,10,0.12);
      border-color: var(--honey);
    }
    .partner-flag { font-size: 1.3rem; line-height: 1; }

    /* Photo frame — right column */
    .about-photo-frame {
      position: relative;
    }

    .photo-placeholder {
      background: linear-gradient(135deg, var(--linen) 0%, #EEE0C0 100%);
      border: none;
      border-radius: 3px;
      aspect-ratio: 4/3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #B8A880;
      font-size: 0.85rem;
      text-align: center;
      gap: 0.6rem;
      position: relative;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(200,134,10,0.15),
        0 8px 32px rgba(42,31,10,0.14),
        0 2px 8px rgba(42,31,10,0.08);
    }

    /* Corner accents on photo */
    .photo-placeholder::before, .photo-placeholder::after {
      content: '';
      position: absolute;
      width: 28px; height: 28px;
      border-color: var(--honey);
      border-style: solid;
    }
    .photo-placeholder::before {
      top: 12px; left: 12px;
      border-width: 2px 0 0 2px;
    }
    .photo-placeholder::after {
      bottom: 12px; right: 12px;
      border-width: 0 2px 2px 0;
    }

    .photo-placeholder .ph-icon { font-size: 2.8rem; opacity: 0.35; }
    .photo-placeholder .ph-text { font-style: italic; opacity: 0.6; font-size: 0.82rem; }

    /* Decorative offset badge on photo */
    .photo-badge {
      position: absolute;
      bottom: -16px;
      left: -16px;
      background: var(--honey);
      color: var(--cream);
      font-family: 'Bitter', serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.55rem 1.1rem;
      border-radius: 2px;
      box-shadow: 0 4px 14px rgba(200,134,10,0.4);
    }

    .photo-real {
      border-radius: 3px;
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      padding: 6px;
      background: var(--cream);
      border: 1px solid var(--honey);
      box-shadow:
        0 0 0 6px rgba(200,134,10,0.12),
        0 10px 32px rgba(42,31,10,0.22);
    }

    /* ---- STATS BAR — reimagined ---- */
    .stats-bar {
      background: var(--dark);
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(200,134,10,0.07) 0%, transparent 50%, rgba(200,134,10,0.04) 100%);
      pointer-events: none;
    }

    .stats-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .stat-item {
      padding: 3rem 1.5rem;
      position: relative;
      transition: background 0.3s ease;
    }

    .stat-item:hover {
      background: rgba(200,134,10,0.07);
    }

    /* Vertical dividers between stats */
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(232,217,184,0.1);
    }

    .stat-num {
      font-family: 'Bitter', serif;
      font-size: 2.8rem;
      color: var(--honey-light);
      font-weight: 700;
      line-height: 1;
      margin-bottom: 0.5rem;
      display: block;
    }

    .stat-lbl {
      font-size: 0.72rem;
      color: #907040;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
      display: block;
    }

    /* ---- VALUES ---- */
    .values { background: var(--linen); padding: 5rem 2.5rem; }
    .values.full { background: var(--linen); }
    .values-inner { max-width: 960px; margin: 0 auto; }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 1.2rem;
      margin-top: 2.5rem;
    }

    .value-card {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      padding: 2rem 1.8rem;
      border-radius: 3px;
    }

    /* Card 1 — full-width dark feature */
    .val-lead {
      grid-column: 1 / -1;
      background: var(--dark);
      flex-direction: row;
      align-items: flex-start;
      gap: 1.6rem;
      padding: 2.4rem 2.5rem;
    }
    .val-lead .value-icon-wrap {
      width: 54px; height: 54px;
      background: var(--honey);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .val-lead .value-title {
      font-family: 'Bitter', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.4rem;
    }
    .val-lead .value-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* Cards 2 & 4 — minimal, top accent line only */
    .val-side {
      background: transparent;
      border-top: 3px solid var(--honey);
      padding: 1.6rem 1rem;
    }
    .val-side .value-icon-wrap { font-size: 1.6rem; line-height: 1; }
    .val-side .value-title {
      font-family: 'Bitter', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.3rem;
    }
    .val-side .value-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

    /* Card 3 — center, honey-tinted */
    .val-center {
      background: var(--honey);
      padding: 2rem 1.8rem;
      box-shadow: 0 4px 18px rgba(180,120,20,0.15);
    }
    .val-center .value-icon-wrap {
      width: 46px; height: 46px;
      background: var(--dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .val-center .value-title {
      font-family: 'Bitter', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }
    .val-center .value-desc { font-size: 0.9rem; color: rgba(42,31,10,0.75); line-height: 1.6; }

    /* ---- GALLERY — refined ---- */
    .gallery { background: var(--cream); padding: 5rem 2.5rem; }
    .gallery.full { background: var(--cream); }
    .gallery-inner { max-width: 960px; margin: 0 auto; }

    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
    }

    .gallery-item:first-child {
      grid-row: 1 / 3;
    }

    .gallery-item .photo-placeholder {
      aspect-ratio: unset;
      height: 100%;
      min-height: 180px;
    }

    .gallery-photo {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 180px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:first-child .gallery-photo {
      min-height: 360px;
    }

    .gallery-item:hover .gallery-photo {
      transform: scale(1.05);
    }

    .gallery-item:first-child .photo-placeholder {
      min-height: 360px;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(0deg, rgba(26,16,0,0.75) 0%, transparent 100%);
      color: var(--honey-light);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 1.5rem 1rem 0.8rem;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .gallery-item:hover .gallery-caption { opacity: 1; }

    /* ---- CTA — dark editorial ---- */
    .cta { background: var(--dark); padding: 5.5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
    .cta.full { background: var(--dark); }

    .cta::before {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,134,10,0.1) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
    .cta h2 { color: var(--cream); margin-bottom: 0.8rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
    .cta .section-label { color: var(--honey-light); }
    .cta p { color: #A08040; font-style: italic; margin-bottom: 2.5rem; font-size: 1.1rem; }

    .btn {
      display: inline-block;
      background: var(--honey);
      color: var(--cream);
      padding: 0.9rem 2.4rem;
      text-decoration: none;
      font-family: 'Karla', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.08em;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      border-radius: 2px;
      box-shadow: 0 4px 18px rgba(200,134,10,0.3);
    }

    .btn:hover {
      background: var(--honey-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200,134,10,0.45);
    }

    /* ---- RESPONSIVE: ABOUT ---- */
    @media (max-width: 680px) {
      .about-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-story-left { padding: 1.5rem 1.4rem; }
      .about-story::before { font-size: 16rem; top: -3rem; left: -1rem; }
      .photo-badge { bottom: -12px; left: -8px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after { display: none; }
      .stat-item:not(:last-child)::after { display: block; }
      .stat-item:nth-child(2)::after { display: none; }
      .values-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .gallery-item:first-child { grid-row: auto; }
      .gallery-item:first-child .photo-placeholder { min-height: 220px; }
      .gallery-item .photo-placeholder { min-height: 160px; }
      .gallery-item:first-child .gallery-photo { min-height: 220px; }
      .gallery-photo { min-height: 200px; }
    }

    .btn {
      display: inline-block;
      background: var(--honey);
      color: var(--cream);
      padding: 0.85rem 2.2rem;
      text-decoration: none;
      font-family: 'Karla', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.06em;
      transition: background 0.2s;
      border-radius: 2px;
    }

    .btn:hover { background: var(--honey-light); }

    /* CONTACT */
    .contact { background: var(--dark); color: var(--cream); text-align: center; }

    .contact h2 { color: var(--cream); margin-bottom: 0.7rem; }

    .contact > p {
      color: #C9B98A;
      font-style: italic;
      margin-bottom: 2.5rem;
      font-size: 1.05rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-card {
      background: var(--dark2);
      border-radius: 4px;
      padding: 1.5rem 1rem;
      text-align: center;
      transition: background 0.2s;
    }

    .contact-card:hover { background: #4A3800; }

    .contact-card a {
      color: inherit;
      text-decoration: none;
    }

    .contact-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }

    .contact-lbl {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--honey-light);
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .contact-val {
      font-size: 1rem;
      color: var(--cream);
      font-weight: 600;
      word-break: break-all;
    }

    .contact-sub { font-size: 0.8rem; color: #A08040; margin-top: 3px; }

    /* FOOTER */
    footer {
      background: #1A1000;
      color: #6A5020;
      text-align: center;
      padding: 1.5rem;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
    }

    /* RESPONSIVE */
    @media (max-width: 680px) {
      nav {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 1.2rem;
      }
      nav ul {
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
      }
      .logo {
        font-size: 1.15rem;
      }
      nav ul a {
        font-size: 0.75rem;
      }
      .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
      }
      .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translate(-50%, -8px);
      }
      .lang-dropdown.open {
        transform: translate(-50%, 0);
      }
      
      section { padding: 3rem 1.2rem; }
      #home-view .hero { padding: 4rem 1.2rem 3rem; }
      #about-view .hero { padding: 4rem 1.2rem 3rem; }
      thead th { font-size: 0.7rem; padding: 0.6rem 0.6rem; }
      tbody td { padding: 0.55rem 0.6rem; font-size: 0.83rem; }
      .special-block { flex-direction: column; gap: 0.5rem; }
      .stats-bar { padding: 0; }
      
      /* Thumb-zone arrow layout on mobile */
      .slide-arrow {
        top: auto;
        bottom: 20px;
        width: 46px;
        height: 46px;
        transform: none;
      }
      .slide-arrow.arrow-right {
        right: 20px;
        left: auto;
      }
      .slide-arrow.arrow-left {
        left: 20px;
        right: auto;
        transform: rotate(180deg);
      }
      .slide-arrow.arrow-right:hover {
        transform: translateX(3px);
      }
      .slide-arrow.arrow-left:hover {
        transform: translateX(-3px) rotate(180deg);
      }
    }
