   :root {
      --bg: #fff6e7;
      --bg-soft: #f1eadc;
      --line: #ddd1bf;
      --text: #231006;
      --text-soft: #3a2618;
      --promo: #4a200f;
      --accent: #efa400;
      --accent-hover: #dd9800;
      --white: #ffffff;
      --container: 1250px;
      --radius-xl: 20px;
      --radius-lg: 16px;
      --shadow-soft: 0 10px 30px rgba(58, 33, 17, 0.06);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    .page {
      width: 100%;
      background: var(--bg);
    }

    .promo-bar {
      background: var(--promo);
      color: var(--white);
      width: 100%;
    }

    .promo-inner {
      max-width: 1240px;
      margin: 0 auto;
      min-height: 46px;
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 44px;
      padding: 0 28px;
    }

    .promo-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0;
      white-space: nowrap;
      text-transform: uppercase;
    }

    .promo-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      flex: 0 0 22px;
    }

    .site-header {
      border-bottom: 1px solid var(--line);
      background: var(--bg);
    }

    .header-inner {
      max-width: 1240px;
      margin: 0 auto;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 130px;
      height: 42px;
      color: #e59e00;
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .brand-placeholder {
      width: 126px;
      height: 34px;
      border-radius: 6px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e59e00;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -0.05em;
    }

    .top-link {
      color: #4d3528;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      line-height: 1;
    }

    .hero {
      padding: 38px 0 34px;
    }

    .hero-inner {
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      align-items: center;
      gap: 74px;
      padding: 0 28px;
    }

    .visual-card {
      width: 100%;
      aspect-ratio: 1.04 / 1;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.02) 18%, rgba(123,86,47,0.05) 44%, rgba(160,125,83,0.12) 100%),
        linear-gradient(180deg, #ebe4d8 0%, #e4dacb 100%);
      box-shadow: var(--shadow-soft);
    }

  /*  .visual-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 46%, rgba(202,187,166,0.85) 0 9%, transparent 10%),
        radial-gradient(circle at 20% 72%, rgba(182,160,131,0.42) 0 10%, transparent 11%),
        radial-gradient(circle at 77% 26%, rgba(186,159,118,0.24) 0 8%, transparent 9%),
        radial-gradient(circle at 86% 72%, rgba(255,255,255,0.9) 0 9%, transparent 10%);
      opacity: 0.9;
    }*/

    .mock-bottle {
      position: absolute;
      left: 50%;
      top: 53%;
      transform: translate(-50%, -50%);
      width: 34%;
      height: 56%;
      z-index: 2;
    }

    .mock-cap {
      width: 78%;
      height: 13%;
      margin: 0 auto;
      border-radius: 16px 16px 10px 10px;
      background: linear-gradient(180deg, #8f402d 0%, #7f3324 100%);
      box-shadow: 0 6px 16px rgba(80, 33, 18, 0.15);
    }

    .mock-neck {
      width: 70%;
      height: 4%;
      margin: 0 auto;
      background: rgba(255,255,255,0.72);
      border-radius: 0 0 8px 8px;
    }

    .mock-body {
      width: 100%;
      height: 83%;
      border-radius: 32px 32px 26px 26px;
      background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,243,236,0.98) 100%);
      border: 1px solid rgba(145, 105, 74, 0.16);
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 26px rgba(67, 36, 17, 0.13);
    }

    .mock-band {
      position: absolute;
      top: 14%;
      left: 0;
      width: 100%;
      height: 12%;
      background: linear-gradient(180deg, #a64836 0%, #963a2b 100%);
    }

    .mock-band::after {
      content: "";
      position: absolute;
      inset: 18% 20%;
      border-radius: 6px;
      border: 2px dashed rgba(255, 213, 91, 0.35);
    }

    .mock-label {
      position: absolute;
      left: 12%;
      right: 12%;
      top: 34%;
      bottom: 14%;
      border-radius: 12px;
      border: 1px dashed rgba(148, 94, 56, 0.28);
      background: rgba(252, 248, 240, 0.7);
    }

    .mock-plate {
      position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 8%;
      border-radius: 999px;
      background: linear-gradient(180deg, #b68355 0%, #9d6d42 100%);
      z-index: 1;
      opacity: 0.9;
    }

    .mock-glass {
      position: absolute;
      right: 7%;
      bottom: 4%;
      width: 13%;
      height: 34%;
      border-radius: 0 0 18px 18px;
      border: 2px solid rgba(232, 228, 220, 0.9);
      background: rgba(255,255,255,0.22);
      z-index: 1;
    }

    .hero-copy {
      max-width: 520px;
      padding-top: 10px;
    }

    .hero-copy h1 {
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: 0.97;
      font-weight: 600;
      letter-spacing: -0.06em;
      color: #1f0c03;
      margin-bottom: 24px;
              font-size: 48px;
        line-height: 48px;
    }

    .hero-copy p {
      font-size: 17px;
      line-height: 1.8;
      font-weight: 500;
      color: #342014;
      max-width: 540px;
      margin-bottom: 32px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 340px;
      min-height: 62px;
      padding: 0 28px;
      border-radius: 16px;
      background: var(--accent);
      color: #fff8ee;
      text-decoration: none;
      font-size: 17px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      box-shadow: 0 8px 18px rgba(239, 164, 0, 0.18);
    }

    .cta-button:hover {
      background: var(--accent-hover);
    }

    @media (max-width: 1100px) {
      .hero-inner {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
      }

      .hero-copy h1 {
        font-size: clamp(2rem, 4.2vw, 3.5rem);
      }
    }

    @media (max-width: 860px) {
      .promo-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 18px;
        min-height: auto;
        justify-items: center;
      }

      .header-inner {
        height: 68px;
        padding: 0 18px;
      }

      .hero {
        padding: 26px 0 28px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 0 18px;
      }

      .visual-card {
        aspect-ratio: 1 / 0.94;
      }

      .hero-copy {
        max-width: 100%;
        padding-top: 0;
      }

      .hero-copy h1 {
        max-width: 14ch;
        margin-bottom: 18px;
      }

      .hero-copy p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
      }

      .cta-button {
        min-width: 100%;
      }
    }

    @media (max-width: 540px) {
      .brand-placeholder {
        width: 112px;
        font-size: 31px;
        font-weight: 600;
      }



      .top-link {
        font-size: 14px; display:none !important;
      }

      .hero-copy h1 {
        font-size: 26px;
        line-height: 0.98;
      }

      .promo-item {
        font-size: 10px;
        text-align: left;
        white-space: normal;
        justify-content: left;
      }

          .promo-inner { 
        justify-items: left;}

      .promo-icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
      }

      .header-inner {
          max-width: 1240px;
          margin: 0 auto;
          height: 74px;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0 32px;
      }

          .hero-copy h1 {
              max-width: 90%;
              margin-bottom: 18px;
          }

              .hero {
        padding: 20px 0 5px;
    }
    


    }


     .accordion-wrap {
      
      border-radius: 12px;
      max-width: 680px;
      margin: 0 auto;
    }

    .acc-item {
      border-bottom: 1px solid #E0D9CC;
      padding: 1.05rem 0;
    }

    .acc-item:last-child {
      border-bottom: none;
    }

    .acc-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      padding: 0;
    }

    .acc-title {
         font-weight: 600;
    font-size: 1.25rem;
    color: #2C2415;
    line-height: 1.5;
    flex: 1;
    }

    .acc-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 300;
      color: #2C2415;
      line-height: 1;
      transition: transform 0.3s ease;
      margin-top: 1px;
      user-select: none;
    }

    .acc-icon.open {
      transform: rotate(45deg);
    }

    .acc-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease, opacity 0.3s ease;
      opacity: 0;
    }

    .acc-body.open {
      max-height: 300px;
      opacity: 1;
    }

    .acc-body-inner {
    padding-top: 0.75rem;
    color: black;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
}
    }