/* System font stack — no CDN required */

:root {
  --bg: #FFFFFF;
  --bg2: #F5F5F5;
  --bg3: #EBEBEB;
  --black: #000000;
  --dark: #111111;
  --dark2: #222222;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B32;
  --text: #111111;
  --text-light: #444444;
  --text-muted: #777777;
  --border: rgba(0,0,0,0.12);
  --border-gold: rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

::selection { background: var(--gold); color: var(--black); }

h1, h2, h3, h4 {
  font-family: 'Big Caslon', 'Caslon', 'Palatino', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #000000;
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.logo {
  font-family: 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 48px; }

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-cta {
  border: 1px solid var(--black) !important;
  padding: 10px 28px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  text-decoration: none;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--black) !important;
  color: var(--bg) !important;
}

.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--black);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content { position: relative; z-index: 2; padding: 0 20px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 36px;
  position: relative;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-eyebrow::before { right: calc(100% + 16px); }
.hero-eyebrow::after { left: calc(100% + 16px); }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-sub {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-tagline {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 60px;
}

.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: var(--black);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--dark2);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 15px 48px;
  border: 1px solid rgba(0,0,0,0.3);
  color: var(--black);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.04);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION BASE ── */
section { padding: 120px 60px; }

.section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--gold-dark); }

.section-desc {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 560px;
}

.divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 32px 0;
  opacity: 0.7;
}

/* ── TICKER ── */
.ticker {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-inner span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  padding: 0 48px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FEATURES ── */
.features { background: var(--bg2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}

.feature-card {
  background: var(--bg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
  border: 1px solid #000000;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.feature-card:hover::before { width: 100%; }

.feature-number {
  font-family: 'Palatino', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.feature-card p {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ── BRANDS ── */
.brands { background: var(--bg); }

.brands-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 32px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #000000;
}

.brand-item {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}

.brand-item:hover { background: var(--bg2); }

.brand-name {
  font-family: 'Palatino', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--black);
  text-transform: uppercase;
  transition: color 0.3s;
}

.brand-item:hover .brand-name { color: var(--gold-dark); }

.brand-category {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── CATEGORIES ── */
.categories { background: var(--bg2); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}

.category-card {
  position: relative;
  padding: 64px 40px;
  background: var(--bg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.3s, background 0.3s;
  border: 1px solid #000000;
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.category-card:hover { background: #FDFCF9; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.category-card:hover::after { height: 100%; }

.category-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 24px;
}

.category-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.category-card p {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.category-arrow {
  position: absolute;
  bottom: 32px; right: 32px;
  color: var(--gold-dark);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── PROMISE ── */
.promise {
  background: var(--black);
  text-align: center;
  padding: 160px 60px;
}

.promise-quote {
  font-family: 'Palatino', 'Hiragino Mincho ProN', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 48px;
}

.promise-quote em { color: var(--gold-light); font-style: normal; }

.promise-sub {
  font-family: 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 0.9rem;
  color: rgba(250,250,248,0.4);
  letter-spacing: 0.15em;
  margin-bottom: 64px;
}

.promise .btn-outline {
  border-color: rgba(250,250,248,0.3);
  color: var(--bg);
}

.promise .btn-outline:hover {
  border-color: var(--bg);
  background: rgba(250,250,248,0.08);
}

/* ── TRUST ── */
.trust {
  background: var(--bg3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.trust-item {
  padding: 80px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-number {
  font-family: 'Palatino', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.trust-unit {
  font-size: 1rem;
  color: var(--gold);
}

.trust-label {
  font-family: 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ── REVIEW ── */
.reviews { background: var(--bg); }

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

.review-card {
  background: var(--bg);
  padding: 48px 40px;
  border: 1px solid #000000;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 24px; left: 32px;
  font-family: 'Palatino', Georgia, serif;
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.5;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.review-text {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 32px;
}

.review-author {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

/* ── CTA ── */
.cta-section {
  background: var(--bg2);
  text-align: center;
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'BRAND STORE DEAREST';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Palatino', Georgia, serif;
  font-size: 10vw;
  font-weight: 300;
  color: rgba(0,0,0,0.03);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 20px;
  color: var(--bg);
}

.footer-brand p {
  font-family: 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 0.82rem;
  color: rgba(250,250,248,0.45);
  line-height: 1.9;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-family: 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 0.85rem;
  color: rgba(250,250,248,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(250,250,248,0.25);
  letter-spacing: 0.1em;
}

.footer-license {
  font-size: 0.68rem;
  color: rgba(250,250,248,0.2);
  letter-spacing: 0.05em;
}

/* ── PAGE HERO (sub pages) ── */
.page-hero {
  padding: 180px 60px 100px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; }

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 480px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-visual-inner {
  font-family: 'Palatino', Georgia, serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

.value-list { list-style: none; margin-top: 32px; }

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.value-list li:first-child { border-top: 1px solid var(--border); }

.value-num {
  font-family: 'Palatino', Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 32px;
}

.value-text h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
}

.value-text p {
  font-family: 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item-icon {
  color: var(--gold-dark);
  font-size: 1.1rem;
  min-width: 24px;
  margin-top: 2px;
}

.contact-item-text h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.contact-item-text p,
.contact-item-text a {
  font-family: 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.7;
}

.contact-item-text a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--bg2);
  padding: 48px;
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 28px; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(250,250,248,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-nav.open { display: flex !important; }

.mobile-nav a {
  font-family: 'Palatino', 'Hiragino Mincho ProN', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--black); }

.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--black);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 80px 40px; }
  header { padding: 0 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 24px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 140px 24px 60px; }
  .contact-form-wrap { padding: 32px 24px; }
  .promise { padding: 100px 24px; }
  .cta-section { padding: 100px 24px; }
}

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
