/* styles.css — ORMAN shared styles across pages */

:root {
  --bg-deep: #0a1410;
  --bg-mid: #1a2a22;
  --text: #fff8e7;
  --text-dim: rgba(255, 248, 231, 0.78);
  --text-soft: rgba(255, 248, 231, 0.55);
  --accent: #ffb785;
  --accent-2: #ff9c6a;
  --gold: #e8b86a;
  --line: rgba(255, 248, 231, 0.18);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Outfit', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%; min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }

/* ─── PER-SECTION FULL-BLEED PHOTO BACKGROUNDS ─────────────────────────── */
section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #0a1410;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 48px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(8,16,12,.18) 18%, rgba(8,16,12,.52) 100%),
    linear-gradient(180deg, rgba(8,16,12,.6) 0%, rgba(8,16,12,.36) 26%, rgba(8,16,12,.36) 68%, rgba(8,16,12,.68) 100%);
  pointer-events: none;
  z-index: 0;
}
section > * { position: relative; z-index: 1; }

main { position: relative; z-index: 10; width: 100%; }

/* ─── FLOATING ATMOSPHERE LAYERS ─────────────────────────────────────────── */
.bg-glow {
  position: fixed; inset: 0;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 40vw 30vh at 70% 20%, rgba(255, 200, 130, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 30vw 40vh at 20% 70%, rgba(255, 180, 200, 0.10) 0%, transparent 70%);
}
.petals {
  position: fixed; inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}
.petal {
  position: absolute; top: -40px;
  will-change: transform, opacity;
  border-radius: 60% 30% 50% 30%;
  transform-origin: center;
  filter: blur(0.3px) drop-shadow(0 0 12px var(--p-glow, rgba(255,180,200,0.45)));
  animation:
    petal-fall var(--fall-dur, 14s) linear infinite,
    petal-spin var(--spin-dur, 6s) ease-in-out infinite;
}
@keyframes petal-fall {
  0%   { transform: translate3d(0, -8vh, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.95; }
  50%  { transform: translate3d(calc(var(--sway, 60px)), 55vh, 0) rotate(180deg); }
  100% { transform: translate3d(calc(var(--sway, 60px) * -0.4), 115vh, 0) rotate(540deg); opacity: 0.0; }
}
@keyframes petal-spin {
  0%, 100% { filter: blur(0.3px) drop-shadow(0 0 12px var(--p-glow, rgba(255,180,200,0.45))) brightness(1); }
  50%      { filter: blur(0.3px) drop-shadow(0 0 18px var(--p-glow, rgba(255,180,200,0.7))) brightness(1.2); }
}
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  pointer-events: none;
  z-index: 60;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,140,0.10) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  mix-blend-mode: screen;
}

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 26px 44px;
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav .brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: inherit; }
.nav .brand .word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.46em;
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
  padding-left: 2px;
}
.nav .brand .sub {
  font-size: 9px;
  letter-spacing: 0.34em;
  color: rgba(255,248,231,.65);
  margin-top: 6px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.nav .links {
  display: flex; gap: 36px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,248,231,.78);
}
.nav .links a {
  color: inherit; text-decoration: none; transition: color .25s;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  position: relative;
}
.nav .links a:hover, .nav .links a.active { color: var(--text); }
.nav .links a::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%;
  width: 0; height: 1px; background: var(--accent);
  transition: width .3s, left .3s;
}
.nav .links a:hover::after, .nav .links a.active::after { width: 100%; left: 0; }

/* Atelier visit (replaces cart) — small badge in nav */
.nav-cta {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 248, 231, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  font-family: var(--sans); font-weight: 500;
  transition: all .25s;
}
.nav-cta:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 200, 140, 0.4);
}
.nav-cta::after {
  content: '→';
  font-family: var(--serif); font-size: 16px; letter-spacing: 0;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero { padding-top: 140px; min-height: 100vh; }
.hero-inner { text-align: center; max-width: 1100px; position: relative; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 9px 22px;
  border: 1px solid rgba(232, 184, 106, 0.4);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero .kicker::before, .hero .kicker::after {
  content: ''; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 106, 0.6));
}
.hero .kicker::after { background: linear-gradient(90deg, rgba(232, 184, 106, 0.6), transparent); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(72px, 14vw, 220px);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 12px 80px rgba(0,0,0,.65), 0 2px 30px rgba(0,0,0,.55);
}
.hero h1.smaller { font-size: clamp(60px, 11vw, 168px); }
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #ffd6a8 10%, #ff9c6a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 32px rgba(255, 156, 106, 0.45));
}
.hero .tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(255, 248, 231, 0.88);
  margin-top: 28px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,.65);
}
.hero .desc {
  max-width: 540px;
  margin: 32px auto 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 248, 231, 0.82);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,.75);
}
.hero .cta-row {
  margin-top: 50px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 17px 34px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  font-weight: 500;
  color: inherit;
}
.btn-primary {
  background: var(--text);
  color: #2a1810;
  box-shadow: 0 8px 40px rgba(255, 248, 231, 0.22);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(255, 248, 231, 0.35); }
.btn-ghost {
  background: rgba(0,0,0,0.3);
  color: var(--text);
  border-color: rgba(255, 248, 231, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(0,0,0,0.5); border-color: var(--accent); }
.btn .arr { font-family: var(--serif); font-size: 20px; letter-spacing: 0; transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }

.scroll-cue {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255, 248, 231, 0.7);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}
.scroll-cue::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,248,231,0.7), transparent);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ─── SECTION TYPOGRAPHY ─────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 106, 0.5));
}
.section-eyebrow::after { background: linear-gradient(90deg, rgba(232, 184, 106, 0.5), transparent); }
.section-eyebrow.left::before { display: none; }
.section-eyebrow.left { padding-left: 0; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 110px);
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin-bottom: 28px;
  text-shadow: 0 6px 50px rgba(0,0,0,.7);
}
.section-title em {
  font-style: italic;
  background: linear-gradient(180deg, #ffd6a8 0%, #ff9c6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.section-intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255, 248, 231, 0.9);
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
  max-width: 640px;
  line-height: 1.5;
  text-shadow: 0 2px 22px rgba(0,0,0,.7);
}

/* ─── PAGE-CARDS (Home navigation cards) ─────────────────────────────────── */
.page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 70px;
}
.page-card {
  position: relative;
  display: block;
  height: 380px;
  background-size: cover; background-position: center;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.page-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,14,11,.1) 0%, rgba(8,14,11,.9) 100%);
}
.page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}
.page-card-body {
  position: absolute; left: 28px; right: 28px; bottom: 26px;
  z-index: 2;
}
.page-card .tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  background: rgba(0,0,0,.3);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 184, 106, .25);
}
.page-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.page-card h3 em { font-style: italic; color: var(--accent); }
.page-card p {
  font-size: 13px;
  color: rgba(255, 248, 231, 0.75);
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 320px;
}
.page-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text);
}
.page-card .arrow span { font-family: var(--serif); font-size: 18px; letter-spacing: 0; transition: transform .3s; }
.page-card:hover .arrow span { transform: translateX(4px); }

/* ─── ARRANGEMENTS GRID (Koleksiyon) ─────────────────────────────────────── */
.arrangements {
  padding: 130px 48px 140px;
  text-align: center;
}
.arr-inner { width: 100%; max-width: 1320px; margin: 0 auto; }
.arrangements .section-intro { margin: 0 auto; }
.arr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin-top: 80px;
}
.arr-card {
  background: rgba(10, 18, 14, 0.42);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 248, 231, 0.14);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .5s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.arr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 184, 106, 0.5);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}
.arr-visual {
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: #1a2a22;
  position: relative;
  overflow: hidden;
  transition: transform 1.2s ease;
}
.arr-card:hover .arr-visual { transform: scale(1.04); }
.arr-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 16, 0.7) 100%);
}
.arr-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 20, 16, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 184, 106, 0.3);
  z-index: 2;
}
.arr-body { padding: 26px 28px 28px; position: relative; z-index: 2; }
.arr-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.arr-name em { font-style: italic; color: var(--accent); }
.arr-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 248, 231, 0.72);
  margin-bottom: 18px;
}
.arr-meta {
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(232, 184, 106, .85);
  border-top: 1px solid rgba(255, 248, 231, 0.14);
  padding-top: 16px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ─── PROCESS / TIMELINE / GALLERY (Atölye, Hikaye) ──────────────────────── */
.process { padding: 140px 48px; }
.process-inner { max-width: 1320px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 80px;
}
.proc-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.proc-step:nth-child(even) { direction: rtl; }
.proc-step:nth-child(even) > * { direction: ltr; }
.proc-photo {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-color: #1a2a22;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.proc-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 20, 16, 0.45) 100%);
}
.proc-step-num {
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.proc-step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.55);
}
.proc-step h3 em { font-style: italic; color: var(--accent); }
.proc-step p {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255, 248, 231, 0.8);
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}

/* ─── STORY (Hikaye) ─────────────────────────────────────────────────────── */
.story-block { padding: 140px 48px; }
.story-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.story-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.0;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  text-shadow: 0 5px 40px rgba(0,0,0,.65);
}
.story-text h2 em {
  font-style: italic;
  background: linear-gradient(180deg, #ffd6a8 0%, #ff9c6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.story-text p {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255, 248, 231, 0.82);
  margin-bottom: 18px;
  text-shadow: 0 1px 14px rgba(0,0,0,.7);
}
.story-text .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  margin: 32px 0;
  line-height: 1.4;
  padding-left: 24px;
  border-left: 2px solid rgba(232, 184, 106, 0.5);
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-content: start;
}
.stat {
  border-top: 1px solid rgba(255, 248, 231, 0.18);
  padding-top: 22px;
}
.stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
  text-shadow: 0 4px 30px rgba(255, 156, 106, 0.25);
}
.stat .num small { font-size: 28px; color: var(--text); margin-left: 4px; -webkit-text-fill-color: var(--text); }
.stat .lbl { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255, 248, 231, 0.68); }

/* ─── TIMELINE (Hikaye) ──────────────────────────────────────────────────── */
.timeline { padding: 140px 48px; text-align: center; }
.timeline-inner { max-width: 980px; margin: 0 auto; }
.timeline-list {
  margin-top: 80px;
  position: relative;
  text-align: left;
}
.timeline-list::before {
  content: '';
  position: absolute; left: 80px; top: 14px; bottom: 14px;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(232, 184, 106, 0.4) 10%, rgba(232, 184, 106, 0.4) 90%, transparent);
}
.tl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 28px 0;
  position: relative;
}
.tl-row::before {
  content: '';
  position: absolute; left: 73px; top: 38px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent), 0 0 0 4px rgba(255, 183, 133, 0.15);
}
.tl-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  line-height: 1.3;
}
.tl-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.tl-body p {
  font-size: 15px;
  color: rgba(255, 248, 231, 0.74);
  line-height: 1.65;
  max-width: 620px;
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery { padding: 140px 48px; text-align: center; }
.gallery-inner { max-width: 1320px; margin: 0 auto; }
.gallery-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gal-tile {
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-color: #1a2a22;
  position: relative;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.gal-tile:hover { transform: scale(1.02); }
.gal-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 20, 16, 0.55) 100%);
}
.gal-cap {
  position: absolute; bottom: 16px; left: 18px; right: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 248, 231, 0.9);
}
.gal-a { grid-column: span 7; height: 380px; }
.gal-b { grid-column: span 5; height: 380px; }
.gal-c { grid-column: span 4; height: 320px; }
.gal-d { grid-column: span 4; height: 320px; }
.gal-e { grid-column: span 4; height: 320px; }

/* ─── BIG QUOTE ──────────────────────────────────────────────────────────── */
.quote { padding: 160px 48px; text-align: center; }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.25;
  max-width: 920px;
  margin: 0 auto;
  color: var(--text);
  text-shadow: 0 6px 50px rgba(0,0,0,.7);
}
.quote blockquote em { color: var(--accent); font-style: italic; }
.quote .qauth {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(232, 184, 106, .9);
}

/* ─── CONTACT (İletişim) ─────────────────────────────────────────────────── */
.contact-block { padding: 130px 48px 160px; }
.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 36px;
  background: rgba(10, 18, 14, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 34px 32px;
  margin: -10px -8px 0;
}
.ci-block { }
.ci-label {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}
.ci-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  text-shadow: 0 2px 16px rgba(0,0,0,.75);
}
.ci-value:hover { color: var(--accent); }
.ci-sub {
  font-size: 14px;
  color: rgba(255, 248, 231, 0.82);
  margin-top: 6px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
}

.contact-form {
  background: rgba(10, 18, 14, 0.55);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 248, 231, 0.18);
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255, 248, 231, 0.66);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255, 248, 231, 0.18);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .25s, background .25s;
  font-weight: 300;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.45);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { width: 100%; margin-top: 8px; justify-content: center; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  font-size: 14px;
  margin-top: 4px;
}
.hours-grid .day { color: rgba(255, 248, 231, 0.74); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.8); }
.hours-grid .hour { color: var(--text); font-family: var(--serif); font-size: 18px; text-shadow: 0 1px 12px rgba(0,0,0,.8); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 10;
  padding: 70px 48px 50px;
  border-top: 1px solid rgba(255, 248, 231, 0.14);
  background: rgba(8, 14, 11, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.foot-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.foot-brand .word {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.42em;
  color: var(--text);
  margin-bottom: 14px;
}
.foot-brand .tag {
  font-family: var(--serif); font-style: italic;
  font-size: 14px;
  color: rgba(255, 248, 231, 0.6);
}
.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  font-size: 12px;
}
.foot-col h5 {
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(232, 184, 106, 0.9);
  margin-bottom: 14px;
  font-weight: 500;
}
.foot-col a, .foot-col div {
  display: block;
  color: rgba(255, 248, 231, 0.72);
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.6;
  transition: color .25s;
}
.foot-col a:hover { color: var(--text); }
.foot-copy {
  text-align: right;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255, 248, 231, 0.45);
}
.foot-copy span { display: block; margin-top: 8px; }

/* ─── LOADING ────────────────────────────────────────────────────────────── */
.loading {
  position: fixed; inset: 0;
  background: #050a08;
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 28px;
}
.loading.hide { opacity: 0; pointer-events: none; display: none !important; }
.loading .l-brand {
  font-family: var(--serif);
  font-size: 40px;
  letter-spacing: 0.54em;
  color: var(--text);
  padding-left: 8px;
  opacity: 0;
  animation: loadFade 1.4s ease-out forwards;
}
.loading .l-sub {
  font-size: 10px; letter-spacing: 0.46em; text-transform: uppercase;
  color: rgba(255, 248, 231, 0.55);
  opacity: 0;
  animation: loadFade 1.4s ease-out .3s forwards;
}
.loading .l-bar {
  width: 180px; height: 1px;
  background: rgba(255, 248, 231, 0.16);
  overflow: hidden;
  position: relative;
}
.loading .l-bar::after {
  content: '';
  position: absolute; left: -40%; top: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: loadbar 1.6s ease-in-out infinite;
}
@keyframes loadFade { to { opacity: 1; } }
@keyframes loadbar {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav { padding: 18px 22px; }
  .nav .links { display: none; }
  section { padding: 80px 24px; }
  .story-inner { grid-template-columns: 1fr; gap: 50px; }
  .proc-step { grid-template-columns: 1fr; gap: 32px; }
  .proc-step:nth-child(even) { direction: ltr; }
  .proc-photo { height: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-form { padding: 32px 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-a, .gal-b, .gal-c, .gal-d, .gal-e { grid-column: span 1; height: 280px; }
  .timeline-list::before { left: 30px; }
  .tl-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .tl-row::before { left: 24px; }
  .foot-inner { grid-template-columns: 1fr; gap: 30px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-copy { text-align: left; }
}
