/* ==========================================================================
   Eray Tabela — Premium Utilitarian Minimalism
   Warm monochrome · editorial serif headings · flat bento grids
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------
   Switzer (sans) via Fontshare · Newsreader (serif) + JetBrains Mono via Google.
   Linked from each page <head>. Strong system fallbacks below. */

:root {
  /* Canvas & surfaces */
  --bg:            #FBFBFA;
  --bg-soft:       #F7F6F3;
  --surface:       #FFFFFF;
  --surface-soft:  #F9F9F8;

  /* Ink */
  --ink:           #1A1A18;
  --ink-soft:      #2F3437;
  --muted:         #787774;
  --muted-2:       #9A9A96;

  /* Lines */
  --line:          #EAEAEA;
  --line-soft:     rgba(0, 0, 0, 0.06);

  /* Single restrained accent - blue, matching Medya Reklam */
  --accent:        #0D70FA;
  --accent-bg:     #E6F0FF;

  /* Spot pastels (used sparingly for tags) */
  --pale-red-bg:   #FDEBEC; --pale-red:   #9F2F2D;
  --pale-blue-bg:  #E1F3FE; --pale-blue:  #1F6C9F;
  --pale-green-bg: #EDF3EC; --pale-green: #346538;

  /* Type */
  --sans: 'Switzer', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', system-ui, sans-serif;
  --serif: 'Newsreader', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', 'SF Mono', ui-monospace, 'Courier New', monospace;

  /* Rhythm */
  --maxw: 1200px;
  --maxw-text: 60rem;
  --radius: 12px;
  --radius-sm: 6px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 76px;
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ----------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: -0.02em; }
h4 { font-size: 1.15rem; letter-spacing: -0.015em; }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--muted-2);
  display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.65; }

/* ---- Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 11vw, 132px) 0; }
.section--tight { padding: clamp(56px, 8vw, 92px) 0; }
.section-head { max-width: 46rem; margin-bottom: 64px; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; font-size: 1.12rem; color: var(--muted); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: var(--line); border: 0; }

/* ---- Tags ----------------------------------------------------------------- */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: var(--accent);
}
.tag--blue  { background: var(--pale-blue-bg);  color: var(--pale-blue); }
.tag--green { background: var(--pale-green-bg); color: var(--pale-green); }
.tag--red   { background: var(--pale-red-bg);   color: var(--pale-red); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.95rem; font-weight: 500;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #333; }
.btn:active { transform: scale(0.98); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg-soft); }
.btn--block { width: 100%; justify-content: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: gap 0.2s var(--ease), border-color 0.2s;
}
.link-arrow:hover { gap: 0.7rem; border-color: var(--ink); }
.link-arrow svg { width: 15px; height: 15px; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: #d8d8d4;
  font-size: 0.8rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar a { color: #d8d8d4; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; }
.topbar__left span, .topbar__left a { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); letter-spacing: 0.02em; }
.topbar__left svg { width: 14px; height: 14px; opacity: 0.7; }
.topbar__social { display: flex; gap: 16px; align-items: center; }
.topbar__social svg { width: 15px; height: 15px; }
.topbar__links { display: flex; gap: 20px; align-items: center; }
.topbar__links a { font-family: var(--mono); letter-spacing: 0.02em; white-space: nowrap; }
@media (max-width: 980px) { .topbar__links { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 251, 250, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
}
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.brand__sub { display: block; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.93rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover, .nav__item.is-active > .nav__link { color: var(--ink); background: var(--surface-soft); }
.nav__link svg { width: 13px; height: 13px; opacity: 0.6; transition: transform 0.25s var(--ease); }
.nav__item--has-drop:hover .nav__link svg { transform: rotate(180deg); }

.nav__drop {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 7px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}
.nav__item--has-drop:hover .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a { display: block; padding: 10px 13px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--ink-soft); transition: background 0.18s, color 0.18s; }
.nav__drop a:hover { background: var(--surface-soft); color: var(--ink); }
.nav__drop a span { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--line); place-items: center; }
.nav__toggle span { width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: background 0.2s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.25s var(--ease); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 7vw, 88px); overflow: hidden; }
.hero__ambient {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(149,100,0,0.05), transparent 70%),
    radial-gradient(50% 45% at 10% 90%, rgba(0,0,0,0.03), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__lead { max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 38px; margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero__stat .n { font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.hero__stat .l { font-size: 0.82rem; color: var(--muted); margin-top: 7px; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4 / 5; background: var(--bg-soft);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.18) saturate(0.92) contrast(1.02); }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(26,26,24,0.14)); }
.hero__badge {
  position: absolute; left: -22px; bottom: 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}
.hero__badge .ic { width: 40px; height: 40px; border-radius: 9px; background: var(--accent-bg); color: var(--accent); display: grid; place-items: center; }
.hero__badge .ic svg { width: 20px; height: 20px; }
.hero__badge b { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.hero__badge small { display: block; color: var(--muted); font-size: 0.78rem; }

/* Marquee of capabilities */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; padding: 16px 30px; font-size: 0.86rem; color: var(--muted); white-space: nowrap; }
.marquee__item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Values — three pillars
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.pillar { padding: 40px 34px; border-right: 1px solid var(--line); position: relative; }
.pillar:last-child { border-right: 0; }
.pillar__n { font-family: var(--mono); font-size: 0.75rem; color: var(--muted-2); letter-spacing: 0.1em; }
.pillar h3 { margin: 20px 0 12px; }
.pillar p { font-size: 0.96rem; color: var(--muted); }

/* ==========================================================================
   Cards / Bento
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.feature:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.045); border-color: #dcdcdc; }
.feature__ic { width: 48px; height: 48px; border-radius: 11px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 22px; }
.feature__ic svg { width: 23px; height: 23px; stroke: var(--ink); }
.feature h4 { margin-bottom: 9px; }
.feature p { font-size: 0.94rem; color: var(--muted); }

/* ==========================================================================
   Product index (editorial numbered grid)
   ========================================================================== */
.prodgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prodcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; min-height: 188px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.prodcard:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.05); border-color: #dcdcdc; }
.prodcard__top { display: flex; align-items: baseline; justify-content: space-between; }
.prodcard__n { font-family: var(--mono); font-size: 0.74rem; color: var(--muted-2); letter-spacing: 0.06em; }
.prodcard__lit { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 9999px; background: var(--accent-bg); color: var(--accent); }
.prodcard h4 { font-family: var(--serif); margin: 26px 0 8px; font-size: 1.18rem; }
.prodcard p { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }
.prodcard__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--ink); font-weight: 500; }
.prodcard__more svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.prodcard:hover .prodcard__more svg { transform: translateX(3px); }

/* Featured product (with image) */
.featcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.featcard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.featcard:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.featcard__img { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-soft); }
.featcard__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) saturate(0.9); transition: transform 0.5s var(--ease), filter 0.4s; }
.featcard:hover .featcard__img img { transform: scale(1.04); filter: grayscale(0) saturate(1); }
.featcard__body { padding: 22px 24px 24px; }
.featcard__body h4 { font-family: var(--serif); margin-bottom: 8px; }
.featcard__body p { font-size: 0.9rem; color: var(--muted); }

/* ==========================================================================
   Split / About
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--text-right { grid-template-columns: 0.95fr 1.05fr; }
.split__media { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; background: var(--bg-soft); }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.16) saturate(0.92); }
.split__body h2 { margin: 18px 0 22px; }
.split__body p + p { margin-top: 16px; }
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.checklist .ck { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--accent-bg); color: var(--accent); display: grid; place-items: center; margin-top: 2px; }
.checklist .ck svg { width: 13px; height: 13px; }

/* ==========================================================================
   Stats band
   ========================================================================== */
.statsband { background: var(--ink); color: #f2f1ed; border-radius: var(--radius); padding: 54px 40px; }
.statsband__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.statsband .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 500; line-height: 1; }
.statsband .n em { font-style: normal; color: #d9a328; }
.statsband .l { color: #a7a69f; font-size: 0.88rem; margin-top: 12px; }

/* ==========================================================================
   References wall (text wordmarks)
   ========================================================================== */
.refwall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.ref {
  display: grid; place-items: center; text-align: center;
  padding: 30px 16px; min-height: 104px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--muted-2); transition: color 0.25s, background 0.25s;
}
.ref:hover { color: var(--ink); background: var(--surface-soft); }

/* ==========================================================================
   Portfolio grid
   ========================================================================== */
.folio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.folio__item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--bg-soft); cursor: zoom-in; }
.folio__item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06); transition: transform 0.55s var(--ease), filter 0.4s; }
.folio__item:hover img { transform: scale(1.05); filter: saturate(1.15); }
.folio__cap { position: absolute; inset: auto 0 0 0; padding: 36px 18px 15px; background: linear-gradient(transparent, rgba(18,18,16,0.85)); color: #fff; opacity: 1; transition: background 0.3s var(--ease); }
.folio__item:hover .folio__cap { background: linear-gradient(transparent, rgba(13,112,250,0.22), rgba(18,18,16,0.92)); }
.folio__cap b { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; }
.folio__cap span { display: block; font-size: 0.78rem; color: #cfceca; margin-top: 3px; font-family: var(--mono); letter-spacing: 0.04em; }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip { font-size: 0.86rem; padding: 7px 16px; border-radius: 9999px; border: 1px solid var(--line); color: var(--muted); background: var(--surface); transition: all 0.2s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ==========================================================================
   Accordion (policy / faq)
   ========================================================================== */
.accordion { border-top: 1px solid var(--line); max-width: 50rem; }
.acc { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; text-align: left; }
.acc__head h4 { font-family: var(--serif); font-size: 1.2rem; }
.acc__sign { flex: none; width: 26px; height: 26px; position: relative; }
.acc__sign::before, .acc__sign::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s var(--ease); }
.acc__sign::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.acc__sign::after { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.acc.is-open .acc__sign::after { transform: translateX(-50%) scaleY(0); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc__body-inner { padding: 0 4px 28px; color: var(--muted); font-size: 0.98rem; max-width: 44rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.infocard { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 30px 30px; display: flex; gap: 18px; align-items: flex-start; }
.infocard + .infocard { margin-top: 16px; }
.infocard .ic { flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; }
.infocard .ic svg { width: 21px; height: 21px; stroke: var(--ink); }
.infocard h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin-bottom: 7px; }
.infocard p, .infocard a { font-size: 1.04rem; color: var(--ink); font-weight: 500; }
.infocard a:hover { color: var(--accent); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 0.97rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,0.04); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form__ok { display: none; margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm); background: var(--pale-green-bg); color: var(--pale-green); font-size: 0.9rem; }
.form__ok.show { display: block; }
.form__err { display: none; margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm); background: var(--pale-red-bg); color: var(--pale-red); font-size: 0.9rem; }
.form__err.show { display: block; }

/* ==========================================================================
   Thank-you page
   ========================================================================== */
.thanks { text-align: center; max-width: 42rem; margin: 0 auto; padding: clamp(64px, 11vw, 132px) 0; }
.thanks__badge { width: 88px; height: 88px; margin: 0 auto 32px; border-radius: 50%; background: var(--pale-green-bg); color: var(--pale-green); display: grid; place-items: center; }
.thanks__badge svg { width: 42px; height: 42px; }
.thanks .eyebrow { justify-content: center; margin-bottom: 18px; }
.thanks h1 { margin-bottom: 20px; }
.thanks p { font-size: 1.14rem; color: var(--muted); margin: 0 auto 34px; max-width: 34rem; }
.thanks__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.thanks__meta { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; font-size: 0.92rem; color: var(--muted); }
.thanks__meta a { color: var(--ink); font-weight: 500; }
.thanks__meta a:hover { color: var(--accent); }

.mapwrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 380px; }
.mapwrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 8vw, 92px) 0;
}
.cta-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(217,163,40,0.12), transparent 70%); pointer-events: none; }
.cta { text-align: center; }
.cta h2 { color: #fff; max-width: 22rem; margin: 0 auto 18px; }
.cta p { color: #b9b8b1; max-width: 34rem; margin: 0 auto 32px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.pagehero { padding: clamp(56px, 8vw, 92px) 0 clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--line); background: var(--surface); }
.crumbs { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); display: flex; gap: 9px; align-items: center; margin-bottom: 22px; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--muted-2); }
.pagehero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.pagehero p { margin-top: 20px; max-width: 40rem; font-size: 1.12rem; color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #c9c8c2; padding: 72px 0 30px; }
.site-footer a { color: #c9c8c2; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #98978f; font-size: 0.92rem; margin-top: 18px; max-width: 24rem; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.14); border-radius: 9px; display: grid; place-items: center; }
.footer__social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h5 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8a8980; font-family: var(--mono); margin-bottom: 20px; font-weight: 500; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { font-size: 0.92rem; }
.footer__contact li { display: flex; gap: 11px; font-size: 0.92rem; color: #b6b5ae; margin-bottom: 14px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: 3px; opacity: 0.65; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 0.82rem; color: #85847c; flex-wrap: wrap; gap: 12px; }
.footer__bottom .mono { font-family: var(--mono); letter-spacing: 0.02em; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,0.35); transition: transform 0.25s var(--ease); }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 460px; }
  .bento, .prodgrid, .featcards, .folio { grid-template-columns: repeat(2, 1fr); }
  .refwall { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav__menu { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; background: var(--surface); border-bottom: 1px solid var(--line); padding: 14px 18px 22px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 13px 12px; font-size: 1rem; justify-content: space-between; }
  .nav__drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 1px solid var(--line); border-radius: 0; margin: 2px 0 8px 14px; padding: 2px 0; display: none; }
  .nav__item--has-drop.is-open .nav__drop { display: block; }
  .nav__item--has-drop:hover .nav__link svg { transform: none; }
  .nav__item--has-drop.is-open .nav__link svg { transform: rotate(180deg); }
  .nav__cta .btn--primary { display: none; }
  .nav__toggle { display: grid; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
  .split, .split--text-right, .contact { grid-template-columns: 1fr; gap: 40px; }
  .split__media { order: -1; }
  .statsband__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .bento, .prodgrid, .featcards, .folio { grid-template-columns: 1fr; }
  .refwall { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 26px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ==========================================================================
   Instagram feed (native embeds)
   ========================================================================== */
.igfeed { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; align-items: start; }
.igfeed .instagram-media { min-width: 0 !important; width: 100% !important; max-width: 100% !important; margin: 0 !important; }
.ig-follow { display: inline-flex; align-items: center; gap: 9px; }
.ig-follow svg { width: 18px; height: 18px; }


/* ==========================================================================
   Video grid
   ========================================================================== */
.videogrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.video-item { display: flex; flex-direction: column; gap: 14px; }
.videocard { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #000; display: block; max-height: 560px; transition: box-shadow 0.3s var(--ease); }
.videocard:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.video-caption { text-align: center; padding: 0 6px; }
.video-caption h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin: 0 0 4px 0; font-weight: 500; letter-spacing: -0.01em; }
.video-caption p { font-size: 0.88rem; color: var(--muted); margin: 0; font-family: var(--sans); }
@media (max-width: 900px) { .videogrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .videogrid { grid-template-columns: 1fr; } }


/* ==========================================================================
   Brand logo image
   ========================================================================== */
.brand__logo { height: 54px; width: auto; display: block; }
.site-footer .brand__logo { height: 72px; }
@media (max-width: 560px) { .brand__logo { height: 44px; } }


/* ==========================================================================
   Header — dark gradient (modern navbar)
   ========================================================================== */

.site-header {
  background:
    linear-gradient(90deg, rgba(8,6,24,0.12) 0%, rgba(8,6,24,0.34) 50%, rgba(8,6,24,0.12) 100%),
    linear-gradient(90deg, #1d3fb2 0%, #0b8ea0 26%, #1f9a54 47%, #d56e1a 73%, #c01e74 100%);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(0,0,0,0.30); border-bottom-color: rgba(255,255,255,0.05); }

.nav__link { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.30); }
.nav__link:hover, .nav__item.is-active > .nav__link { color: #fff; background: rgba(255,255,255,0.10); }
.nav__link svg { opacity: 0.75; }

.nav__drop { background: #1b1933; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.nav__drop a { color: rgba(255,255,255,0.85); }
.nav__drop a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav__drop a span { color: rgba(255,255,255,0.5); }

.nav__cta .btn--primary {
  background: linear-gradient(180deg, #f1b840 0%, #d9a328 100%);
  color: #1b1408; font-weight: 600;
  border-radius: 9999px; padding: 0.72rem 1.5rem; border: 0;
  box-shadow: 0 8px 22px rgba(217,163,40,0.30);
}
.nav__cta .btn--primary:hover { background: linear-gradient(180deg, #f8c652 0%, #e3ad2e 100%); transform: translateY(-1px); }

.nav__toggle { border-color: rgba(255,255,255,0.22); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { background: #fff; }
.nav__toggle.is-open span { background: transparent; }

@media (max-width: 860px) {
  .nav__menu { background: #161336; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__drop { background: transparent; border: 0; border-left: 1px solid rgba(255,255,255,0.14); box-shadow: none; }
}

/* ==========================================================================
   Photo Album Effect
   ========================================================================== */
.album-wrapper {
  position: relative;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  display: flex;
  align-items: center;
}

.album-img {
  position: absolute;
  width: 55% !important; 
  height: 80% !important;
  object-fit: cover;
  border: 4px solid #fff !important;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s !important;
  transform-origin: center center;
}

.img-1 {
  left: 0;
  top: 15%;
  transform: rotate(-8deg);
  z-index: 1;
}

.img-2 {
  left: 22%;
  top: 5%;
  transform: rotate(2deg);
  z-index: 2;
}

.img-3 {
  left: 45%;
  top: 10%;
  transform: rotate(6deg);
  z-index: 3;
}

.album-img:hover {
  transform: rotate(0) scale(1.15) !important;
  z-index: 10 !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
  filter: grayscale(0) saturate(1.05) !important;
}

/* ===================== Sidebar Layout ===================== */
.page-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .page-layout {
    flex-direction: row;
  }
}
.page-main {
  flex: 1;
  min-width: 0;
}
.page-sidebar {
  width: 100%;
}
@media (min-width: 900px) {
  .page-sidebar {
    width: 308px;
    flex-shrink: 0;
    align-self: flex-start;
    position: sticky;
    top: calc(var(--header-h) + 22px);
  }
}

/* Sidebar Menu */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 18px 38px -26px rgba(16, 24, 40, 0.28);
}
.sidebar-widget__title {
  position: relative;
  padding: 16px 20px 16px 32px;
  font-family: var(--serif);
  font-size: 1.22rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  margin-top: 0;
}
.sidebar-widget__title::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 19px;
  border-radius: 4px;
  background: linear-gradient(180deg, #4f9bff, var(--accent));
}
.sidebar-menu__list {
  display: flex;
  flex-direction: column;
}
.sidebar-menu__link {
  position: relative;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), padding 0.25s var(--ease);
}
.sidebar-menu__link::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.25s var(--ease);
}
.sidebar-menu__link:last-child {
  border-bottom: none;
}
.sidebar-menu__link svg {
  width: 16px; height: 16px;
  color: var(--muted-2);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.sidebar-menu__link:hover {
  background: var(--accent-bg);
  color: var(--accent);
  padding-left: 24px;
}
.sidebar-menu__link:hover::before {
  transform: scaleY(1);
}
.sidebar-menu__link:hover svg {
  color: var(--accent);
  transform: translateX(4px);
}

/* Active / current item & "Tüm Ürünleri Gör" CTA */
.sidebar-menu__link.is-active {
  background: linear-gradient(135deg, #2a82ff, var(--accent) 55%, #0a57c9);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 24px -14px rgba(13, 112, 250, 0.85);
}
.sidebar-menu__link.is-active::before {
  display: none;
}
.sidebar-menu__link.is-active:hover {
  background: linear-gradient(135deg, #3a8bff, #1f78f5 55%, #0b5ed0);
  color: #fff;
  padding-left: 18px;
}
.sidebar-menu__link.is-active svg {
  color: #fff;
  transform: translateX(3px);
}

.sidebar-tags {
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tags .tag {
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.sidebar-tags .tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -6px rgba(13, 112, 250, 0.55);
}

/* Page Hero Angled */
.pagehero-angled {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
.pagehero-angled::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 50%;
  background: url('img/isikli-tabela-gece.jpg') center/cover no-repeat;
  opacity: 0.4;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 768px) {
  .pagehero-angled::after {
    width: 100%;
    clip-path: none;
    opacity: 0.2;
  }
}
.pagehero-angled .container {
  position: relative;
  z-index: 2;
}
.pagehero-angled h1 {
  color: #fff;
}
.pagehero-angled .crumbs {
  color: rgba(255,255,255,0.7);
}
.pagehero-angled .crumbs a:hover {
  color: #fff;
}


/* ==========================================================================
   Header - animated living gradient (lively, brand colours, ~105deg flow)
   ========================================================================== */
.site-header {
  background: linear-gradient(105deg, #181544 0%, #1d3a5c 28%, #0f5b56 52%, #1d3a5c 76%, #181544 100%);
  background-size: 260% 100%;
  animation: navFlow 22s ease-in-out infinite;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 200% at 10% 50%, rgba(64,150,255,0.22), transparent 60%),
    radial-gradient(50% 200% at 50% 50%, rgba(32,210,178,0.20), transparent 60%),
    radial-gradient(45% 200% at 90% 50%, rgba(236,140,66,0.16), transparent 60%);
  background-size: 220% 100%;
  background-repeat: no-repeat;
  animation: navGlow 19s ease-in-out infinite alternate;
}
.site-header > .container { position: relative; z-index: 1; }

@keyframes navFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes navGlow {
  0%   { background-position: 0% 50%, 55% 50%, 100% 50%; }
  100% { background-position: 100% 50%, 5% 50%, 25% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header, .site-header::before { animation: none; }
}


/* ---- pagehero-angled: metin okunabilirligi (arka plan gorseli uzerinde) ---- */
.pagehero-angled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26,26,24,0.86) 0%, rgba(26,26,24,0.58) 40%, rgba(26,26,24,0.20) 70%, rgba(26,26,24,0) 100%);
}
.pagehero-angled p { color: rgba(255,255,255,0.86); max-width: 620px; }
.pagehero-angled .crumbs { color: rgba(255,255,255,0.80); }
.pagehero-angled .crumbs a { color: rgba(255,255,255,0.80); }
.pagehero-angled .crumbs span { color: rgba(255,255,255,0.45); }
@media (max-width: 768px) {
  .pagehero-angled::before { background: linear-gradient(90deg, rgba(26,26,24,0.90), rgba(26,26,24,0.74)); }
  .pagehero-angled p { max-width: none; }
}

/* pagehero-angled: per-page background image via --hero-img */
.pagehero-angled::after { background-image: var(--hero-img, url('img/isikli-tabela-gece.jpg')); }

.pagehero-angled::after { opacity: var(--hero-opacity, 0.4); }

/* ===================== Portfolio: filter · lightbox · testimonials ===================== */
.folio-filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.folio-filter__btn {
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 9px 17px; border-radius: 9999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.folio-filter__btn:hover { border-color: var(--muted-2); color: var(--ink); }
.folio-filter__btn.is-active {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(13,112,250,0.6);
}
.folio__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(15,15,14,0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: lb-fade 0.25s var(--ease); }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { margin: 0; max-width: min(1100px, 92vw); display: flex; flex-direction: column; gap: 12px; }
.lightbox__stage img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.55); }
.lightbox__stage figcaption { text-align: center; }
.lightbox__stage figcaption b { font-family: var(--serif); font-size: 1.1rem; color: #fff; display: block; }
.lightbox__stage figcaption span { font-family: var(--mono); font-size: 0.74rem; color: #cfceca; letter-spacing: 0.05em; }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #fff; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background 0.2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__close { top: 20px; right: 22px; width: 44px; height: 44px; font-size: 26px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
@media (max-width: 600px) { .lightbox__nav { width: 42px; height: 42px; font-size: 26px; } .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; } }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 18px 38px -28px rgba(16,24,40,0.26);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 26px 48px -26px rgba(16,24,40,0.34); }
.testimonial__stars { color: var(--accent); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial blockquote { margin: 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.testimonial figcaption { margin-top: auto; }
.testimonial figcaption b { display: block; font-size: 0.98rem; color: var(--ink); }
.testimonial figcaption span { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ===================== Cookie consent ===================== */
.cookie-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1100;
  max-width: 780px; margin: 0 auto;
  background: var(--ink); color: #f2f1ed;
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 18px 50px -16px rgba(0,0,0,0.5);
  transform: translateY(160%); transition: transform 0.45s var(--ease);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-consent p { color: #cfceca; font-size: 0.9rem; margin: 0; flex: 1 1 280px; line-height: 1.5; }
.cookie-consent a { color: #fff; text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-consent .btn { padding: 0.6rem 1.2rem; font-size: 0.86rem; }
@media (max-width: 520px) { .cookie-consent { align-items: stretch; } .cookie-consent__actions { justify-content: flex-end; } }

/* ===================== Process / steps ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 38px -28px rgba(16,24,40,0.3); }
.step__ic { width: 42px; height: 42px; color: var(--accent); margin-bottom: 14px; }
.step__ic svg { width: 100%; height: 100%; }
.step__no { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; }
.step h4 { font-family: var(--serif); font-size: 1.18rem; margin: 6px 0 8px; }
.step p { font-size: 0.94rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ===================== Legal / prose page ===================== */
.prose { max-width: 52rem; }
.prose h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.18rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.8; margin-bottom: 13px; font-size: 1.02rem; }
.prose ul { padding-left: 22px; margin-bottom: 16px; list-style: disc; }
.prose .lead { font-size: 1.14rem; color: var(--muted); margin-bottom: 28px; }
.prose strong { color: var(--ink); }
.legal-note { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.92rem; color: var(--muted); margin: 28px 0; }

/* ===================== Accessibility ===================== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* <picture> wrapper must not disturb existing <img> layout */
picture { display: contents; }

/* ===================== Mobile quick-action bar ===================== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; gap: 8px; padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px -14px rgba(0,0,0,0.3);
}
.mobile-cta a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 8px 4px; border-radius: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-soft);
  background: var(--bg-soft); border: 1px solid var(--line);
}
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-cta a.is-wa { background: #25D366; color: #fff; border-color: #25D366; }
.mobile-cta a.is-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .wa-float { display: none; }
  .cookie-consent { bottom: 84px; }
}

/* ===================== Blog / Rehber ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(16,24,40,0.3); }
.post-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.post-card__body h3 { font-size: 1.16rem; line-height: 1.3; }
.post-card__body p { font-size: 0.93rem; color: var(--muted); margin: 0; }
.post-card__more { margin-top: auto; font-weight: 600; font-size: 0.9rem; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; }
.post-card__more svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.post-card:hover .post-card__more svg { transform: translateX(4px); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.article-meta { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.article-cta { background: var(--ink); color: #f2f1ed; border-radius: var(--radius); padding: 30px 32px; margin: 44px 0 8px; }
.article-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.article-cta p { color: #c9c8c3; margin-bottom: 18px; }
.related { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 28px; }
.related h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 16px; }
.related ul { display: grid; gap: 10px; }
.related a { display: inline-flex; gap: 8px; align-items: center; color: var(--ink-soft); font-weight: 500; }
.related a:hover { color: var(--accent); }
