/* =========================================================
   BORAN EŞARP — Ana Stil Dosyası
   Editorial-Luxury estetik, Türkçe karakter desteği
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- TOKENS ---------- */
:root {
  --ivory: #F5EFE7;
  --cream: #EADFD0;
  --ink: #1E1A17;
  --charcoal: #2A2623;
  --blush: #D4A59A;
  --rose:  #C18A7F;
  --gold: #A8834B;
  --taupe: #8B7355;
  --muted: #6C615A;
  --line: rgba(30, 26, 23, 0.14);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'DM Serif Display', 'Cormorant Garamond', serif;
  --sans: 'Jost', system-ui, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

/* ---------- HELPERS ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
}
.eyebrow-light {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.h-display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.h-serif { font-family: var(--serif); font-weight: 400; line-height: 1.05; }

/* ---------- ANNOUNCEMENT ---------- */
.announcement {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--blush);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 239, 231, 0.08);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
}
.announcement.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  padding: 10px 0;
  animation: scroll 50s linear infinite;
  gap: 80px;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  color: rgba(245, 239, 231, 0.7);
  font-weight: 300;
}
.marquee span::after {
  content: '✦';
  color: var(--rose);
  opacity: 0.85;
  font-size: 8px;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: top 0.5s cubic-bezier(.2,.8,.2,1),
              padding 0.5s cubic-bezier(.2,.8,.2,1),
              background 0.5s cubic-bezier(.2,.8,.2,1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
  background: rgba(30, 26, 23, 0.22);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid rgba(245, 239, 231, 0.08);
  box-shadow: 0 1px 20px rgba(30, 26, 23, 0.15);
}
body.ann-hidden .header { top: 0; }
body.no-ann .header { top: 0; }

.header.scrolled,
.header.solid {
  background: rgba(30, 26, 23, 0.32);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  padding: 14px 0;
  border-bottom-color: rgba(245, 239, 231, 0.1);
  box-shadow: 0 4px 28px rgba(30, 26, 23, 0.25);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-primary {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color 0.4s ease;
}

.nav-primary a { position: relative; padding: 6px 0; font-weight: 400; }
.nav-primary a::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(.2,.8,.2,1);
}
.nav-primary a:hover::after,
.nav-primary a.active::after { width: 100%; }
.logo {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--ivory);
  text-align: center;
  transition: color 0.4s ease, font-size 0.4s ease;
  line-height: 1;
}
.header.scrolled .logo,
.header.solid .logo { font-size: 32px; }
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.5em;
  margin-top: 2px;
  opacity: 0.8;
  font-weight: 300;
}
.nav-utility {
  display: flex; gap: 18px;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.nav-utility button, .nav-utility a { color: inherit; }
.lang { display: flex; gap: 10px; align-items: center; }
.lang span { opacity: 0.5; cursor: pointer; transition: opacity 0.3s; font-size: 11px; }
.lang span.active, .lang span:hover { opacity: 1; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
}
.icon-btn:hover { opacity: 1; }

.icon-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.menu-toggle { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative; height: 100vh; min-height: 680px; overflow: hidden; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: slowZoom 18s ease-out forwards;
  filter: brightness(0.78) saturate(0.95);
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,26,23,0.15) 0%, rgba(30,26,23,0.05) 40%, rgba(30,26,23,0.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(48px, 10vh, 120px);
  color: var(--ivory);
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: end; gap: 48px;
  max-width: var(--container); margin:50px auto; width: 100%;
}
.hero-title {
  font-size: clamp(40px, 7.5vw, 100px);
  line-height: 0.95; letter-spacing: -0.02em;
}
.hero-title em {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; color: var(--blush);
}
.hero-meta { padding-bottom: 8px; }
.hero-meta p {
  font-family: var(--serif); font-size: 20px; line-height: 1.5;
  max-width: 420px; margin-bottom: 32px;
  font-style: italic; font-weight: 300;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 400;
  border: 1px solid currentColor;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  background: transparent; color: inherit;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ivory);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: transform 0.4s; }
.btn:hover svg { transform: translateX(4px); }
.btn-dark { color: var(--ink); border-color: var(--ink); }
.btn-dark::before { background: var(--ink); }
.btn-dark:hover { color: var(--ivory); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ivory);
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; opacity: 0.8; z-index: 3;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: var(--ivory);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero-index {
  position: absolute; top: 50%; right: var(--gutter);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ivory); z-index: 3; opacity: 0.7;
}

/* ---------- SECTIONS ---------- */
.section { padding: clamp(80px, 12vw, 140px) var(--gutter); }
.section-head-center {
  max-width: 900px; margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.section-head-center .eyebrow {
  display: inline-flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.section-head-center .eyebrow::before,
.section-head-center .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--taupe);
}
.section-title-center {
  font-size: clamp(44px, 6vw, 88px); color: var(--ink);
}
.section-title-center em {
  font-family: var(--serif); font-style: italic; color: var(--rose); font-weight: 300;
}
.section-head {
  max-width: var(--container); margin: 0 auto clamp(48px, 8vw, 96px);
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; align-items: end;
}
.section-title {
  font-size: clamp(48px, 7vw, 104px); color: var(--ink);
}
.section-title em {
  font-family: var(--serif); font-style: italic; color: var(--rose); font-weight: 300;
}

/* ---------- TAB NAV ---------- */
.tab-nav {
  display: flex; justify-content: center;
  gap: 8px; margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.tab-btn {
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
}
.tab-btn::after {
  content: ''; position: absolute;
  bottom: -1px; left: 20%; right: 20%; height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.tab-btn:hover,
.tab-btn.active { color: var(--ink); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; animation: fadeIn 0.5s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
.product { position: relative; display: flex; flex-direction: column; gap: 18px; }
.product-img {
  position: relative; overflow: hidden;
  background: var(--cream); aspect-ratio: 3/4;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1), filter 0.6s;
}
.product:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ivory); padding: 5px 12px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); z-index: 2;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-name {
  font-family: var(--serif); font-size: 20px;
  font-weight: 400; letter-spacing: -0.005em;
  color: var(--ink); margin-bottom: 4px;
}
.product-cat {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--taupe);
}
.view-all-wrap { text-align: center; margin-top: 56px; }

/* ---------- EDITORIAL BANNERS (büyük kare çiftler) ---------- */
.editorial-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 4px;
  margin-bottom: 80px;
}
.banner-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: var(--ink);
}
.banner-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 0.6s;
  filter: brightness(0.9);
}
.banner-card:hover img { transform: scale(1.06); filter: brightness(1); }
.banner-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,26,23,0.55) 100%);
  transition: background 0.5s;
}
.banner-card:hover::after {
  background: linear-gradient(180deg, rgba(30,26,23,0.1) 0%, rgba(30,26,23,0.65) 100%);
}
.banner-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(32px, 4vw, 56px);
  z-index: 2; color: var(--ivory);
}
.banner-label .eyebrow-light { display: block; margin-bottom: 14px; }
.banner-label h3 {
  font-size: clamp(36px, 4.5vw, 68px);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  line-height: 1;
}
.banner-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blush);
  transition: gap 0.3s;
}
.banner-card:hover .banner-cta { gap: 18px; }
.banner-cta svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.4;
}

/* ---------- SMALL TILE ROW (kategori kareleri) ---------- */
.tile-row { padding: 60px 0 clamp(80px, 12vw, 140px); }
.tile-head {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tile-head .eyebrow { display: flex; align-items: center; gap: 14px; }
.tile-head .eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--taupe);
}
.tile-more {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.tile-more:hover { color: var(--rose); }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.tile {
  display: flex; flex-direction: column; gap: 14px;
  text-align: center; transition: transform 0.4s;
}
.tile:hover { transform: translateY(-4px); }
.tile-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  border-radius: 50%;
}
.tile-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.tile:hover .tile-img img { transform: scale(1.1); }
.tile-name {
  font-family: var(--serif); font-size: 17px;
  color: var(--ink); letter-spacing: 0.01em;
}

/* ---------- EDITORIAL ---------- */
.editorial {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) var(--gutter); overflow: hidden;
}
.editorial-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px); align-items: center;
}
.editorial-media { position: relative; aspect-ratio: 4/5; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-media::before {
  content: 'EST. ∙ BURSA ∙ TÜRKİYE';
  position: absolute; top: -32px; left: -32px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.5em; color: var(--taupe);
  writing-mode: vertical-rl; text-orientation: mixed;
}
.editorial-media .frame {
  position: absolute; inset: 24px;
  border: 1px solid rgba(245, 239, 231, 0.4);
  pointer-events: none; z-index: 2;
}
.editorial-text .eyebrow { margin-bottom: 28px; display: inline-block; }
.editorial-title {
  font-size: clamp(44px, 6vw, 88px); line-height: 1.02;
  margin-bottom: 32px; color: var(--ink);
}
.editorial-title em {
  font-family: var(--serif); font-style: italic; color: var(--rose);
}
.editorial-text p {
  font-family: var(--serif); font-size: 18px; line-height: 1.7;
  color: var(--charcoal); margin-bottom: 20px; max-width: 500px;
}
.editorial-text p:first-of-type::first-letter {
  font-family: var(--display); font-size: 80px;
  float: left; line-height: 0.85;
  padding: 6px 12px 0 0; color: var(--rose);
}
.signature {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--taupe);
  margin-top: 32px; margin-bottom: 40px;
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 32px; border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--display); font-size: 40px;
  line-height: 1; color: var(--ink); margin-bottom: 8px;
}
.stat-num sup { font-size: 18px; color: var(--rose); }
.stat-label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe);
}

/* ---------- FEATURES (avantaj ikonları) ---------- */
.features {
  background: var(--ivory);
  padding: clamp(80px, 10vw, 120px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
}
.feature {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
  padding: 0 20px;
}
.feature-icon {
  width: 90px; height: 90px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.feature-icon::after {
  content: ''; position: absolute;
  width: 6px; height: 6px; background: var(--rose);
  top: 10px; right: 10px; border-radius: 50%;
  opacity: 0; transition: opacity 0.4s;
}
.feature:hover .feature-icon::after { opacity: 1; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-title {
  font-family: var(--display); font-size: 26px;
  color: var(--ink); font-weight: 400; line-height: 1;
}
.feature-text {
  font-family: var(--serif); font-size: 16px;
  font-style: italic; color: var(--muted);
  line-height: 1.5; max-width: 280px;
}

/* ---------- QUOTE ---------- */
.quote-section {
  background: var(--ink); color: var(--ivory);
  padding: clamp(100px, 14vw, 180px) var(--gutter);
  position: relative; overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute; top: 40px; left: var(--gutter);
  font-family: var(--display); font-size: 360px; line-height: 0.8;
  color: var(--rose); opacity: 0.15;
}
.quote-inner {
  max-width: 1100px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.quote-inner .eyebrow { color: var(--blush); margin-bottom: 32px; display: inline-block; }
.quote-text {
  font-family: var(--display); font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.25; letter-spacing: 0.005em; margin-bottom: 40px;
}
.quote-text em {
  font-family: var(--serif); font-style: italic;
  color: var(--blush); font-weight: 300;
}
.quote-author {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: rgba(245, 239, 231, 0.7);
}

/* ---------- INSTAGRAM ---------- */
.journal { padding: clamp(80px, 12vw, 160px) 0; background: var(--ivory); }
.journal-head {
  max-width: var(--container); margin: 0 auto 64px;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 48px;
}
.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.ig-tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  cursor: pointer; display: block;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.ig-tile:hover img { transform: scale(1.1); }
.ig-tile::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(30,26,23,0); transition: background 0.4s;
}
.ig-tile:hover::after { background: rgba(30,26,23,0.2); }
.ig-tile .ig-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  opacity: 0; transition: opacity 0.4s; z-index: 2;
}
.ig-tile:hover .ig-icon { opacity: 1; }
.ig-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.2; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) var(--gutter);
  position: relative; overflow: hidden;
}
.newsletter::before,
.newsletter::after {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
}
.newsletter::before { background: var(--blush); top: -100px; left: -100px; }
.newsletter::after  { background: var(--gold);  bottom: -100px; right: -100px; }
.newsletter-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.newsletter .eyebrow { margin-bottom: 24px; display: inline-block; }
.newsletter-title {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 20px; color: var(--ink);
}
.newsletter-title em { font-family: var(--serif); font-style: italic; color: var(--rose); }
.newsletter p {
  font-family: var(--serif); font-size: 17px;
  color: var(--charcoal); margin-bottom: 40px; font-style: italic;
}
.nl-form {
  display: flex; max-width: 520px; margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  gap: 16px; align-items: center;
}
.nl-form input {
  flex: 1; padding: 16px 0; border: none; background: transparent;
  font-family: var(--sans); font-size: 14px;
  letter-spacing: 0.08em; color: var(--ink); outline: none;
}
.nl-form input::placeholder { color: var(--muted); }
.nl-form button {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
  transition: gap 0.3s;
}
.nl-form button:hover { gap: 16px; }
.nl-form button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.nl-disclaimer {
  font-family: var(--sans); font-size: 11px;
  color: var(--muted); margin-top: 20px; letter-spacing: 0.05em;
}

/* ---------- CONTACT SECTION ---------- */
.contact { padding: clamp(80px, 12vw, 160px) var(--gutter); background: var(--ivory); }
.contact-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 96px; align-items: start;
}
.contact-title {
  font-size: clamp(48px, 7vw, 96px); line-height: 1;
  margin: 24px 0 40px; color: var(--ink);
}
.contact-title em { font-family: var(--serif); font-style: italic; color: var(--rose); }
.contact-intro {
  font-family: var(--serif); font-size: 20px; line-height: 1.6;
  color: var(--charcoal); max-width: 520px; margin-bottom: 56px; font-style: italic;
}
.contact-items {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.contact-item { padding-top: 24px; border-top: 1px solid var(--line); }
.contact-item .label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 14px;
}
.contact-item .value {
  font-family: var(--serif); font-size: 22px;
  color: var(--ink); line-height: 1.4; transition: color 0.3s;
}
.contact-item a.value:hover { color: var(--rose); }
.contact-item .value.address { font-size: 17px; line-height: 1.5; }
.contact-card {
  background: var(--ink); color: var(--ivory);
  padding: 56px 48px; position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 280px; height: 280px;
  background: var(--rose); border-radius: 50%;
  filter: blur(60px); opacity: 0.3;
}
.contact-card h3 {
  font-family: var(--display); font-size: 36px;
  margin-bottom: 24px; position: relative; z-index: 2;
}
.contact-card p {
  font-family: var(--serif); font-size: 16px; line-height: 1.6;
  color: rgba(245, 239, 231, 0.85);
  margin-bottom: 40px; position: relative; z-index: 2;
}
.hours {
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--sans); font-size: 13px;
  color: rgba(245, 239, 231, 0.85); position: relative; z-index: 2;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 239, 231, 0.12);
  letter-spacing: 0.05em;
}
.hours-row span:last-child {
  color: var(--blush); font-family: var(--serif);
  font-style: italic; font-size: 15px;
}
.map-link {
  margin-top: 40px;
  display: inline-flex; gap: 10px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blush); position: relative; z-index: 2; transition: gap 0.3s;
}
.map-link:hover { gap: 16px; }
.map-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--ivory);
}
.contact-form h2 {
  font-family: var(--display); font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 40px; color: var(--ink);
}
.cf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--taupe);
}
.field input,
.field textarea {
  border: none; border-bottom: 1px solid var(--ink);
  background: transparent; padding: 14px 0;
  font-family: var(--serif); font-size: 18px;
  color: var(--ink); outline: none;
  transition: border-color 0.3s;
}
.field input:focus,
.field textarea:focus { border-color: var(--rose); }
.field textarea { resize: vertical; min-height: 140px; }
.cf-submit { margin-top: 40px; text-align: right; }

/* ---------- PAGE HERO (mini) ---------- */
.page-hero {
  background: var(--cream);
  padding: 200px var(--gutter) 100px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: var(--blush);
  filter: blur(100px); opacity: 0.35;
  top: 80px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 16px; display: inline-block; position: relative; }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(52px, 8vw, 120px);
  color: var(--ink); line-height: 1; position: relative;
}
.page-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--rose); }

/* ---------- FLASH ---------- */
.flash-wrap {
  position: fixed; top: 80px; right: 32px; z-index: 250;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 340px;
}
.flash {
  padding: 14px 20px;
  background: var(--ink); color: var(--ivory);
  font-family: var(--sans); font-size: 13px;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--rose);
  animation: slideIn 0.4s ease;
}
.flash.success { border-color: #7fb069; }
.flash.error { border-color: #d96b5c; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--ivory); padding: 96px var(--gutter) 32px; }
.footer-top {
  max-width: var(--container); margin: 0 auto 80px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 239, 231, 0.12);
}
.footer-brand .logo-big {
  font-family: var(--display); font-size: 64px; line-height: 1;
  color: var(--ivory); margin-bottom: 24px; letter-spacing: 0.02em;
}
.footer-brand p {
  font-family: var(--serif); font-size: 16px; line-height: 1.6;
  color: rgba(245, 239, 231, 0.7); max-width: 340px;
  margin-bottom: 32px; font-style: italic;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(245, 239, 231, 0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
.socials a:hover { background: var(--ivory); border-color: var(--ivory); }
.socials a:hover svg { stroke: var(--ink); }
.socials svg { width: 14px; height: 14px; stroke: var(--ivory); fill: none; stroke-width: 1.4; transition: stroke 0.3s; }

.footer-col h4 {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 24px; font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--serif); font-size: 16px;
  color: rgba(245, 239, 231, 0.75);
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-col a:hover { color: var(--blush); padding-left: 6px; }
.footer-contact p {
  font-family: var(--serif); font-size: 15px; line-height: 1.6;
  color: rgba(245, 239, 231, 0.75); margin-bottom: 16px;
}
.footer-contact a { color: var(--blush); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.12em; color: rgba(245, 239, 231, 0.5);
}
.footer-bottom .legal { display: flex; gap: 32px; }
.footer-bottom .legal a:hover { color: var(--blush); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed; inset: 0; background: var(--ink); color: var(--ivory);
  z-index: 200; display: flex; flex-direction: column;
  padding: 32px var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 64px;
}
.mobile-nav-close {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory);
}
.mobile-nav-items { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-items a {
  font-family: var(--display); font-size: 40px;
  padding: 12px 0; border-bottom: 1px solid rgba(245, 239, 231, 0.12);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 140px 0 20px;
  background: var(--ivory);
}
.breadcrumb .container {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted); transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); opacity: 1; }

/* ---------- PRODUCT DETAIL ---------- */
.product-detail {
  padding: 32px var(--gutter) clamp(80px, 10vw, 120px);
  background: var(--ivory);
}
.pd-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.pd-media {
  position: relative;
}
.pd-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ivory);
  padding: 8px 16px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink); z-index: 4;
}

.pd-info { padding-top: 20px; }
.pd-cat {
  display: inline-block;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.pd-cat:hover { color: var(--ink); }
.pd-title {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.pd-divider {
  width: 48px; height: 1px;
  background: var(--rose);
  margin-bottom: 28px;
}
.pd-desc {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 40px;
}
.pd-features {
  list-style: none;
  padding: 0; margin: 0 0 48px;
  border-top: 1px solid var(--line);
}
.pd-features li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pd-features .key {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--taupe);
}
.pd-features .val {
  font-family: var(--serif); font-size: 17px;
  color: var(--ink); text-align: right;
}
.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-bottom: 40px;
}
.pd-wa {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s, gap 0.3s;
}
.pd-wa:hover { color: #25D366; gap: 14px; }
.pd-wa svg { width: 18px; height: 18px; }
.pd-share {
  display: flex; align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.pd-share-label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--taupe);
  margin-right: 8px;
}
.pd-share a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.pd-share a:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.pd-share a:hover svg { stroke: var(--ivory); }
.pd-share svg {
  width: 14px; height: 14px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}
.pd-copy {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
  padding: 8px 0;
  transition: color 0.3s;
  cursor: pointer;
}
.pd-copy:hover { color: var(--rose); }
.pd-related { padding-top: 48px; border-top: 1px solid var(--line); }

/* ---------- PRODUCT DETAIL SLIDER ---------- */
.pd-slider {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.pd-slides {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(.7,0,.2,1);
}
.pd-slide {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  overflow: hidden;
}
.pd-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(245, 239, 231, 0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
  opacity: 0;
}
.pd-slider:hover .pd-arrow { opacity: 1; }
.pd-arrow:hover { background: var(--ivory); }
.pd-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--ink); fill: none; stroke-width: 1.6;
}
.pd-prev { left: 16px; }
.pd-next { right: 16px; }

.pd-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.pd-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245, 239, 231, 0.5);
  transition: all 0.3s;
  cursor: pointer;
  padding: 0;
  border: 1px solid rgba(30, 26, 23, 0.2);
}
.pd-dot.active {
  background: var(--ivory);
  width: 24px;
  border-radius: 20px;
  border-color: var(--ivory);
}

.pd-counter {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(30, 26, 23, 0.7);
  color: var(--ivory);
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  z-index: 3;
}

.pd-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
.pd-thumbs::-webkit-scrollbar { height: 4px; }
.pd-thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.pd-thumb {
  flex: 0 0 72px;
  width: 72px; height: 96px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  padding: 0;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: all 0.3s;
  position: relative;
}
.pd-thumb:hover { opacity: 0.85; }
.pd-thumb.active {
  border-color: var(--rose);
  opacity: 1;
}
.pd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .nav-primary { display: none; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 28px; align-items: flex-start;
  }
  .menu-toggle span {
    width: 100%; height: 1px; background: var(--ivory);
    transition: background 0.3s;
  }

  .menu-toggle span:nth-child(2) { width: 70%; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-utility .icon-btn span { display: none; }
  .lang { font-size: 10px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-scroll, .hero-index { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .editorial-banners { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .editorial-grid { grid-template-columns: 1fr; gap: 48px; }
  .tab-btn { padding: 14px 16px; font-size: 11px; letter-spacing: 0.22em; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-tile:nth-child(n+7) { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-items { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-bottom .legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .journal-head { flex-direction: column; align-items: flex-start; }
  .cf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 40px; }
  .breadcrumb { padding-top: 120px; }
  .pd-info { padding-top: 0; }
  .pd-actions { flex-direction: column; align-items: stretch; }
  .pd-actions .btn { width: 100%; justify-content: center; }
  .pd-wa { justify-content: center; padding: 14px; border: 1px solid var(--line); }
  .pd-share { flex-wrap: wrap; gap: 12px; }
  .pd-copy { margin-left: 0; width: 100%; padding-top: 16px; border-top: 1px solid var(--line); text-align: center; }
  .pd-arrow { width: 40px; height: 40px; opacity: 1; }
  .pd-prev { left: 10px; }
  .pd-next { right: 10px; }
  .pd-thumb { flex: 0 0 56px; width: 56px; height: 74px; }
  .pd-counter { top: 12px; right: 12px; font-size: 10px; }
}
@media (max-width: 760px) {
  .announcement { font-size: 9.5px; letter-spacing: 0.32em; }
  .marquee { padding: 9px 0; gap: 48px; }
  .marquee span { gap: 48px; }
  .header { top: 34px; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats .stat:last-child { grid-column: span 2; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-nav { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .tab-btn { white-space: nowrap; }
}