
    /* ===== Reset & Base ===== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --color-black: #000;
      --color-white: #fff;
      --color-gray-50: #f8f8f8;
      --color-gray-100: #f0f0f0;
      --color-gray-200: #e0e0e0;
      --color-gray-400: #999;
      --color-gray-600: #666;
      --color-gray-800: #333;
      --color-teal: #00857c;
      --color-teal-dark: #006b63;
      --font-sans: 'Helvetica Neue', 'Noto Sans JP', Arial, sans-serif;
      --font-serif: 'Tiempos Headline', 'Noto Serif JP', Georgia, 'Times New Roman', serif;
      --max-width: 1280px;
      --header-height: 64px;
    }

    html {
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-sans);
      color: var(--color-black);
      background: var(--color-white);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul {
      list-style: none;
    }

    /* ===== Header ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--color-white);
      border-bottom: 1px solid var(--color-gray-200);
      height: var(--header-height);
    }

    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo a {
      display: flex;
      align-items: center;
    }

    .header-logo img {
      height: 20px;
      width: auto;
    }

    .header-logo .logo-text {
      font-family: var(--font-sans);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .header-nav a {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: color 0.2s;
      position: relative;
    }

    .header-nav a:hover {
      color: var(--color-teal);
    }

    .header-nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--color-teal);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-locale {
      font-size: 13px;
      color: var(--color-gray-600);
      font-weight: 500;
    }

    .header-search {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .header-search svg {
      width: 20px;
      height: 20px;
      stroke: var(--color-black);
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-black);
      margin: 5px 0;
      transition: 0.3s;
    }

    /* ===== Hero / Title Section ===== */
    .page-hero {
      background: var(--color-white);
      text-align: center;
      padding: 80px 24px 64px;
    }

    .page-hero h1 {
      font-family: 'Sohne Wide', 'Helvetica Neue', Arial, sans-serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }

    .page-hero p {
      font-size: 18px;
      color: var(--color-gray-600);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ===== Category Grid ===== */
    .categories-section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .category-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: var(--color-gray-50);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

    .category-card a {
      display: block;
    }

    .category-card-image {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--color-gray-100);
    }

    .category-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover .category-card-image img {
      transform: scale(1.05);
    }

    .category-card-content {
      padding: 28px 32px 32px;
    }

    .category-card-content h2 {
      font-family: var(--font-serif);
      font-size: 28px;
      font-weight: 400;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .category-card-content p {
      font-size: 15px;
      color: var(--color-gray-600);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .category-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-teal);
      transition: gap 0.2s ease;
    }

    .category-link:hover {
      gap: 10px;
    }

    .category-link .arrow {
      transition: transform 0.2s ease;
    }

    /* ===== Featured Products ===== */
    .featured-section {
      background: var(--color-gray-50);
      padding: 80px 0;
    }

    .featured-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px 40px;
    }

    .featured-section .section-header h2 {
      font-family: var(--font-serif);
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .featured-carousel {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 0 24px 24px;
      max-width: calc(var(--max-width) + 48px);
      margin: 0 auto;
      scrollbar-width: none;
    }

    .featured-carousel::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      background: var(--color-white);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    .product-card-image {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: var(--color-gray-100);
    }

    .product-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .product-card:hover .product-card-image img {
      transform: scale(1.05);
    }

    .product-card-info {
      padding: 20px;
    }

    .product-card-info h3 {
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
      line-height: 1.3;
      color: #000;
    }

    .product-card-info p {
      font-size: 13px;
      color: var(--color-gray-600);
      line-height: 1.5;
    }

    /* ===== Product Ranges ===== */
    .ranges-section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 80px 24px;
    }

    .ranges-section .section-header {
      margin-bottom: 40px;
    }

    .ranges-section .section-header h2 {
      font-family: var(--font-serif);
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .range-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .range-card {
      background: var(--color-black);
      color: var(--color-white);
      border-radius: 8px;
      padding: 48px 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 240px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .range-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 133, 124, 0.15) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .range-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    .range-card:hover::before {
      opacity: 1;
    }

    .range-card h3 {
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 8px;
      position: relative;
    }

    .range-card p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      position: relative;
    }

    .range-card .range-link {
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-teal);
      position: relative;
      transition: gap 0.2s ease;
    }

    .range-card .range-link:hover {
      gap: 10px;
    }

    /* ===== Footer ===== */
    .site-footer {
      background: var(--color-black);
      color: var(--color-white);
      padding: 64px 24px 32px;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .footer-newsletter {
      text-align: center;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      margin-bottom: 48px;
    }

    .footer-newsletter h3 {
      font-family: var(--font-serif);
      font-size: 28px;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .footer-newsletter p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 24px;
    }

    .newsletter-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
      gap: 8px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 4px;
      background: transparent;
      color: var(--color-white);
      font-size: 14px;
      font-family: var(--font-sans);
      outline: none;
      transition: border-color 0.2s;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-form input:focus {
      border-color: var(--color-teal);
    }

    .newsletter-form button {
      padding: 12px 24px;
      background: var(--color-teal);
      color: var(--color-white);
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font-sans);
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .newsletter-form button:hover {
      background: var(--color-teal-dark);
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      margin-bottom: 32px;
    }

    .footer-column h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.2s;
    }

    .footer-column ul li a:hover {
      color: var(--color-white);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copyright {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--color-white);
    }

    .footer-social svg {
      width: 20px;
      height: 20px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .page-hero h1 {
        font-size: 40px;
      }

      .category-card-content h2 {
        font-size: 24px;
      }

      .range-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .range-grid .range-card:last-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .header-nav {
        display: none;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .page-hero {
        padding: 56px 24px 48px;
      }

      .page-hero h1 {
        font-size: 32px;
      }

      .page-hero p {
        font-size: 16px;
      }

      .category-grid {
        grid-template-columns: 1fr;
      }

      .category-card-content {
        padding: 20px 24px 24px;
      }

      .category-card-content h2 {
        font-size: 22px;
      }

      .featured-section {
        padding: 56px 0;
      }

      .featured-section .section-header h2,
      .ranges-section .section-header h2 {
        font-size: 28px;
      }

      .product-card {
        flex: 0 0 240px;
      }

      .range-grid {
        grid-template-columns: 1fr;
      }

      .range-grid .range-card:last-child {
        grid-column: auto;
      }

      .ranges-section {
        padding: 56px 24px;
      }

      .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      .newsletter-form {
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .page-hero h1 {
        font-size: 28px;
      }

      .footer-columns {
        grid-template-columns: 1fr;
      }
    }
