/* ============================================
   MIVRA PETS — GLOBAL DESIGN SYSTEM
   Scandinavian minimalism · bilingual TR/EN
   ============================================ */

:root {
  /* Neutrals */
  --bg: #F5F1EA;
  --bg-soft: #EDE7DC;
  --bg-warm: #E8DFCF;
  --bg-sage: #E9ECE2;
  --bg-blush: #F1E8DE;
  --line: #D4CBB9;
  --line-soft: #E2D9C8;
  --ink: #2B2824;
  --ink-soft: #3A3632;
  --muted: #8A8178;
  --muted-light: #A89F94;

  /* Sympathetic accents (quiet, Scandinavian) */
  --accent: #6B5D48;       /* warm brown */
  --accent-sage: #7D8A6E;  /* muted sage */
  --accent-clay: #B88A6F;  /* warm clay */
  --accent-gold: #C9B896;  /* soft gold (used on dark) */

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture — linen feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.16 0 0 0 0 0.14 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

/* ============ TOP RIBBON (global shipping hint) ============ */
.ribbon {
  position: relative;
  z-index: 101;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
}

.ribbon-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ribbon-inner .r-left { display: flex; gap: 28px; align-items: center; color: rgba(245,241,234,0.8); }
.ribbon-inner .r-left span { display: inline-flex; align-items: center; gap: 8px; }
.ribbon-inner .r-dot { width: 5px; height: 5px; background: var(--accent-gold); border-radius: 50%; display: inline-block; }
.ribbon-inner .r-right { color: rgba(245,241,234,0.55); font-size: 10px; }
.ribbon-inner .r-right em { color: var(--accent-gold); font-style: normal; font-weight: 500; }

@media (max-width: 640px) {
  .ribbon-inner .r-right { display: none; }
  .ribbon-inner .r-left { font-size: 10px; gap: 16px; }
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(245, 241, 234, 0.0);
  transition: all 0.5s var(--ease);
}

header.scrolled {
  padding: 16px 0;
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
}

.logo span {
  font-style: italic;
  font-weight: 300;
}

nav ul {
  list-style: none;
  display: flex;
  gap: clamp(22px, 3.5vw, 42px);
  align-items: center;
}

nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.4s var(--ease);
}

nav a .en {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
}

@media (max-width: 820px) {
  nav ul { display: none; }
  .mobile-toggle { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
  border-radius: 999px;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: -1;
}

.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }

.btn .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.5s var(--ease);
}

.btn:hover .arrow { transform: translate(3px, -3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-primary::before { background: var(--accent); }
.btn-primary:hover { color: var(--bg); border-color: var(--accent); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--bg); border-color: var(--ink); }

/* ============ SECTION BASE ============ */
section {
  padding: clamp(80px, 13vw, 170px) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}

.section-label .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--accent);
  text-transform: none;
}

.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--muted);
}

.section-label .sep {
  color: var(--muted-light);
  font-weight: 300;
  margin: 0 2px;
}

.section-label .en {
  color: var(--muted-light);
  letter-spacing: 0.3em;
}

/* Bilingual label used inline */
.bi {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.bi .en {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.58em;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

/* ============ FOOTER (shared) ============ */
footer {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
}

.footer-brand .logo { font-size: 28px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 38ch;
  font-weight: 300;
}

.footer-brand .regions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-brand .region-chip {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.footer-col h4 .en {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-light);
  font-weight: 300;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.35s var(--ease), gap 0.4s var(--ease);
}

.footer-col a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease);
}

.footer-col a:hover { color: var(--accent); gap: 14px; }
.footer-col a:hover svg { transform: translate(3px, -3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-bottom .fb-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

.footer-bottom a:hover { color: var(--ink); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }

/* ============ HERO (shared) ============ */
.hero {
  min-height: calc(100vh - 46px);
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.hero-grid-bg::before,
.hero-grid-bg::after {
  content: '';
  position: absolute;
  background: var(--line);
}

.hero-grid-bg::before { left: 8%; top: 0; bottom: 0; width: 1px; }
.hero-grid-bg::after { right: 8%; top: 0; bottom: 0; width: 1px; }

.hero-inner { width: 100%; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--muted);
}

.eyebrow .en {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--accent-sage);
  text-transform: none;
  font-weight: 400;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 15ch;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero h1 .en-line {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.32em;
  color: var(--accent-sage);
  letter-spacing: 0;
  margin-top: 14px;
  line-height: 1.3;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.hero-sub {
  font-size: clamp(15px, 1.25vw, 18px);
  max-width: 44ch;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}

.hero-sub strong { font-weight: 500; color: var(--ink); }
.hero-sub .en {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.92em;
}

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

.scroll-hint {
  position: absolute;
  right: 8%;
  bottom: 32px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 4px;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: var(--muted);
  animation: scrollLine 2.2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 760px) {
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }
}

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--bg-soft);
  position: relative;
}

.manifesto::before,
.manifesto::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.manifesto::before { top: 0; }
.manifesto::after { bottom: 0; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

.manifesto-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.manifesto-head h2 em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.manifesto-head h2 .en-line {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.38em;
  color: var(--accent-sage);
  margin-top: 20px;
  line-height: 1.35;
  font-weight: 300;
}

.manifesto-body p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 24px;
}

.manifesto-body p:last-of-type { margin-bottom: 0; }

.manifesto-body p strong { font-weight: 500; color: var(--ink); }

.manifesto-body .en {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9em;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.manifesto-signature {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.manifesto-signature .sig-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
}

.manifesto-signature .sig-meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ GLOBAL / ATLAS ============ */
.atlas {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.atlas::after {
  /* soft sage wash on the right */
  content: '';
  position: absolute;
  right: -20%;
  top: 0;
  bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse at center, var(--bg-sage) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.atlas .container { position: relative; z-index: 2; }

.atlas-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: clamp(60px, 9vw, 110px);
}

.atlas-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 82px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
}

.atlas-head h2 em {
  font-style: italic;
  color: var(--accent-sage);
}

.atlas-head h2 .en-line {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.34em;
  color: var(--accent-clay);
  margin-top: 16px;
  line-height: 1.3;
  font-weight: 300;
}

.atlas-head .atlas-intro {
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.atlas-head .atlas-intro .en {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95em;
}

.atlas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 820px) {
  .atlas-grid { grid-template-columns: 1fr; }
}

.atlas-item {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: background 0.6s var(--ease);
}

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

@media (max-width: 820px) {
  .atlas-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .atlas-item:last-child { border-bottom: none; }
}

.atlas-item:hover { background: var(--bg-sage); }

.atlas-item .a-idx {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

.atlas-item .a-country {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.atlas-item .a-country em {
  font-style: italic;
  color: var(--accent-sage);
  display: block;
  font-size: 0.58em;
  margin-top: 6px;
}

.atlas-item .a-city {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.atlas-item .a-city .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-clay);
  display: inline-block;
}

.atlas-item .a-coord {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted-light);
  font-weight: 300;
}

.atlas-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.atlas-footer em {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent-sage);
}

/* ============ CATEGORIES ============ */
.categories {
  background: var(--bg);
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: clamp(60px, 9vw, 110px);
}

.cat-header h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 82px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 12ch;
}

.cat-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.cat-header h2 .en-line {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.34em;
  color: var(--accent-sage);
  margin-top: 16px;
  line-height: 1.3;
  font-weight: 300;
}

.cat-header .cat-intro {
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

.cat-header .cat-intro .en {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .cat-grid { grid-template-columns: 1fr; }
}

.cat-item {
  padding: clamp(40px, 6vw, 68px) clamp(24px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  min-height: clamp(340px, 34vw, 460px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.6s var(--ease);
  overflow: hidden;
}

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

@media (max-width: 820px) {
  .cat-item { border-right: none; }
}

.cat-item:nth-child(1):hover { background: var(--bg-warm); }
.cat-item:nth-child(2):hover { background: var(--bg-sage); }
.cat-item:nth-child(3):hover { background: var(--bg-blush); }

.cat-item .cat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
}

.cat-icon {
  width: clamp(80px, 9vw, 120px);
  height: clamp(80px, 9vw, 120px);
  margin: clamp(20px, 3vw, 32px) 0;
  transition: transform 0.7s var(--ease);
}

.cat-item:hover .cat-icon { transform: translateY(-6px); }

.cat-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1;
}

.cat-item h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.cat-item h3 em {
  font-style: italic;
  font-weight: 300;
}

.cat-item .cat-en {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--accent-sage);
  margin-bottom: 14px;
}

.cat-item .cat-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  transition: color 0.5s var(--ease), gap 0.5s var(--ease);
}

.cat-item:hover .cat-cta {
  color: var(--ink);
  gap: 14px;
}

.cat-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.5s var(--ease);
}

.cat-item:hover .cat-cta svg {
  transform: translate(3px, -3px);
}

/* ============ CONTACT / CTA ============ */
.contact {
  background: var(--ink);
  color: var(--bg);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.contact .container { position: relative; z-index: 2; }

.contact .section-label { color: rgba(245, 241, 234, 0.55); }
.contact .section-label::before { background: rgba(245, 241, 234, 0.4); }
.contact .section-label .num { color: var(--accent-gold); }
.contact .section-label .en { color: rgba(245, 241, 234, 0.4); }

.contact h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 20px;
}

.contact h2 em {
  font-style: italic;
  color: var(--accent-gold);
}

.contact h2 .en-line {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.35em;
  color: rgba(201, 184, 150, 0.75);
  margin-top: 16px;
  line-height: 1.3;
  font-weight: 300;
}

.contact-top-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-top-actions .btn {
  border-color: rgba(245,241,234,0.3);
  color: var(--bg);
}

.contact-top-actions .btn::before { background: var(--accent-gold); }
.contact-top-actions .btn:hover { color: var(--ink); border-color: var(--accent-gold); }

.contact-top-actions .btn.alt {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.contact-top-actions .btn.alt::before { background: var(--accent-clay); }
.contact-top-actions .btn.alt:hover { color: var(--bg); border-color: var(--accent-clay); }

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
}

@media (max-width: 820px) {
  .contact-channels { grid-template-columns: 1fr; }
}

.channel {
  padding: clamp(32px, 5vw, 56px) clamp(20px, 3vw, 40px);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
  border-right: 1px solid rgba(245, 241, 234, 0.15);
  text-decoration: none;
  color: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background 0.5s var(--ease);
  min-height: 240px;
}

.channel:last-child { border-right: none; }

@media (max-width: 820px) {
  .channel { border-right: none; }
}

.channel:hover { background: rgba(201, 184, 150, 0.05); }

.channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channel-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}

.channel-icon {
  width: 28px;
  height: 28px;
  color: var(--bg);
  transition: transform 0.6s var(--ease);
}

.channel:hover .channel-icon { transform: rotate(-8deg) scale(1.1); }

.channel-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: auto;
}

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

.channel-title .en {
  display: block;
  font-size: 0.5em;
  font-style: italic;
  color: rgba(201, 184, 150, 0.7);
  margin-top: 6px;
  font-weight: 300;
}

.channel-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 234, 0.75);
  transition: color 0.4s var(--ease);
}

.channel:hover .channel-action { color: var(--bg); }

.channel-action .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.5s var(--ease);
}

.channel:hover .channel-action .arrow { transform: translate(4px, -4px); }

/* ============ SUBPAGE SPECIFIC ============ */
.subpage-hero {
  padding: 120px 0 60px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.subpage-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}

.subpage-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.subpage-hero .en-big {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 48px);
  color: var(--accent-sage);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  display: block;
}

.subpage-hero .crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  text-decoration: none;
  transition: color 0.4s var(--ease), gap 0.4s var(--ease);
}

.subpage-hero .crumb:hover { color: var(--ink); gap: 14px; }

.subpage-hero .crumb svg { width: 14px; height: 14px; }

.subpage-hero p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 52ch;
}

.subpage-hero p .en {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95em;
}

.subpage-hero .big-icon {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 34vw, 440px);
  height: clamp(260px, 34vw, 440px);
  opacity: 0.07;
  pointer-events: none;
}

.subpage-hero .big-icon svg {
  width: 100%; height: 100%;
  stroke: var(--ink); fill: none; stroke-width: 0.6;
}

@media (max-width: 760px) {
  .subpage-hero .big-icon { opacity: 0.05; right: -20%; }
}

/* Collection promise section */
.collection {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .collection-grid { grid-template-columns: 1fr; }
}

.collection-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.collection-head h2 em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.collection-head h2 .en-line {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.4em;
  color: var(--accent-sage);
  margin-top: 18px;
  line-height: 1.35;
  font-weight: 300;
}

.collection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.collection-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 0.4s var(--ease);
}

.collection-list li:first-child { padding-top: 0; }
.collection-list li:last-child { border-bottom: none; }
.collection-list li:hover { padding-left: 12px; }

.collection-list .c-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--muted);
}

.collection-list .c-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.collection-list .c-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-sage);
  margin-left: 10px;
  font-size: 0.75em;
}

.collection-list .c-status {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.collection-list .c-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-clay);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Philosophy trio */
.philo {
  background: var(--bg);
}

.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
}

@media (max-width: 820px) {
  .philo-grid { grid-template-columns: 1fr; }
}

.philo-card .p-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-clay);
  margin-bottom: 24px;
}

.philo-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

.philo-card h3 em {
  font-style: italic;
  color: var(--accent-sage);
  display: block;
  font-weight: 300;
  font-size: 0.7em;
  margin-top: 4px;
}

.philo-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: 14px;
}

.philo-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
