/* ============================================================
   La Vita Boutique — Complete Design System
   Premium Fashion × Modern SaaS × Editorial Art Direction
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Core Colors — Nude Palette */
  --bg:           #FAF7F4;
  --surface:      #F5F0EB;
  --surface-2:    #EDE6DC;
  --text:         #2C2420;
  --muted:        #7A6E68;
  --subtle:       #A89E97;
  --border:       #E2D8CF;
  --border-light: #EDE6DF;
  --accent:       #C4956A;
  --accent-light: #D9B48F;
  --accent-hover: #A87850;
  --white:        #FFFFFF;
  --black:        #1A1210;

  /* Nude section palette */
  --nude-1:       #FAF7F4;   /* warm ivory — hero, footer */
  --nude-2:       #F5EFE8;   /* soft linen — ticker, store */
  --nude-3:       #EEE5D9;   /* warm sand — philosophy */
  --nude-4:       #F0EBE3;   /* pale stone — gallery */
  --nude-5:       #E8DFD3;   /* warm taupe — location */
  --nude-6:       #F2EDE6;   /* blush linen — instagram */
  --nude-7:       #F7F2EC;   /* cream — final cta */

  /* Aliases kept for compatibility */
  --peach:        #E8D5BE;
  --peach-soft:   #F0E4D4;
  --blush:        #E8D5BE;
  --blush-soft:   #F2EDE6;
  --sage:         #D8DDD2;
  --sage-soft:    #E8EDE4;
  --cream:        #F7F2EC;
  --lavender-soft:#EDEAF5;

  /* Typography */
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale (8px base) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Layout */
  --max-w:    1280px;
  --nav-h:    72px;

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   0.56s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── 3. LAYOUT UTILITIES ─────────────────────────────────── */
.container {
  width: min(92%, var(--max-w));
  margin-inline: auto;
}

/* ── 4. TYPOGRAPHY SYSTEM ────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.body-lg {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.body-md {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

em, i {
  font-style: italic;
}

/* ── 5. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn .arrow {
  transition: transform var(--t-fast);
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 120, 80, 0.30);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--peach-soft);
}

.btn-instagram {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  gap: 8px;
  margin-top: var(--sp-2);
}

.btn-instagram:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 149, 106, 0.30);
}

.btn-instagram svg {
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  animation: float-in 0.6s cubic-bezier(0.16,1,0.3,1) 1.2s both;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(0,0,0,0.14);
  color: #fff;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: var(--t-fast);
}

.link-arrow .arrow {
  transition: transform var(--t-fast);
  font-style: normal;
}

.link-arrow:hover .arrow {
  transform: translateX(4px);
}

.link-arrow:hover {
  color: var(--accent);
}

/* ── 6. SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-spring), transform var(--t-spring);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 7. HEADER ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base), backdrop-filter var(--t-base);
}

.site-header.scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: var(--border-light);
  box-shadow: 0 1px 24px rgba(44, 36, 32, 0.06);
}

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

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1.0;
  text-transform: uppercase;
}

.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  opacity: 0.8;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  transition: color var(--t-fast);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--t-base);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: 2px;
  transition: background var(--t-fast), color var(--t-fast);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {
  display: block;
  padding: var(--sp-2) calc((100% - min(92%, var(--max-w))) / 2);
  padding-left: max(4%, calc((100% - min(92%, var(--max-w))) / 2));
  font-size: 0.9375rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--t-fast);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

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

/* ── 8. HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Dekoratif blob — hero sol arka */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--nude-3) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* Dekoratif blob — hero sağ alt */
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--nude-5) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  z-index: 1;
}

/* Left: Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-16) var(--sp-8) var(--sp-16) max(var(--sp-8), calc((100vw - var(--max-w)) / 2 + 40px));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--sp-5);
}

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

.hero-desc {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: var(--sp-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-meta {
  margin-top: auto;
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  border-top: 1px solid var(--border-light);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.hero-meta-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--subtle);
  text-transform: uppercase;
}

.hero-meta-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Right: Visual */
.hero-visual-wrap {
  display: flex;
  align-items: center;
  padding: var(--sp-6);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h) - var(--sp-8));
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}

.hero-visual:hover img {
  transform: scale(1.03);
}

.hero-visual-tag {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: rgba(247, 245, 241, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-visual-tag-name {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.hero-visual-tag-loc {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 9. TICKER ───────────────────────────────────────────── */
.ticker-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--nude-2);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 var(--sp-5);
}

.ticker-dot {
  color: var(--accent);
  margin-left: var(--sp-5);
  font-size: 0.5rem;
  opacity: 0.6;
}

/* ── 10. PHILOSOPHY (BRAND STORY) ────────────────────────── */
.philosophy {
  padding: var(--sp-16) 0;
  background: var(--nude-3);
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: start;
}

.philosophy-left {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
}

.philosophy-left .eyebrow {
  margin-bottom: var(--sp-4);
}

.philosophy-statement {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--sp-6);
}

.philosophy-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-bottom: var(--sp-5);
}

.philosophy-right {
  padding-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.philosophy-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 460px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.pillar {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.55);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.pillar:hover {
  background: #fff;
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(212,115,90,0.10);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: var(--sp-1);
  line-height: 1;
}

.pillar-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  display: block;
}

/* ── 11. GALLERY ─────────────────────────────────────────── */
.gallery {
  padding: var(--sp-16) 0;
  background: var(--nude-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-2);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1;
  aspect-ratio: 3/5;
}

.gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 2;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(5) {
  grid-column: 5 / 9;
  grid-row: 2;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 2;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-3);
  transition: background var(--t-base);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(23, 23, 23, 0.35);
}

.gallery-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── 12. STORE INFO ──────────────────────────────────────── */
.store-info {
  padding: var(--sp-16) 0;
  background: var(--nude-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.store-info-head {
  margin-bottom: var(--sp-8);
}

.store-info-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 12px;
  line-height: 1.1;
}

.store-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.75);
}

.store-card {
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  border-right: 1px solid var(--border);
  transition: background var(--t-fast), transform var(--t-fast);
  display: flex;
  flex-direction: column;
}

.store-card:last-child {
  border-right: none;
}

.store-card:hover {
  background: #fff;
  transform: translateY(-2px);
}

.store-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--accent-light);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.06em;
}

.store-card-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: var(--sp-2);
}

.store-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
}

.store-detail {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 400;
}

.hours-time {
  font-weight: 500;
  color: var(--text);
  font-size: 0.8125rem;
}

/* ── 13. LOCATION ────────────────────────────────────────── */
.location {
  padding: var(--sp-16) 0;
  background: var(--nude-5);
  border-top: 1px solid var(--border);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-10);
  align-items: center;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.location-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

.location-heading em {
  font-style: italic;
  color: var(--accent);
}

.location-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--sp-4);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.location-address-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
}

.location-address-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

.location-map {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 520px;
  box-shadow: 0 2px 24px rgba(23,23,23,0.06);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── 14. INSTAGRAM ───────────────────────────────────────── */
.instagram-section {
  padding: var(--sp-16) 0;
  text-align: center;
  background: var(--nude-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Dekoratif blob — instagram arka */
.instagram-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--nude-5) 0%, transparent 65%);
  opacity: 0.45;
  pointer-events: none;
}

.instagram-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--nude-3) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}

.instagram-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  position: relative;
  z-index: 1;
}

.instagram-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: var(--sp-1);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.instagram-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,115,90,0.15);
}

.instagram-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.015em;
}

.instagram-heading em {
  font-style: italic;
  color: var(--accent);
}

.instagram-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}

.instagram-handle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: var(--sp-1);
  background: rgba(212,115,90,0.08);
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(212,115,90,0.18);
}

/* ── 15. FINAL CTA ───────────────────────────────────────── */
.final-cta {
  padding: var(--sp-16) 0 calc(var(--sp-16) + var(--sp-4));
  text-align: center;
  background: var(--nude-7);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--nude-5) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}

.final-cta-eyebrow {
  margin-bottom: var(--sp-1);
}

.final-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
}

.final-cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

/* ── 16. FOOTER ──────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--sp-12) 0 var(--sp-6);
  background: var(--nude-1);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0.5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--border-light);
}

.footer-brand .logo-name {
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-tag {
  display: block;
  margin-bottom: var(--sp-5);
}

.footer-brand-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: var(--sp-4);
}

.footer-addr {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-addr a {
  color: var(--accent);
  transition: color var(--t-fast);
}

.footer-addr a:hover {
  color: var(--accent-hover);
}

.footer-col-label {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--sp-4);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color var(--t-fast), transform var(--t-fast);
}

.footer-social-link:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-social-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.6875rem;
  color: var(--subtle);
  letter-spacing: 0.04em;
}

/* ── 17. SECTION DIVIDERS ────────────────────────────────── */
.section-gap {
  padding: var(--sp-16) 0;
}

/* ── 18. RESPONSIVE ──────────────────────────────────────── */

/* Large Desktop adjustments */
@media (min-width: 1400px) {
  .hero-content {
    padding-left: calc((100vw - var(--max-w)) / 2 + 40px);
  }
}

/* Tablet landscape */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: var(--sp-10) var(--sp-6) var(--sp-10) var(--sp-6);
  }

  .philosophy-inner {
    gap: var(--sp-8);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: auto;
  }

  .hero-content {
    order: 1;
    padding: var(--sp-10) var(--sp-4) var(--sp-6);
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.75rem, 8vw, 4rem);
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-meta {
    display: none;
  }

  .hero-visual-wrap {
    order: 2;
    padding: 0 var(--sp-4) var(--sp-6);
  }

  .hero-visual {
    height: 62vw;
    max-height: 480px;
    border-radius: var(--r-lg);
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .philosophy-left {
    position: relative;
    top: auto;
  }

  .philosophy-right {
    padding-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1 / 4; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 4 / 7; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 1 / 4; grid-row: 3; }
  .gallery-item:nth-child(6) { grid-column: 4 / 7; grid-row: 3; }

  .store-info-grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-lg);
  }

  .store-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .store-card:last-child {
    border-bottom: none;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .location-map {
    height: 360px;
    border-radius: var(--r-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero-content {
    padding: var(--sp-8) var(--sp-3) var(--sp-4);
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual-wrap {
    padding: 0 var(--sp-3) var(--sp-4);
  }

  .hero-visual {
    height: 75vw;
    border-radius: var(--r-lg);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-1);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .philosophy-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-1);
    text-align: center;
  }

  .instagram-section {
    padding: var(--sp-10) 0;
  }

  .philosophy,
  .store-info,
  .location,
  .final-cta {
    padding: var(--sp-10) 0;
  }

  .gallery {
    padding: var(--sp-10) 0;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2rem;
  }
}