/* ============================================================
   YAMANLAR MOBİLYA & BOYA — kurumsal site stilleri
   Palet: koyu antrasit + altın/bronz (marka logosundan)
   ============================================================ */

:root {
  --ink: #17150f;
  --ink-soft: #2a271e;
  --paper: #faf8f4;
  --paper-warm: #f3efe7;
  --gold: #b98a3e;
  --gold-bright: #d8ab5c;
  --gold-soft: rgba(185, 138, 62, 0.14);
  --line: rgba(23, 21, 15, 0.12);
  --line-dark: rgba(250, 248, 244, 0.14);
  --text: #33302a;
  --text-muted: #6f6a5e;
  --text-on-dark: #cfc9bc;

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --text-hero: clamp(2.4rem, 1.2rem + 4.5vw, 4.6rem);
  --text-h2: clamp(1.7rem, 1.1rem + 2.2vw, 2.7rem);
  --space-section: clamp(4rem, 3rem + 4vw, 8rem);

  --radius: 4px;
  --shadow-soft: 0 20px 60px -24px rgba(23, 21, 15, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 500ms;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: var(--space-section); }

.section-dark {
  background: var(--ink);
  color: var(--text-on-dark);
}
.section-dark h2 { color: #f5f1e8; }

/* ---------- tipografi ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: var(--text-hero); letter-spacing: -0.01em; }
h1 em { font-style: italic; color: var(--gold); }
h2 { font-size: var(--text-h2); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-sub { color: var(--text-muted); margin-top: 0.8rem; }
.section-dark .section-sub { color: var(--text-on-dark); opacity: 0.75; }

/* ---------- butonlar ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(185, 138, 62, 0.7);
}
.btn-gold:hover { box-shadow: 0 16px 36px -12px rgba(185, 138, 62, 0.85); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero .btn-ghost { border-color: var(--line-dark); color: #f5f1e8; }
.hero .btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-dark {
  background: var(--ink);
  color: #f5f1e8;
}
.btn-dark:hover { background: var(--ink-soft); }

.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background-color 350ms ease, box-shadow 350ms ease, padding 350ms ease;
}
.site-header.is-scrolled {
  background: rgba(23, 21, 15, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.5);
  padding-block: 0.7rem;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #f5f1e8;
}
.brand-mark {
  width: 40px;
  height: 40px;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  line-height: 1;
}
.brand-text small {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.main-nav a {
  color: rgba(245, 241, 232, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 250ms ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}
.main-nav a:not(.nav-cta):hover { color: #fff; }
.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-bright) !important;
  transition: background-color 250ms ease, color 250ms ease !important;
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #f5f1e8;
  transition: transform 300ms var(--ease), opacity 300ms ease;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  padding-top: clamp(7rem, 6rem + 4vw, 10rem);
  padding-bottom: var(--space-section);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(185, 138, 62, 0.12), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(250, 248, 244, 0.025) 118px 120px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 { color: #f5f1e8; margin-bottom: 1.4rem; }

.hero-lead {
  max-width: 46ch;
  opacity: 0.85;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}
.hero-badges li {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: rgba(245, 241, 232, 0.7);
}

.hero-media {
  position: relative;
  min-height: 420px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.hero-photo:hover img { transform: scale(1.04); }
.hero-photo.main {
  inset: 0 18% 12% 0;
  z-index: 2;
}
.hero-photo.accent {
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  z-index: 3;
  border: 4px solid var(--ink);
}
.hero-frame {
  position: absolute;
  inset: -1.2rem auto auto -1.2rem;
  width: 55%;
  height: 55%;
  border: 1px solid rgba(216, 171, 92, 0.4);
  border-radius: var(--radius);
  z-index: 1;
}

/* ---------- stats ---------- */
.stats {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding-block: 2.6rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.9rem);
  color: var(--gold-bright);
  line-height: 1.1;
}
.stat strong::after { content: "+"; font-size: 0.7em; }
.stat span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.7;
}

/* ---------- hakkımızda ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
  object-fit: cover;
}
.about-card {
  position: absolute;
  right: -1.2rem;
  bottom: -1.4rem;
  background: var(--ink);
  color: #f5f1e8;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  max-width: 200px;
}
.about-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
  line-height: 1;
}
.about-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-copy h2 { margin-bottom: 1.3rem; }
.about-copy p + p { margin-top: 1rem; }

.feature-list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  position: relative;
}
.tick::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

/* ---------- hizmetler ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  padding: 2.1rem 1.8rem;
  background: rgba(250, 248, 244, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), border-color 300ms ease,
    background-color 300ms ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 171, 92, 0.45);
  background: rgba(216, 171, 92, 0.05);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-bright);
  margin-bottom: 1.3rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  color: #f5f1e8;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.94rem;
  opacity: 0.78;
}

/* ---------- galeri ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 250ms ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #f5f1e8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--paper-warm);
}
.g-item.tall { grid-row: span 2; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.1rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(to top, rgba(23, 21, 15, 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms ease, transform 350ms var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }
.g-item.is-hidden { display: none; }

/* ---------- renk bölümü ---------- */
.colors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.colors-copy h2 { margin-bottom: 1.2rem; }
.colors-copy p { margin-bottom: 1.8rem; opacity: 0.85; max-width: 48ch; }
.colors-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.colors-media figcaption {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* ---------- süreç ---------- */
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.process-step {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.process-step p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- cta bant ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 60%, #e6c078 100%);
  padding-block: clamp(3rem, 2rem + 3vw, 5rem);
}
.cta-inner {
  text-align: center;
  color: #fff;
}
.cta-inner h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(23, 21, 15, 0.18);
}
.cta-inner p { margin-bottom: 1.8rem; opacity: 0.92; font-weight: 500; }

/* ---------- iletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.6rem; }

.contact-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.15rem;
}
.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.c-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}
.contact-list a:hover { color: var(--gold); }

.hours {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.hours-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li span:first-child { color: var(--text-muted); font-weight: 500; }
.hours-list li span:last-child { color: var(--ink); font-weight: 700; }
.hours-list li.is-closed span:last-child { color: #b5342e; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.15rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-note {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  min-height: 1.2em;
}

.ral-field { display: grid; gap: 0.6rem; }
.ral-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.ral-label em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.6;
}
.ral-trigger-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.ral-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, transform 150ms ease;
}
.ral-open-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.ral-open-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--gold-soft); }
.ral-open-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ral-color, transparent);
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.ral-open-swatch.is-empty {
  background: repeating-conic-gradient(var(--paper-warm) 0% 25%, #fff 0% 50%) 50% / 10px 10px;
}
.ral-selected {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.ral-selected strong { color: var(--ink); }

/* swatches inside the RAL modal grid (rendered via JS) */
.ral-swatch {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background: var(--ral-color, #fff);
  border: 2px solid var(--line);
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.ral-swatch:hover { transform: translateY(-2px); }
.ral-swatch:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.ral-swatch.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

/* ---------- ral modal ---------- */
.ral-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(23, 21, 15, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.ral-modal[hidden] { display: none; }
.ral-modal-panel {
  background: #fff;
  border-radius: var(--radius);
  max-width: 780px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
.ral-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.ral-modal-head h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
}
.ral-modal-actions { display: flex; align-items: center; gap: 1.1rem; }
.ral-modal-clear {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
}
.ral-modal-clear:hover { color: var(--gold); }
.ral-modal-close {
  font-size: 1.8rem;
  line-height: 1;
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease;
}
.ral-modal-close:hover { color: var(--gold); transform: rotate(90deg); }
.ral-modal-search-row {
  padding: 1rem 1.5rem 0;
}
#ralSearch {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
#ralSearch:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.ral-group.is-hidden { display: none; }
.ral-swatch.is-hidden { display: none; }
.ral-modal-body {
  padding: 1.3rem 1.5rem;
  overflow-y: auto;
  display: grid;
  gap: 1.3rem;
}
.ral-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
}
.ral-group-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ral-modal-note {
  margin: 0;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding-block: 3rem 2rem;
}
.footer-inner {
  display: grid;
  gap: 1.8rem;
  text-align: center;
  justify-items: center;
}
.footer-brand {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}
.footer-brand .brand-mark { color: var(--gold-bright); }
.footer-brand strong { color: #f5f1e8; letter-spacing: 0.12em; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}
.footer-nav a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 200ms ease;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-copy {
  font-size: 0.78rem;
  opacity: 0.5;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.6rem;
  width: 100%;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(23, 21, 15, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(920px, 100%);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-caption {
  color: #f5f1e8;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 2.4rem;
  line-height: 1;
  background: none;
  border: none;
  color: #f5f1e8;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease;
}
.lightbox-close:hover { color: var(--gold-bright); transform: rotate(90deg); }

/* ---------- reveal animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .g-item img, .hero-photo img { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; margin-top: 1rem; }
  .about-grid,
  .colors-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-card { right: 0.8rem; bottom: -1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    background: rgba(23, 21, 15, 0.98);
    padding: 6rem 2rem 3rem;
    transform: translateY(-100%);
    transition: transform 450ms var(--ease);
    z-index: -1;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 1.05rem; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-photo.main { inset: 0 8% 10% 0; }
}
