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

    :root {
      --red:    #b91c1c;
      --red-dk: #7f1d1d;
      --black:  #0f0f0f;
      --white:  #fafafa;
      --cream:  #f5f0e8;
      --border: #d1c7b5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cormorant Garamond', Georgia, serif;
      background: var(--cream);
      color: var(--black);
      font-size: 18px;
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--black);
      border-bottom: 3px solid var(--red);
    }
    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 0;
    }
    nav a {
      display: inline-block;
      padding: 14px 36px;
      color: var(--white);
      text-decoration: none;
      font-family: 'IM Fell English SC', serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-right: 1px solid #2a2a2a;
      transition: background 0.2s, color 0.2s;
    }
    nav a:first-child { border-left: 1px solid #2a2a2a; }
    nav a:hover { background: var(--red); color: var(--white); }

    /* ── BANNER ── */
    .banner {
      background: var(--black);
      color: var(--white);
      padding: 80px 24px 60px;
      text-align: center;
      border-bottom: 5px double var(--red);
      position: relative;
      overflow: hidden;
    }
    .banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(185,28,28,0.12) 0%, transparent 55%),
        radial-gradient(circle at 80% 50%, rgba(185,28,28,0.08) 0%, transparent 55%);
      pointer-events: none;
    }
    .banner-logo {
      width: 180px;
      height: 180px;
      object-fit: contain;
      border-radius: 50%;
      border: 4px solid var(--red);
      background: #fff;
      margin: 0 auto 28px;
      display: block;
      box-shadow: 0 0 0 8px rgba(185,28,28,0.2);
    }
    .banner h1 {
      font-family: 'IM Fell English SC', serif;
      font-size: clamp(2.2rem, 6vw, 4rem);
      letter-spacing: 0.06em;
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .banner-rule {
      width: 120px;
      border: none;
      border-top: 2px solid var(--red);
      margin: 14px auto;
    }
    .banner-sub {
      font-style: italic;
      font-size: 1.15rem;
      color: #d4c9b8;
      letter-spacing: 0.04em;
    }

    /* ── SECTIONS ── */
    section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 32px;
    }
    section + section {
      border-top: 1px solid var(--border);
    }

    .section-heading {
      font-family: 'IM Fell English SC', serif;
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      color: var(--red-dk);
    }
    .section-rule {
      width: 80px;
      border: none;
      border-top: 3px solid var(--red);
      margin: 0 0 36px;
    }

    /* Products grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 28px;
      margin-top: 8px;
    }
    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 4px solid var(--red);
      padding: 28px 24px;
      text-align: center;
      perspective: 1000px;
    }
    .product-card-inner{
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style:preserve-3d;
    }
    .product-card-front{

      text-align: center;
    }
    .product-card-back{
      transform: rotateY(180deg);
      background: var(--white);
      text-align: center;
    }
    .product-card:hover .product-card-inner {
  transform: rotateY(180deg);
}
    .product-card-front, .product-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

    .product-card .icon {
      font-size: 2.8rem;
      margin-bottom: 14px;
      display: block;
    }
    .product-card h3 {
      font-family: 'IM Fell English SC', serif;
      font-size: 1.1rem;
      letter-spacing: 0.07em;
      color: var(--red-dk);
      margin-bottom: 10px;
    }
    .product-card p {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    /* About */
    .about-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    @media (max-width: 680px) {
      .about-columns { grid-template-columns: 1fr; }
    }
    .about-text p + p { margin-top: 18px; }
    .about-badge {
      background: var(--black);
      color: var(--white);
      padding: 32px;
      text-align: center;
      border-left: 6px solid var(--red);
    }
    .about-badge .big-num {
      font-family: 'IM Fell English SC', serif;
      font-size: 4rem;
      color: var(--red);
      display: block;
      line-height: 1;
    }
    .about-badge p {
      font-style: italic;
      color: #ccc;
      margin-top: 8px;
      font-size: 1rem;
    }

    /* Contact */
    #contact { background: var(--white); max-width: 100%; }
    #contact > .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 32px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }
    @media (max-width: 680px) {
      .contact-grid { grid-template-columns: 1fr; }
    }
    .contact-info dl dt {
      font-family: 'IM Fell English SC', serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      color: var(--red-dk);
      margin-top: 20px;
    }
    .contact-info dl dd {
      font-size: 1rem;
      color: #333;
      margin-left: 0;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .contact-form label {
      font-family: 'IM Fell English SC', serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      color: var(--red-dk);
      margin-bottom: 4px;
      display: block;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-bottom: 2px solid var(--red);
      background: var(--cream);
      padding: 10px 14px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--black);
      outline: none;
      transition: border-color 0.2s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--red); }
    .contact-form textarea { resize: vertical; min-height: 120px; }
    .contact-form button {
      align-self: flex-start;
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 13px 36px;
      font-family: 'IM Fell English SC', serif;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: background 0.2s;
    }
    .contact-form button:hover { background: var(--red-dk); }

    /* Footer */
    footer {
      background: var(--black);
      color: #777;
      text-align: center;
      padding: 28px 24px;
      font-size: 0.85rem;
      border-top: 3px solid var(--red);
      font-style: italic;
    }
    footer span { color: var(--red); }


