    *, *::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;
    }

    /* Center link group sits in the true middle, independent of logo/lang widths */
    nav .nav-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .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: 2.6rem; align-items: center; }

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

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

    /* Slide-down underline reveal for Products & Contact */
    .nav-reveal::after {
      content: "";
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      height: 2px;
      background: var(--honey-light);
      transform: scaleX(0) translateY(-6px);
      transform-origin: left center;
      opacity: 0;
      transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
    }
    .nav-reveal:hover::after {
      transform: scaleX(1) translateY(0);
      opacity: 1;
    }

    .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: var(--honey);
      border: 1px solid var(--honey-light);
      color: var(--cream);
      padding: 0.45rem 0.9rem;
      border-radius: 6px;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.45rem;
      transition: all 0.2s ease;
      font-family: inherit;
      box-shadow: 0 2px 10px rgba(233, 168, 42, 0.35);
      animation: langPulse 2.6s ease-in-out infinite;
    }

    .lang-btn .lang-globe { font-size: 1.05rem; }

    .lang-btn:hover {
      background: var(--honey-light);
      border-color: var(--cream);
      color: var(--dark);
      box-shadow: 0 3px 14px rgba(233, 168, 42, 0.55);
    }

    /* Gentle pulse to draw a newcomer's eye to language switching */
    @keyframes langPulse {
      0%, 100% { box-shadow: 0 2px 10px rgba(233, 168, 42, 0.3); }
      50% { box-shadow: 0 2px 16px rgba(233, 168, 42, 0.65); }
    }

    .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;
    }

    /* Home hero — building photo as background */
    #home-view .hero {
      position: relative;
      background:
        linear-gradient(160deg, rgba(26,16,0,0.87) 0%, rgba(42,31,10,0.84) 55%, rgba(61,44,0,0.87) 100%),
        url('hero.jpg') center/cover no-repeat;
      padding: 8rem 2.5rem 7rem;
    }


    .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: 0.9rem;
      font-weight: 700;
    }

    /* "Established" marker under the hero title */
    .hero-since {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      margin: 0 auto 1.4rem !important;
      font-style: normal !important;
      font-size: 0.78rem !important;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--honey-light) !important;
      animation: heroSinceIn 0.9s 0.25s both ease-out;
    }
    .hero-since span {
      position: relative;
      font-family: 'Bitter', serif;
      font-weight: 600;
      padding-left: 0.32em; /* offset the letter-spacing on the last char */
    }
    /* small honey drops flanking the text */
    .hero-since span::before,
    .hero-since span::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 7px;
      height: 7px;
      background: var(--honey-light);
      border-radius: 50% 50% 50% 0;
      transform: translateY(-50%) rotate(45deg);
      box-shadow: 0 0 8px rgba(233,168,42,0.6);
    }
    .hero-since span::before { left: -1.5em; }
    .hero-since span::after  { right: -1.2em; }
    .hero-since::before,
    .hero-since::after {
      content: '';
      width: clamp(28px, 8vw, 64px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--honey));
    }
    .hero-since::after { background: linear-gradient(90deg, var(--honey), transparent); }

    @keyframes heroSinceIn {
      from { opacity: 0; letter-spacing: 0.5em; }
      to   { opacity: 1; letter-spacing: 0.32em; }
    }

    .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: rgba(233,168,42,0.08);
      color: var(--honey-light);
      font-size: 0.75rem;
      padding: 0.55rem 1.25rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      border: 1px solid rgba(233,168,42,0.45);
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      backdrop-filter: blur(2px);
      box-shadow: 0 4px 14px -8px rgba(0,0,0,0.6);
      transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    a.badge:hover {
      background: linear-gradient(135deg, var(--honey-light), var(--honey));
      color: #1A1000;
      border-color: var(--honey-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 22px -8px rgba(200,134,10,0.6);
    }

    .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%); }

    /* Card-style pricing "frames" */
    .product-block {
      position: relative;
      background: #FFFDF7;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.8rem 1.8rem 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px -14px var(--shadow);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    /* Honey accent bar across the top of every card */
    .product-block::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--honey) 0%, var(--honey-light) 50%, var(--honey) 100%);
    }

    .product-block:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px -16px rgba(42,31,10,0.28);
      border-color: var(--honey-light);
    }

    .product-title {
      font-family: 'Bitter', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.35rem;
      letter-spacing: -0.01em;
    }

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

    /* TABLES */
    .table-container {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 0;
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      background: #FFFFFF;
      overflow: hidden;
    }

    thead {
      background: linear-gradient(180deg, var(--linen), #EFE2C2);
      color: var(--honey-dark);
    }

    thead th {
      padding: 0.85rem 1.1rem;
      text-align: left;
      font-weight: 700;
      letter-spacing: 0.06em;
      font-size: 0.72rem;
      text-transform: uppercase;
      border-bottom: 2px solid var(--honey-light);
    }

    tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s ease; }
    tbody tr:last-child { border-bottom: none; }
    tbody tr:nth-child(even) { background: #FFFCF4; }

    tbody td { padding: 0.75rem 1.1rem; }

    tbody tr:hover { background: #FDF0D0; }

    .td-type { font-weight: 700; color: var(--honey-dark); }
    .td-price {
      color: var(--honey);
      font-weight: 700;
      font-variant-numeric: tabular-nums;
    }

    /* SPECIAL — featured highlight card */
    .special-block {
      position: relative;
      background: linear-gradient(165deg, #FFFDF7 0%, #FCF3DC 100%);
      border: 2px solid var(--honey);
      border-radius: 18px;
      padding: 1.6rem 2rem;
      margin-bottom: 3rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      box-shadow: 0 14px 36px -16px rgba(200,134,10,0.45);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .special-block:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 44px -16px rgba(200,134,10,0.55);
    }

    /* "Топ" ribbon in the corner */
    .special-block::after {
      content: "★";
      position: absolute;
      top: -14px; right: -14px;
      width: 52px; height: 52px;
      background: var(--honey);
      color: #FFF;
      border-radius: 50%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 0 0 10px 10px;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(200,134,10,0.5);
    }

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

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

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

    /* INTRO LEAD (moved up from old note-box) */
    .products-lead {
      max-width: 640px;
      margin: 0.4rem auto 1.6rem;
      text-align: center;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--honey-dark);
      font-style: italic;
    }
    .products-lead strong { color: var(--honey); font-style: normal; }

    /* BULK DISCOUNTS as honey pills (moved up) */
    .order-discounts {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      margin: 0 auto 1.4rem;
    }
    .order-discounts-title {
      width: 100%;
      text-align: center;
      margin-bottom: 0.3rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .discount-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.5rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #FFFDF7, #FCF3DC);
      border: 1px solid var(--honey-light);
      box-shadow: 0 6px 16px -10px var(--shadow);
      font-size: 0.9rem;
      color: var(--honey-dark);
    }
    .discount-pill b { color: var(--honey); font-weight: 700; }

    /* DISCOUNTS */
    .discounts {
      background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
      border-radius: 18px;
      padding: 1.8rem 2rem;
      margin-top: 0.5rem;
      box-shadow: 0 12px 30px -16px var(--shadow);
    }

    .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: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
      gap: 4.5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-story-left {
      max-width: 46ch;
    }

    /* Editorial label with a leading hairline */
    .about-story-left .section-label {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1.1rem;
    }
    .about-story-left .section-label::before {
      content: '';
      width: 34px;
      height: 1px;
      background: var(--honey);
    }

    /* Serif display headline */
    .about-story-left h2 {
      font-family: 'Bitter', serif;
      font-weight: 700;
      font-size: clamp(2rem, 3.4vw, 2.9rem);
      line-height: 1.08;
      letter-spacing: -0.015em;
      color: var(--dark);
      margin-bottom: 0;
    }

    .story-body {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.78;
      margin-top: 1.6rem;
    }

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

    /* Lead paragraph — larger, darker */
    .story-body p:first-of-type {
      font-size: 1.12rem;
      line-height: 1.6;
      color: var(--dark);
    }

    /* Editorial drop cap */
    .story-body p:first-of-type::first-letter {
      float: left;
      font-family: 'Bitter', serif;
      font-weight: 700;
      font-size: 3.6rem;
      line-height: 0.78;
      padding: 0.4rem 0.7rem 0 0;
      color: var(--honey);
    }

    /* Inviting closing line — pull quote */
    .story-cta-line {
      position: relative;
      margin-top: 2rem;
      padding: 1.1rem 0 0.2rem 1.5rem;
      font-family: 'Bitter', serif;
      font-style: italic;
      font-size: 1.22rem;
      font-weight: 600;
      color: var(--honey-dark);
      line-height: 1.45;
      border-left: 3px solid var(--honey);
    }
    .story-cta-line::before {
      content: '“';
      position: absolute;
      top: -0.6rem;
      left: 0.7rem;
      font-family: 'Bitter', serif;
      font-size: 3rem;
      color: var(--honey);
      opacity: 0.22;
      line-height: 1;
    }

    /* 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);
    }

    /* ---- STORY PHOTO + MINI CAROUSEL ---- */
    .photo-main { position: relative; }

    /* Carousel of the workshop photos — large, framed */
    .mini-carousel { position: relative; }

    .mini-row {
      position: relative;
    }

    .mini-dots {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      margin-top: 1.3rem;
    }

    .mini-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: none;
      cursor: pointer;
      border-radius: 50%;
      background: rgba(200,134,10,0.28);
      transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
    }
    .mini-dot:hover { background: rgba(200,134,10,0.55); }
    .mini-dot.is-active { background: var(--honey); width: 26px; border-radius: 5px; }

    .mini-viewport {
      position: relative;
      min-width: 0;
      border-radius: 4px;
      padding: 8px;
      background: var(--cream);
      border: 1px solid rgba(200,134,10,0.45);
      box-shadow:
        0 0 0 6px rgba(200,134,10,0.08),
        0 22px 48px -18px rgba(42,31,10,0.45),
        0 4px 14px rgba(42,31,10,0.12);
    }

    .mini-slide { display: none; position: relative; }
    .mini-slide.is-active {
      display: block;
      animation: miniSlideIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    @keyframes miniSlideIn {
      from { opacity: 0; transform: translateX(34px) scale(0.99); }
      to   { opacity: 1; transform: translateX(0) scale(1); }
    }

    .mini-img {
      width: 100%;
      aspect-ratio: 3/2;
      object-fit: cover;
      display: block;
      border-radius: 2px;
    }

    .mini-caption {
      position: absolute;
      left: 8px;
      right: 8px;
      bottom: 8px;
      padding: 1.4rem 1rem 0.7rem;
      font-family: 'Bitter', serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--cream);
      background: linear-gradient(to top, rgba(26,16,0,0.82), rgba(26,16,0,0));
      border-radius: 0 0 2px 2px;
    }

    /* Arrows float over the image so the photo fills the column */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      color: var(--dark);
      background: rgba(253,246,232,0.92);
      backdrop-filter: blur(2px);
      border-radius: 50%;
      box-shadow: 0 6px 18px rgba(42,31,10,0.30);
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      z-index: 3;
    }
    .carousel-arrow:hover {
      background: var(--honey);
      color: var(--cream);
      transform: translateY(-50%) scale(1.08);
    }
    .carousel-prev { left: -22px; }
    .carousel-next { right: -22px; }
    .carousel-arrow svg { width: 21px; height: 21px; }

    /* ---- 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: 1040px; margin: 0 auto; }

    /* Dark "workshop slab" that holds advantages + partners */
    .values-panel {
      position: relative;
      overflow: hidden;
      margin-top: 2.6rem;
      padding: 2.6rem 2.6rem 2.4rem;
      border-radius: 18px;
      background:
        radial-gradient(120% 140% at 0% 0%, rgba(233,168,42,0.16), transparent 55%),
        linear-gradient(155deg, #2A1F0A 0%, #221809 60%, #160F03 100%);
      border: 1px solid rgba(233,168,42,0.22);
      box-shadow: 0 30px 60px -28px rgba(20,12,2,0.75);
    }

    /* subtle honeycomb texture */
    .values-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 50% 0, rgba(233,168,42,0.10) 0 2px, transparent 3px),
        radial-gradient(circle at 0 50%, rgba(233,168,42,0.07) 0 2px, transparent 3px);
      background-size: 38px 22px;
      opacity: 0.5;
      pointer-events: none;
    }

    .values-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      z-index: 1;
    }

    /* Borderless tiles separated by hairlines — no more white boxes */
    .value-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 0.85rem;
      padding: 0.4rem 1.6rem;
      transition: transform 0.3s cubic-bezier(0.22,0.61,0.36,1);
    }
    .value-card + .value-card::before {
      content: '';
      position: absolute;
      left: 0; top: 6%;
      height: 88%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(233,168,42,0.30), transparent);
    }
    .value-card:hover { transform: translateY(-4px); }

    .value-icon-wrap {
      width: 50px; height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.45rem;
      border-radius: 14px;
      background: radial-gradient(circle at 32% 28%, rgba(233,168,42,0.40), rgba(233,168,42,0.12));
      border: 1px solid rgba(233,168,42,0.40);
      box-shadow: 0 6px 16px -6px rgba(233,168,42,0.5);
      transition: transform 0.3s ease;
    }
    .value-card:hover .value-icon-wrap { transform: translateY(-2px) rotate(-5deg); }

    .value-title {
      font-family: 'Bitter', serif;
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.28;
      color: var(--cream);
      margin: 0;
    }

    .value-note {
      font-size: 0.82rem;
      line-height: 1.5;
      color: #C9B98A;
      margin: 0;
    }

    /* ---- Merged partners band — footer of the slab ---- */
    .partners-band {
      position: relative;
      z-index: 1;
      margin-top: 2.4rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(233,168,42,0.22);
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 2.5rem;
    }

    .partners-band .section-label { color: var(--honey-light); margin-bottom: 0.4rem; }

    .partners-band-title {
      font-family: 'Bitter', serif;
      font-size: clamp(1.35rem, 2.2vw, 1.8rem);
      font-weight: 700;
      line-height: 1.12;
      color: var(--cream);
      margin: 0 0 0.5rem;
    }

    .partners-band .partners-text {
      color: #B6A678;
      font-size: 0.95rem;
      line-height: 1.55;
      max-width: 42ch;
      margin: 0;
    }

    .partners-band .partners-flags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: flex-end;
    }

    /* Chips restyled for the dark slab */
    .partners-band .partner-chip {
      background: rgba(253,246,232,0.06);
      border: 1px solid rgba(233,168,42,0.30);
      color: var(--cream);
      font-size: 0.92rem;
      padding: 0.5rem 1.1rem;
    }
    .partners-band .partner-chip:hover {
      background: rgba(233,168,42,0.16);
      border-color: var(--honey-light);
      box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    }

    /* ---- 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 { max-width: 100%; }
      .carousel-prev { left: 8px; }
      .carousel-next { right: 8px; }
      .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-panel { padding: 2rem 1.5rem; }
      .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0; }
      .value-card { padding: 0.4rem 1rem; }
      /* hairline dividers only between columns, not rows */
      .value-card + .value-card::before { display: none; }
      .value-card:nth-child(even)::before {
        content: ''; position: absolute; left: 0; top: 6%;
        height: 88%; width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(233,168,42,0.30), transparent);
      }
      .partners-band { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
      .partners-band .partners-text { max-width: 100%; }
      .partners-band .partners-flags { justify-content: center; }
      .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-inner { max-width: 880px; margin: 0 auto; }

    .contact-head { margin-bottom: 2.5rem; }

    .contact-eyebrow { color: var(--honey-light); }

    .contact-lead {
      color: #C9B98A;
      font-style: italic;
      font-size: 1.05rem;
      margin-top: 0.4rem;
    }

    /* Layout: featured phone + list */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      align-items: stretch;
      text-align: left;
    }

    /* Featured phone card */
    .contact-feature {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.4rem;
      padding: 2rem 1.8rem;
      border-radius: 18px;
      color: inherit;
      text-decoration: none;
      background: linear-gradient(160deg, rgba(233,168,42,0.16), rgba(255,255,255,0.02));
      border: 1px solid rgba(233,168,42,0.30);
      box-shadow: 0 10px 28px -16px rgba(0,0,0,0.7);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .contact-feature:hover {
      transform: translateY(-5px);
      border-color: var(--honey-light);
      background: linear-gradient(160deg, rgba(233,168,42,0.24), rgba(255,255,255,0.02));
      box-shadow: 0 20px 38px -18px rgba(200,134,10,0.55);
    }

    .feature-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--honey-light);
      font-weight: 600;
    }

    .feature-number {
      font-family: 'Bitter', serif;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.1;
    }

    .feature-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      margin-top: 0.5rem;
      border-radius: 50%;
      color: var(--honey-light);
      background: radial-gradient(circle at 30% 25%, rgba(233,168,42,0.30), rgba(233,168,42,0.10));
      border: 1px solid rgba(233,168,42,0.35);
      transition: transform 0.25s ease, color 0.25s ease;
    }

    .contact-feature:hover .feature-cta { transform: scale(1.08); color: #FFD37A; }

    .feature-cta svg { width: 20px; height: 20px; }

    .feature-watermark {
      position: absolute;
      right: -18px;
      bottom: -18px;
      width: 130px;
      height: 130px;
      color: rgba(233,168,42,0.10);
      pointer-events: none;
    }

    /* Hairline list */
    .contact-list {
      display: flex;
      flex-direction: column;
      background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid rgba(233,168,42,0.22);
      border-radius: 18px;
      box-shadow: 0 10px 28px -16px rgba(0,0,0,0.7);
      overflow: hidden;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.15rem 1.4rem;
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(233,168,42,0.14);
      transition: background 0.2s ease;
    }

    .contact-list .contact-row:last-child { border-bottom: none; }

    a.contact-row:hover { background: rgba(233,168,42,0.08); }

    a.contact-row:hover .row-arrow { transform: translateX(4px); color: var(--honey-light); }

    .row-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      color: var(--honey-light);
      border-radius: 50%;
      background: radial-gradient(circle at 30% 25%, rgba(233,168,42,0.22), rgba(233,168,42,0.08));
      border: 1px solid rgba(233,168,42,0.28);
    }

    .row-icon svg { width: 20px; height: 20px; }

    .row-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

    .row-lbl {
      font-size: 0.66rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--honey-light);
      font-weight: 600;
    }

    .row-val {
      font-size: 0.98rem;
      color: var(--cream);
      font-weight: 600;
      word-break: break-word;
    }

    .row-muted { color: #A08040; font-weight: 400; }

    .row-arrow {
      margin-left: auto;
      flex-shrink: 0;
      color: #A08040;
      font-size: 1.1rem;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    @media (max-width: 640px) {
      .contact-layout { grid-template-columns: 1fr; }
    }

    /* 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 .nav-center {
        position: static;
        left: auto;
        transform: none;
      }
      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; }
      .product-block { padding: 1.3rem 1.1rem 1.5rem; border-radius: 14px; }
      .special-block { flex-direction: column; gap: 0.5rem; text-align: center; border-radius: 14px; }
      .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);
      }
    }
