

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  
  --color-bg:         #0d0a07;
  --color-surface:    #141009;
  --color-surface-2:  #1e1610;
  --color-red:        #c0392b;
  --color-red-dark:   #962020;
  --color-gold:       #c8a84b;
  --color-text:       #e8ddd0;
  --color-muted:      #8a7a6a;
  --color-border:     #2a2018;

  --font-heading: 'Cinzel', serif;
  --font-body:    'Lato', sans-serif;

  --section-pad: 80px 0;
  --max-width: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; background: var(--color-bg); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--alt { background: var(--color-surface); }
.section--alt2 { background: var(--color-surface-2); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 620px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--color-red);
  margin: 20px 0 32px;
}
.divider--center { margin: 20px auto 32px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn--primary:hover { background: var(--color-red-dark); border-color: var(--color-red-dark); }
.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn--outline:hover { background: var(--color-gold); color: var(--color-bg); }
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 7, 0.96);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo { width: 44px; height: 44px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.header-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav-link:hover { color: var(--color-text); border-color: var(--color-red); }
.header-contact-btn {
  font-size: 0.78rem;
  padding: 9px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  gap: 18px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 0.9rem; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,10,7,0.55) 0%, rgba(13,10,7,0.85) 70%, var(--color-bg) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--color-red);
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img-wrap {
  position: relative;
}
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.intro-img-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--color-red);
  z-index: -1;
}
.intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat-item { }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 6px;
}

.yokai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.yokai-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.yokai-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--color-surface);
}
.yokai-card-body { padding: 24px; }
.yokai-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}
.yokai-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 600;
}
.yokai-card-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.lore-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}
.lore-tab {
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-bottom: -1px;
}
.lore-tab:hover { color: var(--color-text); }
.lore-tab.active { color: var(--color-red); border-bottom-color: var(--color-red); }
.lore-panel { display: none; }
.lore-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lore-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.lore-body {}
.lore-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
.lore-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:not(:first-child) img { aspect-ratio: 1/1; }
.gallery-item:nth-child(1) img { aspect-ratio: unset; height: 100%; }

.timeline {
  position: relative;
  margin: 56px auto 0;
  max-width: 600px;
  padding: 0;
}
.timeline::before { display: none; }
.timeline-item {
  position: relative;
  width: 100%;
  margin: 0 auto 24px;
  padding: 32px 32px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.02);
  box-sizing: border-box;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-red);
  border: 2px solid var(--color-bg);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--color-surface);
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.product-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.product-btn {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  padding: 12px 20px;
}

.quote-section {
  background: var(--color-red);
  padding: 80px 0;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 20px;
}
.quote-source {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.faq-list { margin-top: 48px; }
.faq-item {
  border-top: 1px solid var(--color-border);
}
.faq-item:last-child { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text);
  gap: 20px;
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-muted);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 22px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon { width: 20px; height: 20px; color: var(--color-red); }
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.contact-item-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text);
}
.contact-item-value a { color: var(--color-text); }
.contact-item-value a:hover { color: var(--color-gold); }
.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  background: #080604;
  border-top: 1px solid var(--color-border);
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand-col {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { width: 38px; height: 38px; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
}
.footer-brand-name span {
  display: block;
  font-size: 0.58rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.footer-link:hover { color: var(--color-gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--color-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--color-muted);
}
.footer-legal a:hover { color: var(--color-text); }

.img-placeholder {
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.section:not(.hero):not(#contacts):not(.site-footer) {
  text-align: center;
}

.lore-body { text-align: left; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
}
.cookie-banner.show { display: flex; }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner-text a {
  color: var(--color-gold);
}
.cookie-banner-text a:hover {
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.cookie-btn--accept:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}
.cookie-btn--decline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.cookie-btn--decline:hover {
  border-color: var(--color-muted);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-img-wrap { max-width: 480px; }
  .yokai-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .yokai-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .lore-panel.active { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .intro-stats { flex-wrap: wrap; gap: 24px; }
  .timeline { padding-left: 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .lore-tabs { flex-wrap: wrap; }
  .lore-tab { padding: 10px 16px; }
}

.hero img,
.yokai-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* wh-img-fill */
.hero img,
.yokai-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
