:root {
  --wine: #692137;
  --wine-deep: #4a1626;
  --red: #980000;
  --mauve: #7e4153;
  --cream: #faf5ef;
  --cream-deep: #f0e6d8;
  --white: #ffffff;
  --ink: #2a1518;
  --ink-soft: #6b4a50;
  --border: rgba(105, 33, 55, 0.12);
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rokkitt', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.12;
  color: var(--wine-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-filled {
  background: var(--red);
  color: var(--white);
}
.btn-filled:hover {
  background: var(--wine);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--wine-deep);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--red);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  transition: color 200ms ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  font-size: 0.95rem;
  padding: 10px 22px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--wine-deep);
  transition: all 200ms ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: calc(100vh - 68px - 42px);
  gap: 0;
}

.hero-text {
  background: var(--white);
  padding: 70px 60px;
  border-radius: var(--radius);
  margin: 60px 0;
  margin-right: -50px;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 30px rgba(105, 33, 55, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 { margin-bottom: 18px; }

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 30em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  background: var(--wine);
  border-radius: var(--radius) 0 0 var(--radius);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-motif {
  width: 55%;
  max-width: 200px;
  height: auto;
}

.trust {
  background: var(--cream-deep);
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.trust-line {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mauve);
  letter-spacing: 0.02em;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  line-height: 1.8;
}

.trust-line .dot {
  color: var(--red);
  margin: 0 8px;
  font-weight: 700;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 { margin-top: 4px; }

.process {
  padding: 100px 0;
  background: var(--cream);
}

.menu {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.menu-item:first-child { border-top: 1px solid var(--border); }

.menu-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  width: 48px;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

.menu-body h3 {
  margin-bottom: 8px;
  color: var(--wine-deep);
}

.menu-body p {
  font-size: 1.05rem;
  max-width: 50em;
}

.guarantee {
  padding: 100px 0;
  background: var(--cream-deep);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.guarantee-main h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--wine);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 6px;
}

.heart {
  width: 0.7em;
  height: 0.7em;
  color: var(--red);
  display: inline-block;
}

.guarantee-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.callout-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 4px;
}

.callout-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wine-deep);
}

.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 1.08rem; }

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  background: var(--wine);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius);
  text-align: center;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  width: 100%;
  max-width: 340px;
}

.about-icon {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.about-card-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.about-card-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.cta-band {
  background: var(--wine-deep);
  padding: 100px 0;
  text-align: center;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn-filled { background: var(--red); }
.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.footer {
  background: var(--wine-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-brand .brand-icon { color: var(--red); }

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

section[id] { scroll-margin-top: 130px; }

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 101;
  }

  .nav-links.open a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a:last-child { border-bottom: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-text {
    margin: 0;
    padding: 40px 28px;
    box-shadow: 0 4px 20px rgba(105, 33, 55, 0.06);
  }

  .hero-visual {
    min-height: 180px;
    border-radius: var(--radius);
    margin-top: 16px;
  }

  .hero-motif { width: 35%; }

  .guarantee-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process, .guarantee, .about, .cta-band {
    padding: 64px 0;
  }

  .menu-item {
    gap: 20px;
    padding: 28px 0;
  }

  .menu-num {
    width: 36px;
    font-size: 1.2rem;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-text { padding: 32px 22px; }
  .trust-line { font-size: 0.8rem; }
  .trust-line .dot { margin: 0 6px; }
  .brand span { font-size: 1rem; }
}