:root {
  --light: #F5F0F2;
  --base: #EFD9E2;
  --accent: #786828;
  --dark: #2E2A26;
  --logo-gold: #726732;
  --bg: #FAF8F7;
  --text: #2E2A26;
  --text-muted: #7A7470;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 217, 226, 0.4);
}

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

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

nav a:hover { color: var(--accent); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--accent); }
nav a.active::after { width: 100%; }

/* ===== HERO IMAGE ===== */
.hero-img {
  height: 80vh;
  position: sticky;
  top: 0;
  z-index: 0;
  margin-top: 62px;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 4rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}

.page-header p {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 2.2;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 480px;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

/* ===== PRODUCT SECTION ===== */
.products {
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(239, 217, 226, 0.35);
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  border-bottom: 1px solid rgba(239, 217, 226, 0.35);
}

.product-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.5s ease;
}

.product-card:hover {
  background: var(--light);
}

.product-img {
  max-width: 280px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.product-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.product-name-jp {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}

/* ===== LIMITED SECTION ===== */
.limited {
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.limited-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  border-bottom: 1px solid rgba(239, 217, 226, 0.35);
}

.limited-img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
}

.limited-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.limited-card:hover .limited-img img {
  transform: scale(1.03);
}

.limited-info {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.limited-badge {
  font-family: var(--serif);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  align-self: flex-start;
}

.limited-info .product-name {
  font-size: 1.6rem;
  text-align: left;
}

.limited-info .product-name-jp {
  text-align: left;
}

.limited-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-muted);
}

.limited-info .product-price {
  text-align: left;
}

/* ===== GIFT SECTION ===== */
.gift {
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gift-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  border-bottom: 1px solid rgba(239, 217, 226, 0.35);
}

.gift-img {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
}

.gift-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gift-card:hover .gift-img img {
  transform: scale(1.03);
}

.gift-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.gift-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}

.gift-info p {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-muted);
}

.gift-info .product-price {
  text-align: left;
}

/* ===== FEATURE SECTION ===== */
.feature {
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-inner {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  border-bottom: 1px solid rgba(239, 217, 226, 0.35);
}

.feature-block {
  flex: 1;
  padding: 4rem 2.5rem;
}

.feature-divider {
  width: 1px;
  background: rgba(239, 217, 226, 0.5);
}

.feature-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.feature-text {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 2.2;
  color: var(--text-muted);
}

/* ===== SPACER ===== */
.spacer {
  height: 5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 7rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  max-width: 860px;
  margin: 0 auto;
}
.contact-label {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.contact-lead {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.contact-item { text-align: center; }
.contact-item-label {
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-item-value {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-decoration: none;
}
a.contact-item-value:hover { color: var(--accent); }
.contact-item-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.contact-note {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 2;
}

/* ===== FOOTER ===== */
footer {
  padding: 5rem 3rem 3rem;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
}

.footer-col a {
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(239, 217, 226, 0.25);
}

.footer-bottom small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-sns {
  display: flex;
  gap: 1.5rem;
}

.footer-sns a {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-sns a:hover { color: var(--accent); }

/* ===== FOOTER RECRUIT ===== */
.footer-recruit {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(239, 217, 226, 0.25);
  text-align: center;
}
.footer-recruit p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-recruit a {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(120, 104, 40, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}
.footer-recruit a:hover {
  border-bottom-color: var(--accent);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger - hidden on desktop */
.nav-toggle { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  header { padding: 1rem 1.5rem; position: relative; }
  .header-logo img { width: 110px; height: auto; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 22px; height: 14px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
  }
  .nav-toggle span { display: block; width: 100%; height: 1px; background: var(--accent); transition: transform 0.3s ease, opacity 0.3s ease; }
  header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(250,248,247,0.98); backdrop-filter: blur(12px); padding: 1.5rem 2rem 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(239,217,226,0.4); }
  header.nav-open nav { display: flex; }
  nav a { font-size: 0.9rem; letter-spacing: 0.08em; }
  .hero-img { height: 60vh; margin-top: 52px; }
  .page-header { padding: 3rem 1.5rem; }
  .page-header h1 { font-size: 1.8rem; }
  .section-label { padding: 0 1.5rem; }
  .products { padding: 0 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .limited { padding: 0 1.5rem; }
  .limited-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .gift { padding: 0 1.5rem; }
  .gift-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .feature { padding: 0 1.5rem; }
  .feature-inner { flex-direction: column; }
  .feature-divider { width: 100%; height: 1px; }
  .feature-block { padding: 2.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  footer { padding: 4rem 1.5rem 2rem; }
}
