:root {
  --bg: #F4EFE7;
  --surface: #FFFFFF;
  --ink: #14161A;
  --ink-2: #4A4E58;
  --ink-3: #8A8F98;
  --accent: #E63946;
  --accent-2: #FFB703;
  --accent-3: #0A64F4;
  --accent-4: #2A9D8F;
  --line: rgba(20,22,26,.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(20,22,26,.05), 0 8px 24px rgba(20,22,26,.06);
  --shadow-md: 0 4px 12px rgba(20,22,26,.06), 0 24px 60px rgba(20,22,26,.10);
  --ease: cubic-bezier(.22,1,.36,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(244,239,231,.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  position: relative;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.15);
}
.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
}
.logo-mark::before { left: 5px; }
.logo-mark::after { right: 5px; }
.nav-links {
  display: flex;
  gap: 36px;
  font-weight: 500;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease);
}
.icon-btn:hover { background: rgba(20,22,26,.06); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.8; fill: none; }
.cart-badge { position: relative; }
.cart-badge::after {
  content: '3';
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--bg);
}
@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .4s var(--spring), background .3s var(--ease), color .3s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.15); }
}

/* ============ HERO ============ */
.hero {
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 10vw, 140px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 24px 0 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 640px;
}
.hero-visual .card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .8s var(--ease);
}
.hero-visual .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hv-main {
  inset: 0;
  background: linear-gradient(135deg, #FFD866, #E63946);
}
.hv-tag {
  position: absolute;
  left: -16px;
  top: 20%;
  background: var(--surface);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hv-tag .price {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hv-tag .label {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hv-review {
  position: absolute;
  right: -12px;
  bottom: 12%;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite .5s;
}
.hv-review .avatars { display: flex; }
.hv-review .avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -8px;
}
.hv-review .avatars span:first-child { margin-left: 0; background: #E63946; }
.hv-review .avatars span:nth-child(2) { background: #FFB703; }
.hv-review .avatars span:nth-child(3) { background: #0A64F4; }
.hv-review .text {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
}
.hv-review .text small {
  display: block;
  color: var(--ink-3);
  font-weight: 400;
  font-size: 11px;
}

/* ============ MARQUEE ============ */
.marquee {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 400;
  color: var(--ink-2);
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--accent);
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEADS ============ */
section { padding: clamp(70px, 10vw, 140px) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 32px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.section-head p {
  color: var(--ink-2);
  max-width: 340px;
}

/* ============ CATEGORIES (BENTO) ============ */
.categories { background: var(--bg); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .6s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5));
}
.cat-card .cat-body {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 2;
}
.cat-card .cat-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cat-card .cat-body .count {
  font-size: 12px;
  opacity: .85;
  font-family: 'JetBrains Mono', monospace;
}
.cat-1 { grid-column: span 3; grid-row: span 2; }
.cat-2 { grid-column: span 2; grid-row: span 1; }
.cat-3 { grid-column: span 1; grid-row: span 1; }
.cat-4 { grid-column: span 2; grid-row: span 1; }
.cat-5 { grid-column: span 1; grid-row: span 1; }
.cat-6 { grid-column: span 3; grid-row: span 1; }
.cat-7 { grid-column: span 3; grid-row: span 1; }
@media (max-width: 900px) {
  .cat-1, .cat-2, .cat-3, .cat-4, .cat-5, .cat-6, .cat-7 { grid-column: span 1; grid-row: span 1; }
  .cat-1 { grid-column: span 2; grid-row: span 2; }
}
.cat-solid {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-solid.yellow { background: var(--accent-2); color: var(--ink); }
.cat-solid.blue { background: var(--accent-3); color: #fff; }
.cat-solid.green { background: var(--accent-4); color: #fff; }
.cat-solid::after { display: none; }
.cat-solid h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cat-solid .arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  align-self: flex-end;
  transition: transform .4s var(--spring);
}
.cat-solid.yellow .arrow { background: rgba(0,0,0,.1); }
.cat-card:hover .arrow { transform: translate(4px,-4px); }
.cat-solid .arrow svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============ PRODUCTS ============ */
.products { background: var(--surface); }
.prod-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.prod-tab {
  padding: 10px 18px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  transition: all .3s var(--ease);
}
.prod-tab:hover { border-color: var(--ink); color: var(--ink); }
.prod-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.product .thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.product .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product:hover .thumb img { transform: scale(1.05); }
.product .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  background: var(--surface);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product .badge.new { color: var(--accent-4); }
.product .badge.hot { color: var(--accent); }
.product .badge.limited { color: var(--accent-3); }
.product .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.product .fav:hover { background: var(--accent); transform: scale(1.1); }
.product .fav:hover svg { stroke: #fff; fill: #fff; }
.product .fav svg { width: 16px; height: 16px; stroke: var(--ink); stroke-width: 1.8; fill: none; transition: all .3s var(--ease); }

.product .quick-add {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.product:hover .quick-add { opacity: 1; transform: translateY(0); }

.product .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.product h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.product .meta {
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}
.product .price {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.product .price small {
  display: block;
  font-family: 'Inter', sans-serif;
  text-decoration: line-through;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 400;
  text-align: right;
}

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--ink);
  color: #fff;
  border-radius: clamp(24px, 4vw, 48px);
  margin: 0 clamp(20px, 4vw, 48px);
  padding: clamp(60px, 9vw, 120px) clamp(28px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}
.manifesto h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--accent-2);
}
.manifesto p {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 40px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}
.stat {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.stat .num em {
  font-style: italic;
  color: var(--accent-2);
}
.stat .lbl {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-top: 8px;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--accent-2);
  color: var(--ink);
}
.test-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .test-inner { grid-template-columns: 1fr; }
}
.test-inner blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.test-inner blockquote em { font-style: italic; }
.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.test-author .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
}
.test-author .name {
  font-weight: 600;
  font-size: 15px;
}
.test-author .role {
  font-size: 13px;
  color: rgba(20,22,26,.6);
}
.test-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.test-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ NEWSLETTER ============ */
.newsletter { background: var(--bg); }
.news-card {
  background: var(--surface);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(48px, 7vw, 90px) clamp(28px, 5vw, 80px);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230,57,70,.15), transparent 70%);
  filter: blur(40px);
}
.news-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}
.news-card h2 em { font-style: italic; color: var(--accent); }
.news-card p {
  color: var(--ink-2);
  margin-bottom: 32px;
  position: relative;
}
.news-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
  position: relative;
}
.news-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.news-form button {
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: background .3s var(--ease);
}
.news-form button:hover { background: var(--accent); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 780px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-brand h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  max-width: 320px;
}
.foot-brand h3 em { font-style: italic; color: var(--accent-2); }
.foot-brand p { font-size: 14px; max-width: 340px; }
.foot-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col ul a {
  font-size: 14px;
  transition: color .3s var(--ease);
}
.foot-col ul a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ INNER PAGES (about/contact/legal) ============ */
.page-hero {
  padding: clamp(60px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 900px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero .lead {
  margin-top: 28px;
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 640px;
}

.crumbs {
  display: flex;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.crumbs a:hover { color: var(--ink); }

/* ABOUT */
.about-story {
  background: var(--surface);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
}
.about-story h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.about-story h2 em { font-style: italic; color: var(--accent); }
.about-story p {
  color: var(--ink-2);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.about-story .visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-story .visual img { width: 100%; height: 100%; object-fit: cover; }

.values {
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 780px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease);
}
.value:hover { transform: translateY(-4px); }
.value .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 28px;
}
.value h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.value p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.team {
  background: var(--surface);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.member .photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg);
  transition: transform .5s var(--ease);
}
.member:hover .photo { transform: translateY(-4px); }
.member img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
  filter: saturate(0.85);
}
.member:hover img { transform: scale(1.04); filter: saturate(1); }
.member h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.member .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.info-card h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}
.info-card p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.info-card p a { transition: color .3s var(--ease); }
.info-card p a:hover { color: var(--accent); }
.info-card small {
  display: block;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.contact-form {
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
  font-family: 'Inter', sans-serif;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.contact-form button {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: background .3s var(--ease);
}
.contact-form button:hover { background: var(--accent); }

.map {
  background: var(--ink);
  color: #fff;
  padding: 0;
  position: relative;
}
.map .frame {
  aspect-ratio: 21/9;
  background:
    radial-gradient(circle at 30% 40%, rgba(230,57,70,.2), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,183,3,.15), transparent 45%),
    linear-gradient(135deg, #1E2028, #14161A);
  position: relative;
  overflow: hidden;
}
.map .pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.map .pin .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(230,57,70,.2), 0 0 0 20px rgba(230,57,70,.1);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(230,57,70,.2), 0 0 0 20px rgba(230,57,70,.1); }
  50% { box-shadow: 0 0 0 12px rgba(230,57,70,.15), 0 0 0 32px rgba(230,57,70,.05); }
}
.map .pin .lbl {
  background: var(--surface);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* LEGAL PAGES */
.legal {
  background: var(--surface);
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
}
.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal-toc {
  background: var(--bg);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 48px;
  border-left: 3px solid var(--accent);
}
.legal-toc h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  column-count: 2;
  column-gap: 24px;
}
@media (max-width: 560px) { .legal-toc ol { column-count: 1; } }
.legal-toc ol li {
  counter-increment: toc;
  padding: 6px 0;
  font-size: 14px;
  break-inside: avoid;
}
.legal-toc ol li::before {
  content: counter(toc, decimal-leading-zero) ' — ';
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 12px;
}
.legal-toc a:hover { color: var(--accent); }
.legal h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  scroll-margin-top: 100px;
}
.legal h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  margin: 28px 0 12px;
}
.legal p {
  color: var(--ink-2);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 15px;
}
.legal ul, .legal ol {
  padding-left: 20px;
  color: var(--ink-2);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 15px;
}
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .updated {
  padding: 16px 20px;
  background: var(--bg);
  border-radius: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 32px;
  display: inline-block;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.legal table th, .legal table td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.legal table th {
  background: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
