/* ============================================================
   SINA PRODÜKSİYON
   Tema sistemi — BMW Motorrad ruhunda, kreatif & premium
   Fontlar: Instrument Sans (gövde) + Instrument Serif (başlık)
   ============================================================ */

/* ===== Form notice (success/error) ===== */
.form-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  font-size: 14.5px;
  font-weight: 500;
}
.form-notice--success {
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .35);
  color: #117a3a;
}
.form-notice--error {
  background: rgba(224, 32, 32, .08);
  border: 1px solid rgba(224, 32, 32, .35);
  color: #b71c1c;
}
.form-notice svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ===== Sub-menu (mobil drawer) ===== */
.mobile-submenu {
  display: grid;
  gap: 2px;
  padding-left: 16px;
  margin-bottom: 8px;
}
.mobile-sub-item {
  font-size: 18px !important;
  padding: 8px 0 !important;
  color: rgba(255,250,242,.7) !important;
  border-bottom: 0 !important;
}

/* ===== Gutenberg wp-block-* container clean-up ===== */
/* wp-block-columns / wp-block-group eklediği margin'leri sıfırla — bizim section padding'i yeterli */
.sina-section { padding: 110px 0; }
.sina-section > .wp-block-group,
.sina-section > .wp-block-columns { margin: 0; }
.wp-block-columns.wrap { margin-left: auto; margin-right: auto; }
.wp-block-columns.about-grid,
.wp-block-columns.editorial-grid,
.wp-block-columns.contact-grid,
.wp-block-columns.timeline,
.wp-block-columns.stats,
.wp-block-columns.why-us {
  margin: 0;
}
.wp-block-column { padding: 0 !important; min-width: 0; }

/* ===== Gutenberg native button uyumu =====
   .wp-block-button__link (Gutenberg button) → bizim .btn ile aynı görünüm.
   Kullanıcı sidebar'dan renk seçtiğinde inline style ezmeli; biz !important kullanmıyoruz. */
.wp-block-button .wp-block-button__link.wp-element-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.wp-block-button .wp-block-button__link.wp-element-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #14100d;
  box-shadow: 0 14px 32px rgba(240,160,48,.22);
}
/* Primary (default) — gold. :not() ile kullanıcı renk seçince OTOMATIK pas geçer */
.wp-block-button:not(.is-style-outline) .wp-block-button__link.wp-element-button:not(.has-background) {
  background: var(--gold);
  border-color: var(--gold);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.wp-element-button:not(.has-text-color) {
  color: #14100d;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.wp-element-button:not(.has-background):hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}
/* Outline variant */
.wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-background) {
  background: transparent;
  border-color: var(--line-strong);
}
.wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-text-color) {
  color: var(--ink);
}
/* Dark section'da outline button cream */
.dark-section .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-text-color),
.cta-big .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-text-color),
.hero .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-text-color) {
  color: var(--paper);
}
.dark-section .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-background),
.cta-big .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-background),
.hero .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:not(.has-background) {
  border-color: rgba(255,250,242,.4);
}
.dark-section .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:hover,
.cta-big .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* (Eski "color: inherit !important" kuralı kaldırıldı — yukarıda explicit kurallar var) */


:root {
  --bg: #f6efe2;
  --bg-2: #efe5d2;
  --surface: #fffaf2;
  --surface-2: #efe4d6;
  --paper: #fffaf2;
  --text: #14100d;
  --ink: #14100d;
  --cream: #f6efe2;
  --muted: #6a5f56;
  --muted-dark: #5a4f47;
  --line: rgba(20, 16, 13, .12);
  --line-strong: rgba(20, 16, 13, .22);
  --line-dark: rgba(255, 250, 242, .14);
  --night: #0e0a14;
  --night-2: #15101b;
  --night-3: #1d1726;
  --gold: #f0a030;
  --gold-2: #ffbe5c;
  --red: #e02020;
  --blue: #0080c0;
  --max: 1280px;
  --max-narrow: 1080px;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4 { margin-top: 0; }

::selection { background: var(--gold); color: #14100d; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px;
}

.wrap.narrow { max-width: var(--max-narrow); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 239, 226, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

.site-header.scrolled {
  background: rgba(20, 16, 13, .92);
  border-bottom-color: rgba(255, 250, 242, .08);
}
.site-header.scrolled .menu { color: rgba(255, 250, 242, .82); }
.site-header.scrolled .menu a:not(.phone-link):hover { color: #fff; }
.site-header.scrolled .phone-link {
  color: #fff;
  border-color: rgba(255,250,242,.22);
  background: rgba(240,160,48,.18);
}
.site-header.scrolled .brand img { filter: brightness(0) invert(1); opacity: .96; }
.site-header.scrolled .nav-toggle span { background: #fff; }

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  z-index: 2;
}
.brand img {
  width: 96px;
  height: auto;
  transition: filter .35s var(--ease);
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(20, 16, 13, .7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}

.menu a {
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.menu a:not(.phone-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.menu a:hover,
.menu a:focus-visible { color: var(--ink); }
.menu a:hover::after,
.menu a:focus-visible::after { transform: scaleX(1); }

/* Dropdown menu (Hizmetler) */
.has-submenu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* dropdown link'in underline'ını kapatıyoruz, dropdown açılması zaten visual feedback veriyor */
.menu .has-submenu > a::after { display: none !important; }
.has-submenu > a { transition: color .25s var(--ease); }
.has-submenu:hover > a,
.has-submenu:focus-within > a { color: var(--ink); }
.has-submenu > a .caret {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  color: var(--gold);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.has-submenu > a .caret svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}
.has-submenu:hover > a .caret,
.has-submenu:focus-within > a .caret { transform: rotate(180deg); color: var(--gold-2); }
.site-header.scrolled .has-submenu > a .caret { color: var(--gold-2); }
.has-submenu:hover > a::after,
.has-submenu:focus-within > a::after {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(255, 250, 242, .98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 28px 60px rgba(20,16,13,.18);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
  z-index: 90;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s 0s;
}
.submenu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.submenu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 500;
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.submenu a::after { display: none !important; }
.submenu a:hover {
  background: var(--surface);
  padding-left: 18px;
}
.submenu a .icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.submenu a .icon-box svg { width: 14px; height: 14px; }
.submenu a small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: 2px;
}
.submenu a span:not(.icon-box) {
  display: grid;
  gap: 0;
}
.submenu a strong { font-weight: 600; font-size: 14.5px; line-height: 1.2; }

.site-header.scrolled .submenu {
  background: rgba(20, 16, 13, .96);
  border-color: rgba(255,250,242,.1);
}
.site-header.scrolled .submenu a { color: var(--paper) !important; }
.site-header.scrolled .submenu a:hover { background: rgba(255,250,242,.06); }
.site-header.scrolled .submenu a small { color: rgba(255,250,242,.6); }

.header-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.header-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.header-icon svg { width: 17px; height: 17px; }
.header-icon:hover,
.header-icon:focus-visible {
  background: var(--gold);
  color: #14100d;
  outline: 0;
}
.header-icon.whatsapp:hover { background: #25d366; color: #fff; }
.header-icon[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  letter-spacing: .04em;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.header-icon:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }

.site-header.scrolled .header-icons { border-left-color: rgba(255,250,242,.1); }
.site-header.scrolled .header-icon { color: var(--paper); }

.phone-link {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--ink);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.phone-link::before { display: none; }
.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #14100d;
  flex: 0 0 auto;
}
.phone-icon svg { width: 12px; height: 12px; stroke-width: 2.4; }
.brand-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: inherit;
}
.brand-svg svg { width: 100%; height: 100%; display: block; }
.phone-link:hover {
  background: var(--gold);
  color: #14100d;
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: var(--night);
  color: var(--paper);
  display: grid;
  grid-template-rows: var(--header-h) 1fr auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-drawer-body {
  padding: 30px 24px 0;
  overflow-y: auto;
  display: grid;
  gap: 4px;
  align-content: start;
}
.mobile-drawer-body a {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,250,242,.08);
  color: var(--paper);
  position: relative;
  transition: color .25s var(--ease), padding-left .35s var(--ease);
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-drawer-body a::before {
  content: "→";
  font-family: "Instrument Sans", sans-serif;
  font-size: 22px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}
.mobile-drawer-body a:hover,
.mobile-drawer-body a:focus-visible { color: var(--gold-2); padding-left: 10px; }
.mobile-drawer-body a:hover::before,
.mobile-drawer-body a:focus-visible::before { opacity: 1; transform: none; }
.mobile-drawer-footer {
  padding: 22px 24px 30px;
  border-top: 1px solid rgba(255,250,242,.1);
  display: grid;
  gap: 12px;
  color: rgba(255,250,242,.72);
  font-size: 14px;
}
.mobile-drawer-footer strong { color: var(--paper); font-weight: 600; }
.mobile-drawer-footer .socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.mobile-drawer-footer .socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,250,242,.2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--paper);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.mobile-drawer-footer .socials a:hover { background: var(--gold); color: #14100d; border-color: var(--gold); }

body.menu-open { overflow: hidden; }

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 22px;
  position: relative;
  padding-left: 0;
  display: block;
}
.eyebrow::before {
  content: "";
  display: none;
}
.eyebrow.line {
  padding-left: 40px;
}
.eyebrow.line::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1.5px;
  margin-top: -.75px;
  background: currentColor;
}

h1, h2, h3, .section-title,
.hero h1, .page-hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: .98;
  text-wrap: balance;
  font-style: normal;
  margin-left: 0;
}

.hero h1 {
  font-size: clamp(48px, 8.4vw, 124px);
  margin-bottom: 28px;
  letter-spacing: -.022em;
}

.section-title {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 0;
  letter-spacing: -.015em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-copy,
.lead,
.section-head p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  margin-bottom: 0;
}

.hero-copy { max-width: 600px; margin-bottom: 38px; }

/* ========== HERO (BMW cinematic) ========== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 80px 0 60px;
  overflow: hidden;
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--hero-image, url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2400&q=85")) center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

/* ========== HERO SLIDER (multiple slides) ========== */
.hero[data-slider] { position: relative; }
.hero[data-slider]::before,
.hero[data-slider]::after { display: none; }
.hero[data-slider] .slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-items: end;
  padding: 80px 0 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease-out), visibility 0s linear .9s;
}
.hero[data-slider] .slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .9s var(--ease-out), visibility 0s linear 0s;
  z-index: 1;
}
.hero[data-slider] .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.04);
}
.hero[data-slider] .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,10,20,.36) 0%, rgba(14,10,20,.58) 60%, rgba(14,10,20,.92) 100%),
    linear-gradient(90deg, rgba(14,10,20,.62) 0%, rgba(14,10,20,.18) 60%);
}
.slider-dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,250,242,.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.slider-dot.is-active { background: var(--gold); transform: scale(1.3); }
.slider-dot:hover { background: rgba(255,250,242,.6); }
@media (max-width: 860px) { .slider-dots { right: 16px; bottom: 16px; } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(14,10,20,.36) 0%, rgba(14,10,20,.58) 60%, rgba(14,10,20,.92) 100%),
    linear-gradient(90deg, rgba(14,10,20,.62) 0%, rgba(14,10,20,.18) 60%);
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.14); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .5fr);
  align-items: end;
  gap: 60px;
  width: 100%;
}

.hero .eyebrow { color: var(--gold-2); }
.hero .eyebrow::before { background: var(--gold-2); }

.hero-copy { color: rgba(255, 250, 242, .82); }

.hero-meta {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(255,250,242,.22);
  padding-left: 24px;
}
.hero-meta-item { display: grid; gap: 4px; }
.hero-meta-item small {
  color: rgba(255,250,242,.55);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.hero-meta-item strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--paper);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,250,242,.7);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,250,242,.7), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ========== ACTIONS / BUTTONS ========== */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn::after {
  content: "→";
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover::after,
.btn:focus-visible::after { transform: translateX(4px); }

.btn:hover,
.btn:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #14100d;
  outline: 0;
  box-shadow: 0 14px 32px rgba(240,160,48,.22);
}
.hero .btn,
.dark-section .btn,
.visual-cta .btn,
.page-hero .btn {
  color: var(--paper);
  border-color: rgba(255,250,242,.4);
  background: rgba(255,250,242,.06);
}
.hero .btn:hover,
.dark-section .btn:hover,
.visual-cta .btn:hover,
.page-hero .btn:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn.primary {
  color: #14100d;
  border-color: var(--gold);
  background: var(--gold);
}
.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: #14100d;
  box-shadow: 0 18px 42px rgba(240,160,48,.32);
}

.btn.ghost {
  background: transparent;
}

/* ========== ICON BOXES ========== */
.icon-box {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(240,160,48,.4);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(240,160,48,.1);
  flex: 0 0 auto;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.icon-box svg { width: 20px; height: 20px; stroke-width: 1.6; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a::after { content: "/"; color: var(--muted); margin-left: 10px; }
.breadcrumb span { color: var(--gold); }
.page-hero .breadcrumb,
.page-hero .breadcrumb-page {
  color: rgba(255,250,242,.7) !important;
  border-bottom-color: rgba(255,250,242,.14);
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb-page a {
  color: rgba(255,250,242,.9) !important;
}
.page-hero .breadcrumb a::after,
.page-hero .breadcrumb-page a::after {
  color: rgba(255,250,242,.45);
}
.page-hero .breadcrumb span,
.page-hero .breadcrumb-page span {
  color: var(--gold-2) !important;
}

/* ========== SECTIONS ========== */
section { padding: 110px 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .5fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-head.compact { margin-bottom: 24px; }
.section-head.center { grid-template-columns: 1fr; text-align: center; place-items: center; }
.section-head.center p { max-width: 620px; }

.light {
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(239,229,210,.6)),
    var(--paper);
}
.light .eyebrow { color: #b76e10; }
.light .eyebrow::before { background: #b76e10; }
.light .section-head p, .light .lead, .light p { color: var(--muted-dark); }

.dark-section {
  background: var(--night);
  color: var(--paper);
}

.sina-stats {
  padding: 80px 0;
}

.marquee {
  padding: 0;
}
.dark-section .section-head p,
.dark-section .lead,
.dark-section p {
  color: rgba(255,250,242,.72);
}
.dark-section .eyebrow { color: var(--gold-2); }
.dark-section .eyebrow::before { background: var(--gold-2); }

/* ========== MARQUEE (BMW signature) ========== */
.marquee {
  background: var(--night);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(255,250,242,.06);
}
.marquee-light { background: var(--paper); color: var(--ink); border-color: var(--line); }
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1;
  letter-spacing: -.015em;
  font-style: italic;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
  flex: 0 0 auto;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== INTRO / ABOUT GRID ========== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: 70px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-list > div,
.feature-list .feature-card,
.feature-list .wp-block-column {
  display: grid;
  gap: 10px;
  align-content: start;
  background: var(--paper);
  padding: 24px;
  transition: background .35s var(--ease);
  margin: 0;
}
.feature-list > div:hover,
.feature-list .feature-card:hover,
.feature-list .wp-block-column:hover { background: var(--surface); }
.feature-list strong,
.feature-list .feature-title {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.05;
  margin: 0;
}
.feature-list span:not(.icon-box),
.feature-list .feature-desc {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.point-list { display: grid; gap: 12px; margin-top: 24px; }
.point {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 16px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.point strong { display: block; margin-bottom: 4px; }
.point span { color: var(--muted); }

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat {
  min-height: 180px;
  padding: 32px 22px;
  display: grid;
  align-content: end;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: 0; }
.stat strong,
.stat h3.stat-value,
.stat .stat-value {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  color: var(--paper);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.stat .stat-label,
.stat p.stat-label {
  color: rgba(255,250,242,.65);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0;
}
.stat strong em { font-style: italic; color: var(--gold-2); }
.stat span {
  color: rgba(255,250,242,.65);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* light variant of stats */
.light .stats { border-color: var(--line); }
.light .stat { border-color: var(--line); }
.light .stat strong { color: var(--ink); }
.light .stat span { color: var(--muted); }

/* ========== SERVICES (BMW dark cards) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,250,242,.08);
  border: 1px solid rgba(255,250,242,.08);
}

.service-card {
  min-height: 540px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 28px;
  background: var(--night);
  isolation: isolate;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transform: scale(1.02);
  transition: transform .8s var(--ease-out), opacity .6s var(--ease);
  z-index: -2;
}
.service-card:hover img { transform: scale(1.1); opacity: .8; }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,10,20,.05) 0%, rgba(14,10,20,.3) 38%, rgba(14,10,20,.92) 100%);
  z-index: -1;
}
.service-card:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.service-content {
  position: relative;
  color: var(--paper);
  width: 100%;
  display: grid;
  gap: 8px;
}
.service-content small {
  display: block;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  margin-bottom: 12px;
}
.service-content h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.02;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.service-content p {
  color: rgba(255, 247, 236, .72);
  margin-bottom: 14px;
  font-size: 14.5px;
}
.service-card .icon-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,250,242,.34);
  display: grid;
  place-items: center;
  color: var(--paper);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover .icon-arrow {
  background: var(--gold);
  color: #14100d;
  border-color: var(--gold);
  transform: translateX(4px);
}
.service-card .icon-arrow svg { width: 18px; height: 18px; }

/* ========== EDITORIAL GRID ========== */
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .58fr);
  gap: 60px;
  align-items: center;
}
.editorial-grid.reverse { grid-template-columns: minmax(340px, .58fr) minmax(0, .82fr); }
.editorial-grid.reverse .editorial-image { order: -1; }

.editorial-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.editorial-image:hover img { transform: scale(1.04); }
.editorial-image .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(20,16,13,.7);
  color: var(--paper);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 1;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.mini-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--muted-dark);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* ========== TIMELINE / PROCESS ========== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,250,242,.18);
}
.timeline-step {
  padding: 0 22px 0 0;
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
}
.timeline-step .num,
.timeline-step p.num {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--night-3);
  border: 1px solid rgba(255,250,242,.18);
  display: grid;
  place-items: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  line-height: 1;
}
.timeline-step:hover .num { background: var(--gold); color: #14100d; border-color: var(--gold); }
.timeline-step h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin: 4px 0 0;
}
.timeline-step p { color: rgba(255,250,242,.7); margin: 0; font-size: 15px; }
.dark-section .timeline-step .num,
.dark-section .timeline-step p.num {
  color: var(--gold) !important;
}
.dark-section .timeline-step:hover .num,
.dark-section .timeline-step:hover p.num {
  color: #14100d !important;
}

/* light variant timeline */
.light .timeline::before,
section:not(.dark-section) .timeline::before { background: var(--line); }
section:not(.dark-section) .timeline-step .num { background: var(--paper); color: var(--gold) !important; border-color: var(--line); }
section:not(.dark-section) .timeline-step p { color: var(--muted); }

/* ========== PROCESS CARDS (legacy) ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.process-card:hover,
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,160,48,.34);
  box-shadow: 0 22px 60px rgba(20,16,13,.08);
}
.process-card .icon-box,
.quote-card .icon-box { margin-bottom: 22px; }
.process-card small {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  margin-bottom: 12px;
}
.process-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.05;
}
.process-card p,
.quote-card p { color: var(--muted); margin-bottom: 0; }

/* ========== TESTIMONIALS ========== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card strong {
  display: block;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.quote-card small {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 12px;
  text-transform: uppercase;
}

/* ========== FEATURED WORK / WORK GRID ========== */
.work-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1px;
  border: 1px solid rgba(255,250,242,.08);
  background: rgba(255,250,242,.08);
}
.work-main,
.work-side { background: var(--night); color: var(--paper); }
.work-main {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 32px;
}
.work-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  transition: transform 1s var(--ease-out);
}
.work-main:hover img { transform: scale(1.06); }
.work-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.9));
}
.work-copy { position: relative; z-index: 1; max-width: 640px; }
.work-copy h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -.015em;
}
.work-copy p { color: rgba(255,247,236,.78); }

.work-side { display: grid; grid-template-rows: repeat(3, 1fr); }
.work-item {
  padding: 28px;
  border-bottom: 1px solid rgba(255,250,242,.1);
  display: grid;
  align-content: center;
  transition: background .35s var(--ease);
}
.work-item:hover { background: rgba(255,250,242,.04); }
.work-item:last-child { border-bottom: 0; }
.work-item span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 12px;
  font-size: 12px;
}
.work-item h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.05;
}
.work-item p { color: rgba(255,250,242,.7); margin-bottom: 0; font-size: 14.5px; }

/* ========== PORTFOLIO MASONRY ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  grid-auto-rows: 300px;
  gap: 14px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  isolation: isolate;
}
.portfolio-item.large { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .8s var(--ease-out), opacity .5s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.08); opacity: 1; }
.portfolio-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--paper);
  transform: translateY(8px);
  transition: transform .4s var(--ease);
}
.portfolio-item:hover .portfolio-caption { transform: translateY(0); }
.portfolio-caption small {
  display: block;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 8px;
  font-size: 12px;
}
.portfolio-caption strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -.005em;
}
.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0,0,0,.85));
  pointer-events: none;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,160,48,.36);
  box-shadow: 0 22px 60px rgba(20,16,13,.08);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card-content { padding: 24px; }
.blog-card small {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  text-transform: uppercase;
}
.blog-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  margin: 12px 0 10px;
  line-height: 1.08;
  letter-spacing: -.005em;
}
.blog-card p { color: var(--muted); margin-bottom: 0; font-size: 15px; }

/* ========== CONTENT (article pages) ========== */
.content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}
.content-flow { display: grid; gap: 24px; }
.content-flow.narrow { max-width: 760px; }
.content-flow h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 20px 0 0;
}
.content-flow p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}
.content-flow ul li {
  color: var(--muted);
  margin-bottom: 8px;
}

.featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 16px;
}
.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
}
.side-card.dark {
  color: var(--paper);
  background: var(--night);
  border-color: rgba(255,250,242,.08);
}
.side-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 16px;
  letter-spacing: -.005em;
}
.side-card p { color: var(--muted); margin-bottom: 14px; }
.side-card.dark p { color: rgba(255,250,242,.72); }
.side-card a:not(.btn) {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.side-card.dark a:not(.btn) { border-color: rgba(255,250,242,.08); color: rgba(255,250,242,.7); }
.side-card a.active,
.side-card a:not(.btn):hover { color: var(--ink); }
.side-card.dark a.active,
.side-card.dark a:not(.btn):hover { color: var(--paper); }
.side-card a .icon-box { width: 34px; height: 34px; }
.side-card a .icon-box svg { width: 16px; height: 16px; }

/* ========== HERO PANEL (legacy) ========== */
.hero-panel,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, .86);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.hero-panel:hover,
.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(240,160,48,.34);
  box-shadow: 0 22px 60px rgba(20,16,13,.16);
}
.hero-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-panel-content { padding: 22px; }
.hero-panel strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-panel p { color: var(--muted); margin-bottom: 0; }

/* ========== PARTNERS ========== */
.partner-section { overflow: hidden; padding: 60px 0; background: var(--paper); }
.partner-carousel {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.partner-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 22px 0;
  animation: marquee 30s linear infinite;
}
.partner-logo {
  min-width: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 26px;
  text-align: center;
  color: rgba(20,16,13,.6);
  background: var(--paper);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.partner-logo:hover { color: var(--ink); background: var(--surface); }

/* ========== VISUAL CTA ========== */
.visual-cta {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(14,10,20,.94), rgba(14,10,20,.62)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2000&q=85") center / cover;
  position: relative;
}

.visual-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.visual-cta .lead {
  color: rgba(255,250,242,.82);
  max-width: 680px;
}

/* ========== CTA BIG (alternative) ========== */
.cta-big {
  background: var(--night);
  color: var(--paper);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-big::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(240,160,48,.16), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,128,192,.1), transparent 50%);
  pointer-events: none;
}
.cta-big > * { position: relative; }
.cta-big h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 110px);
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 1000px;
  margin: 0 auto 28px;
}
.cta-big h2 em { color: var(--gold-2); font-style: italic; }
.cta-big p { color: rgba(255,250,242,.78); max-width: 640px; margin: 0 auto 36px; font-size: 18px; }
.cta-big .actions { justify-content: center; }
.cta-big .btn:not(.primary) {
  color: var(--paper) !important;
  border-color: rgba(255,250,242,.28) !important;
  background: rgba(255,250,242,.06) !important;
}
.cta-big .btn:not(.primary):hover,
.cta-big .btn:not(.primary):focus-visible {
  color: #14100d !important;
  border-color: var(--paper) !important;
  background: var(--paper) !important;
}

/* ========== FORM ========== */
.form { display: grid; gap: 14px; padding: 28px; }
.form.panel,
.sina-contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.form-intro {
  color: var(--muted-dark);
  margin-bottom: 4px;
}
.form-intro > *:last-child { margin-bottom: 0; }
.form label {
  display: grid;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn {
  width: 100%;
  margin-top: 6px;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240,160,48,.14);
}
.sina-form-embed {
  display: grid;
  gap: 22px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
}
.sina-form-embed .form-intro h1,
.sina-form-embed .form-intro h2,
.sina-form-embed .form-intro h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  margin: 0 0 10px;
  color: var(--ink);
}
.sina-form-embed .form-intro p {
  color: var(--muted-dark);
  margin: 0;
  max-width: 520px;
}
.sina-form-embed form,
.sina-form-shortcode form {
  display: grid;
  gap: 14px;
}
.sina-form-embed input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.sina-form-embed textarea,
.sina-form-embed select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
}
.sina-form-embed textarea { min-height: 140px; resize: vertical; }
.sina-form-embed input[type="submit"],
.sina-form-embed button {
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #14100d;
  padding: 12px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.sina-form-placeholder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px dashed rgba(240,160,48,.45);
  border-radius: var(--radius);
  background: rgba(240,160,48,.08);
}
.sina-form-placeholder p { margin: 0; color: var(--muted-dark); }

/* ========== FIXED FAB ACTIONS ========== */
.fixed-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.fixed-action {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #14100d;
  background: var(--gold);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 14px 36px rgba(20,16,13,.28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fixed-action.whatsapp { background: #25d366; color: #fff; }
.fixed-action svg { width: 22px; height: 22px; stroke-width: 2; }
.fixed-action:hover,
.fixed-action:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(20,16,13,.34);
  outline: 0;
}

/* ========== REVEAL ANIMS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

.split-line {
  display: block;
  overflow: hidden;
}
.split-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.split-line.in > span { transform: none; }
.split-line.in > span.delay-1 { transition-delay: .1s; }
.split-line.in > span.delay-2 { transition-delay: .2s; }
.split-line.in > span.delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal, .split-line > span { opacity: 1; transform: none; }
}

/* ========== CONTACT (legacy) ========== */
.contact-row {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.contact-row strong { overflow-wrap: anywhere; font-size: 16px; font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: 46px;
  align-items: start;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.contact-card.roomy { margin-top: 28px; }

/* ========== PAGE HERO (sub-pages) ========== */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 60svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--paper);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--page-image, url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=2000&q=85")) center / cover;
  transform: scale(1.04);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,10,20,.46) 0%, rgba(14,10,20,.62) 60%, rgba(14,10,20,.92) 100%),
    linear-gradient(90deg, rgba(14,10,20,.7) 0%, rgba(14,10,20,.2) 60%);
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  max-width: 920px;
  margin-bottom: 22px;
  letter-spacing: -.015em;
}
.page-hero p {
  max-width: 720px;
  color: rgba(255,250,242,.82);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 0;
}

/* ========== DETAIL GRID ========== */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(300px, .45fr);
  gap: 40px;
}
.detail-list { display: grid; gap: 12px; }
.detail-list li {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 18px 20px;
  color: var(--muted);
}
.detail-list ul { padding: 0; margin: 0; display: grid; gap: 12px; }

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid rgba(255,250,242,.08);
  background: var(--night);
  color: rgba(255,250,242,.62);
  padding: 80px 0 28px;
}
.site-footer h3 {
  color: var(--paper) !important;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .9fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,250,242,.08);
}
.footer-logo { width: 110px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: .9; }
.footer-grid p { color: rgba(255,250,242,.6); font-size: 14.5px; line-height: 1.6; }
.site-footer ul,
.site-footer ol,
.site-footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer,
.site-footer p,
.site-footer span,
.site-footer li,
.site-footer .footer-bottom {
  color: rgba(255,250,242,.66) !important;
}
.footer-grid a {
  display: block;
  margin: 0 0 12px;
  color: rgba(255,250,242,.72) !important;
  font-size: 14.5px;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.footer-grid a:hover { color: var(--gold) !important; padding-left: 6px; }
.footer-socials { display: flex !important; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 42px !important;
  height: 42px !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid rgba(255,250,242,.22) !important;
  border-radius: 999px !important;
  color: rgba(255,250,242,.78) !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease) !important;
}
.footer-socials a:hover {
  background: var(--gold) !important;
  color: #14100d !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
}
.footer-socials .brand-svg { width: 16px; height: 16px; }
.footer-socials svg { display: block; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,250,242,.45);
}

/* ========== FAQ (accordion) ========== */
.faq-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.005em;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold);
  flex: 0 0 auto;
  transition: transform .35s var(--ease);
  line-height: .8;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-content {
  padding: 0 0 28px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}
.dark-section .faq-item summary { color: var(--paper); }
.dark-section .faq-grid { border-top-color: rgba(255,250,242,.12); }
.dark-section .faq-item { border-bottom-color: rgba(255,250,242,.12); }
.dark-section .faq-item[open] summary { color: var(--gold-2); }
.dark-section .faq-content { color: rgba(255,250,242,.72); }

/* ========== WHY US (6-grid features) ========== */
.why-us {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-us > div {
  background: var(--paper);
  padding: 32px 28px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: background .35s var(--ease);
}
.why-us > div:hover { background: var(--surface); }
.why-us .icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
}
.why-us .icon-box svg { width: 22px; height: 22px; }
.why-us h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.005em;
  margin: 0;
}
.why-us p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.55; }
.dark-section .why-us { background: rgba(255,250,242,.08); border-color: rgba(255,250,242,.08); }
.dark-section .why-us > div { background: var(--night); }
.dark-section .why-us > div:hover { background: var(--night-2); }
.dark-section .why-us p { color: rgba(255,250,242,.7); }

/* ========== VALUE PROPS ========== */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-prop {
  background: var(--paper);
  padding: 36px 28px;
  display: grid;
  gap: 12px;
  align-content: end;
  min-height: 220px;
}
.value-prop strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}
.value-prop h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  margin: 0;
}
.value-prop p { margin: 0; color: var(--muted); font-size: 14px; }

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,160,48,.34);
  box-shadow: 0 22px 60px rgba(20,16,13,.08);
}
.team-card .img {
  aspect-ratio: 4 / 5;
  background: var(--surface-2) center / cover;
  position: relative;
}
.team-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,13,.5));
}
.team-card-content { padding: 22px; }
.team-card small {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  text-transform: uppercase;
}
.team-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin: 8px 0 0;
}

/* ========== MISSION & VISION (split) ========== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,250,242,.1);
  border: 1px solid rgba(255,250,242,.1);
}
.mv-card {
  background: var(--night);
  color: var(--paper);
  padding: 50px 40px;
  display: grid;
  align-content: start;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240,160,48,.16), transparent 65%);
  pointer-events: none;
}
.mv-card .icon-box {
  width: 56px;
  height: 56px;
  background: rgba(240,160,48,.15);
  border-color: rgba(240,160,48,.5);
}
.mv-card .icon-box svg { width: 22px; height: 22px; }
.mv-card small {
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 11px;
  text-transform: uppercase;
}
.mv-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0;
  max-width: 460px;
}
.mv-card p { color: rgba(255,250,242,.78); margin: 0; max-width: 480px; }

/* ========== NEWSLETTER ========== */
.newsletter {
  background:
    linear-gradient(120deg, rgba(240,160,48,.14), rgba(0,128,192,.08)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: center;
}
.newsletter h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 8px 0;
  max-width: 480px;
}
.newsletter p { color: var(--muted-dark); margin: 0; max-width: 480px; }
.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter input {
  flex: 1 1 220px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}
.newsletter input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240,160,48,.16);
}
.newsletter button {
  border-radius: 999px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s var(--ease);
}
.newsletter button:hover { background: var(--gold); color: #14100d; }
.newsletter small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12.5px;
}

/* ========== TRUST BADGES ========== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-bar > div {
  background: var(--paper);
  padding: 24px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.trust-bar .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(240,160,48,.12);
  border-color: rgba(240,160,48,.34);
}
.trust-bar strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.1;
}
.trust-bar span:not(.icon-box) {
  color: var(--muted);
  font-size: 13px;
}
.dark-section .trust-bar { background: rgba(255,250,242,.1); border-color: rgba(255,250,242,.1); }
.dark-section .trust-bar > div { background: var(--night); }
.dark-section .trust-bar span:not(.icon-box) { color: rgba(255,250,242,.65); }

/* ========== MAP BLOCK ========== */
.map-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-block .info { background: var(--paper); padding: 36px; display: grid; gap: 14px; align-content: start; }
.map-block .info h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 10px;
}
.map-block .info p, .map-block .info a { color: var(--muted-dark); margin: 0; font-size: 15px; }
.map-block .info a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.map-block .map iframe,
.map-block .map .placeholder {
  width: 100%;
  height: var(--map-height, 420px);
  min-height: 320px;
  border: 0;
  display: block;
}

/* Layout variants — stacked / info-only / map-only */
.map-block.is-stacked,
.map-block.is-info-only,
.map-block.is-map-only {
  grid-template-columns: 1fr !important;
}
.map-block.is-info-only .map { display: none; }
.map-block.is-map-only .info { display: none; }

/* Elementor column içindeyken otomatik tek sütun yap */
.elementor-column .map-block,
.e-con .map-block {
  grid-template-columns: 1fr !important;
}

/* ===== Elementor uyum düzeltmeleri ===== */
/* Elementor widget container'lar sina section'lar için padding override etmesin */
.elementor-widget-sina-hero-slider,
.elementor-widget-sina-marquee,
.elementor-widget-sina-brand-intro,
.elementor-widget-sina-stats,
.elementor-widget-sina-services-grid,
.elementor-widget-sina-why-us,
.elementor-widget-sina-timeline,
.elementor-widget-sina-editorial,
.elementor-widget-sina-filterable-gallery,
.elementor-widget-sina-references-grid,
.elementor-widget-sina-testimonials,
.elementor-widget-sina-blog-section,
.elementor-widget-sina-newsletter,
.elementor-widget-sina-cta-big,
.elementor-widget-sina-faq,
.elementor-widget-sina-map-contact,
.elementor-widget-sina-contact-form {
  margin: 0 !important;
}
.elementor-widget-sina-hero-slider .elementor-widget-container,
.elementor-widget-sina-marquee .elementor-widget-container,
.elementor-widget-sina-brand-intro .elementor-widget-container,
.elementor-widget-sina-stats .elementor-widget-container,
.elementor-widget-sina-services-grid .elementor-widget-container,
.elementor-widget-sina-why-us .elementor-widget-container,
.elementor-widget-sina-timeline .elementor-widget-container,
.elementor-widget-sina-editorial .elementor-widget-container,
.elementor-widget-sina-filterable-gallery .elementor-widget-container,
.elementor-widget-sina-references-grid .elementor-widget-container,
.elementor-widget-sina-testimonials .elementor-widget-container,
.elementor-widget-sina-blog-section .elementor-widget-container,
.elementor-widget-sina-newsletter .elementor-widget-container,
.elementor-widget-sina-cta-big .elementor-widget-container,
.elementor-widget-sina-faq .elementor-widget-container,
.elementor-widget-sina-map-contact .elementor-widget-container,
.elementor-widget-sina-contact-form .elementor-widget-container {
  padding: 0 !important;
}
.elementor-section:has(.elementor-widget-sina-map-contact):has(.elementor-widget-sina-contact-form) {
  padding: 110px 0;
  background: var(--paper);
}
.elementor-section:has(.elementor-widget-sina-map-contact):has(.elementor-widget-sina-contact-form) > .elementor-container {
  max-width: min(1240px, calc(100vw - 40px));
  margin-inline: auto;
}
.elementor-widget-sina-map-contact .sina-section {
  padding: 0;
}

/* NOT: Önceden .elementor-column içindeki tüm grid'leri 1fr yapıyorduk —
   bu çok geniş kapsamlıydı, normal kullanımda da grid'i çökertiyordu. Kaldırıldı.
   Sadece map-block için stacked davranış map-contact widget'ının kendi CSS'inde. */

/* === Dark section'larda metin rengi (Elementor editor'de cascade için explicit) === */
.dark-section,
.dark-section p,
.dark-section li,
.dark-section td,
.dark-section span:not(.icon-box):not(.brand-svg):not(.eyebrow) {
  color: var(--paper);
}
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6,
.dark-section .section-title,
.hero h1,
.hero h2,
.hero h3,
.hero .section-title,
.page-hero h1,
.page-hero h2,
.cta-big h2,
.work-copy h3,
.work-item h3,
.timeline-step h3,
.service-content h3,
.mv-card h3,
.side-card.dark h3,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.portfolio-caption strong,
.masonry-caption strong {
  color: var(--paper);
}
.dark-section .lead,
.dark-section .section-head p,
.hero .hero-copy,
.page-hero p,
.cta-big p {
  color: rgba(255, 250, 242, 0.78);
}

/* Section'lar full-width — Elementor'un padding'i ile çakışmasın */
.sina-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
/* Editor'de ve Elementor kolon/container içinde full width yapma */
.elementor-editor-active .sina-section,
.elementor-preview .sina-section,
.elementor-column .sina-section,
.elementor-widget-wrap .sina-section,
.elementor-container .sina-section,
.e-con .sina-section,
.e-con-inner .sina-section {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}
.elementor-column .sina-section .wrap,
.elementor-widget-wrap .sina-section .wrap,
.elementor-container .sina-section .wrap,
.e-con .sina-section .wrap,
.e-con-inner .sina-section .wrap {
  padding-inline: 0;
}
.map-block .map .placeholder {
  background:
    linear-gradient(135deg, rgba(20,16,13,.5), rgba(20,16,13,.7)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=85") center / cover;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  letter-spacing: -.01em;
}

/* ========== SERVICE FEATURES (rich detail) ========== */
.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}
.service-features > div {
  background: var(--paper);
  padding: 26px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.service-features strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.1;
  margin-top: 8px;
}
.service-features span:not(.icon-box) { color: var(--muted); font-size: 14.5px; }
.service-features .icon-box { background: rgba(240,160,48,.12); border-color: rgba(240,160,48,.34); }

/* ========== INLINE CTA (between sections) ========== */
.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 36px 44px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.inline-cta h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.005em;
}
.inline-cta p { color: var(--muted-dark); margin: 4px 0 0; font-size: 15px; }

/* ========== CATEGORY FILTER CHIPS ========== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip.active,
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ========== AUTHOR / META on blog detail ========== */
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.post-meta strong { color: var(--ink); font-weight: 600; }
.post-meta .dot { width: 4px; height: 4px; background: var(--line-strong); border-radius: 999px; }
.share-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.share-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.share-row a:hover { background: var(--ink); color: var(--paper); }
.share-row span { color: var(--muted); font-size: 13px; margin-right: 4px; }
.share-row svg { width: 16px; height: 16px; }

/* ========== RESPONSE TIME PROMO ========== */
.response-promo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .3);
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.response-promo .pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #25d366;
  flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .7); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.response-promo strong { color: var(--ink); font-weight: 600; font-size: 15px; }
.response-promo span:not(.pulse) { color: var(--muted-dark); font-size: 14px; }

/* ========== GALLERY GRID (filterable) ========== */
.gallery-grid,
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  isolation: isolate;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.masonry-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  opacity: .85;
  transition: transform .8s var(--ease-out), opacity .5s var(--ease);
}
.masonry-item:hover img { transform: scale(1.08); opacity: 1; }
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.82));
  pointer-events: none;
}
.masonry-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--paper);
}
.masonry-caption small {
  display: block;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
}
.masonry-caption strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.15;
  letter-spacing: -.005em;
}
.masonry-item.hidden {
  opacity: 0;
  transform: scale(.92);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* ========== REFERENCES GRID ========== */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ref-card {
  background: var(--paper);
  padding: 32px 28px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: background .35s var(--ease);
  position: relative;
}
.ref-card:hover { background: var(--surface); }
.ref-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.ref-card:hover::after { transform: scaleX(1); }
.ref-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.ref-card-head .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(240,160,48,.12);
  border-color: rgba(240,160,48,.34);
}
.ref-card-head .icon-box svg { width: 16px; height: 16px; }
.ref-card-head small {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 11px;
  text-transform: uppercase;
}
.ref-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0;
}
.ref-card p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.55; }

/* ========== CONTACT LIST (map info) ========== */
.contact-list {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}
.contact-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding-left .25s var(--ease);
}
.contact-line:last-child { border-bottom: 0; }
.contact-line:hover { padding-left: 4px; }
.contact-line .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(240,160,48,.12);
  border-color: rgba(240,160,48,.34);
}
.contact-line .icon-box svg { width: 18px; height: 18px; }
.contact-line span:not(.icon-box) { display: grid; gap: 2px; }
.contact-line small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-line strong { color: var(--ink); font-weight: 600; font-size: 15px; line-height: 1.4; overflow-wrap: anywhere; }

/* ========== SEARCH PAGE ========== */
.search-form {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 36px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(240,160,48,.12);
}
.search-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--muted);
}
.search-form input[type="search"] {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 17px;
  padding: 0 4px;
  color: var(--ink);
  outline: 0;
}
.search-form input::placeholder { color: var(--muted); }
.search-form .btn { padding: 12px 22px; min-height: 44px; }

.search-suggestions { margin-bottom: 50px; }
.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.search-tag {
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.search-tag:hover { background: var(--gold); color: #14100d; border-color: var(--gold); }

.search-shortcuts h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 18px;
  letter-spacing: -.005em;
}
.search-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.search-shortcut {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.search-shortcut:hover {
  background: var(--paper);
  border-color: rgba(240,160,48,.34);
  transform: translateY(-2px);
}
.search-shortcut strong { display: block; font-weight: 600; font-size: 16px; }
.search-shortcut p { color: var(--muted); margin: 4px 0 0; font-size: 13.5px; line-height: 1.4; }
.search-shortcut > svg,
.search-shortcut > i { color: var(--muted); width: 18px; height: 18px; }
.search-shortcut:hover > svg,
.search-shortcut:hover > i { color: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .timeline::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line-dark); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .why-us { grid-template-columns: repeat(2, 1fr); }
  .value-props { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-features { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid,
  .gallery-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter { grid-template-columns: 1fr; gap: 18px; padding: 38px; }
  .map-block { grid-template-columns: 1fr; }
  .inline-cta { grid-template-columns: 1fr; padding: 32px; }
  section { padding: 90px 0; }
}

@media (max-width: 860px) {
  .menu:not(.in-drawer) { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { gap: 14px; }
  .brand img { width: 84px; }
  .header-icons { display: none; }
  .map-block .map iframe,
  .map-block .map .placeholder { min-height: 260px; }
  .response-promo { padding: 14px 16px; gap: 10px; }
  .response-promo strong, .response-promo span:not(.pulse) { font-size: 13.5px; }
  .submenu { display: none; }  /* drawer'da var */

  .hero {
    min-height: calc(92svh - var(--header-h));
    padding: 60px 0 80px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-meta { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,250,242,.18); padding-top: 22px; }

  .section-head,
  .about-grid,
  .editorial-grid,
  .editorial-grid.reverse,
  .work-grid,
  .contact-grid,
  .detail-grid,
  .content-sidebar,
  .visual-cta-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .editorial-grid.reverse .editorial-image { order: 0; }
  .editorial-image img { aspect-ratio: 4 / 3; }

  .feature-list,
  .process-grid,
  .quotes,
  .blog-grid,
  .stats,
  .why-us,
  .value-props,
  .team-grid,
  .service-features,
  .trust-bar,
  .mv-grid,
  .ref-grid,
  .gallery-grid,
  .gallery-masonry { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .stat:last-child { border-bottom: 0; }
  .mv-card { padding: 36px 28px; }
  .newsletter { padding: 32px 24px; }
  .newsletter form { flex-direction: column; }
  .newsletter button { width: 100%; justify-content: center; }
  .faq-item summary { padding: 22px 0; font-size: 19px; gap: 14px; }
  .faq-item summary::after { font-size: 26px; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .portfolio-item.large,
  .portfolio-item.wide { grid-row: span 1; grid-column: span 1; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 420px; }
  .work-main { min-height: 360px; }

  .sidebar { position: static; }

  section { padding: 72px 0; }

  .marquee-item { font-size: clamp(32px, 12vw, 56px); gap: 36px; }
  .marquee-item::after { width: 10px; height: 10px; }
  .marquee-track { gap: 36px; }
  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .section-title { font-size: clamp(28px, 7vw, 44px); }
  .scroll-cue { display: none; }
  .hero-meta-item strong { font-size: 22px; }
  .stat strong { font-size: clamp(40px, 12vw, 64px); }
  .stat { min-height: 130px; padding: 20px 18px; }
  .feature-list > div,
  .why-us > div,
  .ref-card,
  .mv-card { padding: 22px; }
  .service-card { min-height: 360px; padding: 22px; }
  .service-content h3 { font-size: 24px; }
  .timeline-step h3 { font-size: 22px; }
  .elementor-section:has(.elementor-widget-sina-map-contact):has(.elementor-widget-sina-contact-form) {
    padding: 72px 0;
  }
  .editorial-image img { aspect-ratio: 3 / 2; }
  .work-main { padding: 22px; min-height: 320px; }
  .work-copy h3 { font-size: 32px; }
  .work-item { padding: 20px; }
  .breadcrumb { padding: 16px 0; font-size: 12px; }
  .page-hero { padding: 100px 0 56px; min-height: 50svh; }
  .cta-big { padding: 80px 0; }
  .cta-big h2 { font-size: clamp(36px, 11vw, 60px); }
  .partner-logo { min-width: 160px; padding: 14px 18px; font-size: 13px; }
  .contact-line .icon-box { width: 38px; height: 38px; }
  .contact-line strong { font-size: 14px; }
  .form { padding: 22px; }
  .ref-card-head .icon-box { width: 34px; height: 34px; }
  .ref-card h3 { font-size: 19px; }
  .search-shortcuts-grid { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: auto 1fr; padding: 8px; gap: 6px; }
  .search-form .btn { grid-column: 1 / -1; width: 100%; }
  .search-form input[type="search"] { font-size: 15px; }
  .gallery-masonry { gap: 10px; }
  .chips { gap: 6px; }
  .chip { padding: 8px 14px; font-size: 13px; }
  .footer-grid { gap: 28px; padding-bottom: 24px; }
  .footer-bottom { font-size: 12px; gap: 10px; }
  .nav { min-height: 64px; }
  :root { --header-h: 64px; }
  .mobile-drawer-body a { font-size: clamp(28px, 8vw, 44px); padding: 12px 0; }

  .cta-big { padding: 100px 0; }
  .site-footer { padding-top: 56px; }
  .footer-grid { padding-bottom: 32px; }
}

@media (max-width: 480px) {
  .wrap { padding-inline: 16px; }
  .hero h1, .page-hero h1 { font-size: clamp(40px, 13vw, 60px); }
  .actions .btn { width: 100%; }
  .hero { padding-top: 40px; }
  .page-hero { padding: 120px 0 64px; }
}
