:root {
  --uv-bg: #ffffff;
  --uv-surface: #ffffff;
  --uv-surface-2: #d99036;
  --uv-border: #8c6542;
  --uv-text: #0d0d0d;
  --uv-muted: #8c6542;
  --uv-accent: #d99036;
  --uv-accent-strong: #8c4f04;
  --uv-shadow-sm: 0 12px 24px rgba(13, 13, 13, 0.08);
  --uv-shadow-md: 0 20px 42px rgba(13, 13, 13, 0.16);
}

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: var(--uv-text);
  letter-spacing: 0.005em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -3rem;
  z-index: 200;
  background: #111;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.7rem;
}

/* ============================================================================
 * SPLASH / AÇILIŞ EKRANI — Tam ekran premium
 * Sağlamlık: JS çalışmazsa CSS güvenlik ağı (splashAutoHide) splash'i kapatır,
 * böylece açılış ekranı siteyi asla kalıcı olarak kapatmaz.
 * ==========================================================================*/
.site-splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 100vw;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(58% 46% at 50% 40%, rgba(201, 161, 95, 0.16), transparent 70%),
    radial-gradient(130% 120% at 50% 128%, rgba(0, 0, 0, 0.6), transparent 62%),
    linear-gradient(158deg, #16120c 0%, #0b0a07 100%);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1), visibility 620ms ease;
  /* JS yoksa/başarısızsa 3sn sonra kendini kapatır */
  animation: splashAutoHide 620ms ease 3s forwards;
}

/* İnce altın çerçeve (vignette) */
.site-splash::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(201, 161, 95, 0.16);
  pointer-events: none;
}

.site-splash__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(1.1rem, 3vw, 1.8rem);
  padding: 2rem;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  animation: splashIn 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Amblem + wordmark yatay kilit (lockup) */
.site-splash__lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.4vw, 1.7rem);
}

.site-splash__logo {
  position: relative;
  overflow: hidden;
  line-height: 0;
  flex: 0 0 auto;
}

.site-splash__logo img {
  width: auto;
  height: auto;
  max-width: min(38vw, 190px);
  max-height: 32vh;
  filter: drop-shadow(0 16px 44px rgba(0, 0, 0, 0.55));
}

/* Sağdan süzülerek gelen "UYUM VIP DİZAYN" wordmark'ı */
.site-splash__wordmark {
  display: grid;
  gap: 0.28rem;
  text-align: left;
  padding-left: clamp(0.9rem, 2.4vw, 1.7rem);
  border-left: 1px solid rgba(201, 161, 95, 0.28);
}

.site-splash__word-main,
.site-splash__word-sub {
  opacity: 0;
  transform: translateX(30px);
  animation: splashWordIn 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-splash__word-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: #d3a866;
  /* Metalik altın: koyu→parlak→koyu bantlı gradyan; sheen animasyonuyla süzülür. */
  background: linear-gradient(
    115deg,
    #9a6f37 0%,
    #d3a866 22%,
    #f7e9c2 40%,
    #fffaf0 50%,
    #f7e9c2 60%,
    #d3a866 78%,
    #9a6f37 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    splashWordIn 820ms cubic-bezier(0.16, 1, 0.3, 1) 640ms forwards,
    uvMetalShine 4.2s ease-in-out 1.6s infinite;
}

.site-splash__word-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.4vw, 1.5rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #cbb083;
  background: linear-gradient(
    115deg,
    #a6864f 0%,
    #cbb083 28%,
    #f3e4bf 46%,
    #fff6df 52%,
    #cbb083 72%,
    #a6864f 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    splashWordIn 820ms cubic-bezier(0.16, 1, 0.3, 1) 820ms forwards,
    uvMetalShine 4.2s ease-in-out 1.9s infinite;
}

@keyframes splashWordIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .site-splash__lockup {
    flex-direction: column;
    gap: clamp(0.8rem, 4vw, 1.3rem);
  }

  .site-splash__wordmark {
    text-align: center;
    padding-left: 0;
    padding-top: clamp(0.7rem, 3vw, 1.1rem);
    border-left: 0;
    border-top: 1px solid rgba(201, 161, 95, 0.28);
    justify-items: center;
  }

  .site-splash__word-main,
  .site-splash__word-sub {
    transform: translateY(20px);
  }
}

/* Metalik parlama: logonun (amblemin) tam şekline maskelenmiş, üzerinden
   süzülen parlak bant. Mask URL'i header'dan (--uv-splash-mark) gelir; böylece
   özel logo kullanılsa bile parlama doğru şekle oturur. */
.site-splash__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 250, 235, 0.9) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  background-size: 250% 100%;
  -webkit-mask: var(--uv-splash-mark) center / contain no-repeat;
  mask: var(--uv-splash-mark) center / contain no-repeat;
  mix-blend-mode: screen;
  animation: uvMetalShine 3.6s ease-in-out 800ms infinite;
  pointer-events: none;
}

/* İnce altın yükleme çizgisi */
.site-splash__loader {
  position: relative;
  width: min(180px, 42vw);
  height: 2px;
  background: rgba(201, 161, 95, 0.16);
  overflow: hidden;
}

.site-splash__loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, #d6ad63 42%, #f2dca0 58%, transparent 100%);
  transform: translateX(-100%);
  animation: splashLoad 1500ms ease-in-out infinite;
}

/* JS ile çıkış */
.site-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  animation: none;
}

/* Aynı oturumda tekrar: animasyonsuz, anında gizle */
.site-splash.is-instant {
  opacity: 0;
  visibility: hidden;
  transition: none;
  animation: none;
}

.site-splash.is-instant .site-splash__inner {
  animation: none;
  opacity: 0;
}

@keyframes splashIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashLoad {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Metalik parlama süzülmesi — gradyan bir tam genişlik kayar (kusursuz döngü,
   gradyanın iki ucu aynı renk olduğu için). Metin ve logo için ortak. */
@keyframes uvMetalShine {
  from {
    background-position: 0% center;
  }
  to {
    background-position: -250% center;
  }
}

@keyframes splashAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-splash {
    animation-delay: 1.4s;
  }

  .site-splash__inner {
    animation-duration: 200ms;
    opacity: 1;
    transform: none;
  }

  .site-splash__logo::after,
  .site-branding a::after {
    display: none;
  }

  .site-splash__loader::after {
    animation: none;
    transform: translateX(0);
  }

  .site-splash__word-main,
  .site-splash__word-sub {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.site-branding img {
  max-height: 84px;
  width: auto;
  display: block;
  transition: max-height 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header logosunda hover'da ince metalik parlama süpürmesi (masaüstü). */
.site-branding a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.site-branding a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 247, 227, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.site-branding a:hover::after {
  animation: uvLogoSweep 900ms ease;
}

@keyframes uvLogoSweep {
  0% {
    left: -75%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    left: 135%;
    opacity: 0;
  }
}

/* ===== Canlı metalik logo efekti (header + footer) — deneme =====
   Logonun tam şekline maskelenmiş, sürekli süzülen parlak bant + hafif
   altın nefes alma (glow). Mask URL'i şablondan (--uv-logo-mark) gelir. */
.site-branding__link,
.footer-logo-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.site-branding__link::before,
.footer-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 248, 225, 0.9) 50%,
    rgba(255, 255, 255, 0) 58%
  );
  background-size: 250% 100%;
  -webkit-mask: var(--uv-logo-mark) center / contain no-repeat;
  mask: var(--uv-logo-mark) center / contain no-repeat;
  mix-blend-mode: screen;
  animation: uvMetalShine 4.4s ease-in-out 1s infinite;
  pointer-events: none;
  z-index: 2;
}

.site-branding__link img,
.footer-logo-wrap .footer-logo {
  animation: uvLogoGlow 4.4s ease-in-out infinite;
}

@keyframes uvLogoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 1px rgba(214, 173, 99, 0.18));
  }
  50% {
    filter: drop-shadow(0 0 7px rgba(242, 220, 160, 0.55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-branding__link::before,
  .footer-logo-wrap::before {
    display: none;
  }

  .site-branding__link img,
  .footer-logo-wrap .footer-logo {
    animation: none;
    filter: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  width: 100%;
  max-width: none;
  border: 0;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
  transform: translateY(0) scale(1);
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 760ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  min-height: 102px;
  padding-inline: clamp(0.8rem, 2vw, 2rem);
  transition: min-height 700ms cubic-bezier(0.16, 1, 0.3, 1);
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
}

.primary-nav .menu > li > a {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #d99036;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease;
  position: relative;
}

.primary-nav {
  min-width: 0;
}

.primary-nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .menu > li > a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.22rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.primary-nav .menu > li > a:hover,
.primary-nav .menu > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.primary-nav .menu > li > a:hover::after,
.primary-nav .menu > li > a:focus-visible::after {
  transform: scaleX(1);
}

.header-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ccb496;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.9);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header-toggle span {
  width: 20px;
  height: 2px;
  background: #201910;
  transition: transform 260ms ease, opacity 260ms ease;
}

.site-header.menu-open .header-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .header-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .header-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-static {
  margin: 0;
}

.header-lang {
  display: grid;
  align-items: center;
}

/* ===== Bayraklı dil seçici (özel dropdown) ===== */
.uv-lang {
  position: relative;
  font-family: var(--uv-font-body, "Source Sans 3", sans-serif);
}

.uv-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 0.7rem;
  border: 1px solid rgba(217, 144, 54, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6efe4;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  line-height: 1;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.uv-lang__toggle:hover,
.uv-lang__toggle:focus-visible {
  border-color: #d99036;
  background: rgba(217, 144, 54, 0.16);
  box-shadow: 0 6px 18px rgba(140, 79, 4, 0.22);
  outline: none;
}

.uv-lang__flag {
  display: inline-flex;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.uv-lang__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uv-lang__code {
  font-variant: small-caps;
}

.uv-lang__chevron {
  transition: transform 0.25s ease;
  opacity: 0.85;
}

.uv-lang__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: rgba(24, 18, 12, 0.97);
  border: 1px solid rgba(217, 144, 54, 0.28);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(9, 6, 3, 0.5);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 60;
}

.uv-lang:hover .uv-lang__panel,
.uv-lang:focus-within .uv-lang__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.uv-lang:hover .uv-lang__chevron,
.uv-lang:focus-within .uv-lang__chevron {
  transform: rotate(180deg);
}

.uv-lang__item {
  margin: 0;
}

.uv-lang__opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.6rem;
  border-radius: 9px;
  color: #ece2d3;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.uv-lang__opt:hover,
.uv-lang__opt:focus-visible {
  background: rgba(217, 144, 54, 0.16);
  color: #ffffff;
  outline: none;
}

.uv-lang__item.is-current .uv-lang__opt {
  background: linear-gradient(120deg, rgba(217, 144, 54, 0.22), rgba(140, 79, 4, 0.16));
  color: #ffd9a0;
  font-weight: 600;
}

.uv-lang__name {
  white-space: nowrap;
}

.header-cta {
  background: linear-gradient(120deg, #d99036, #8c4f04);
  border: 1px solid #8c4f04;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--uv-shadow-sm);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(21, 17, 13, 0.12);
  transform: translateY(0);
}

.site-main {
  margin-top: 0;
  /* JS header yüksekliğini --uv-header-h olarak ayarlar; fallback: 102px. */
  padding-top: var(--uv-header-h, 102px);
}

body.home .site-main {
  padding-top: 0;
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
}

.site-header.is-scrolled .site-branding img {
  max-height: 46px;
  transform: translateY(-1px);
}

.hero-video::after {
  background:
    radial-gradient(120% 85% at 50% 115%, rgba(0, 0, 0, 0.58) 10%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(108deg, rgba(8, 7, 6, 0.84) 4%, rgba(8, 7, 6, 0.34) 52%, rgba(8, 7, 6, 0.2) 100%);
}

.hero-overlay {
  gap: 1.35rem;
  padding-top: clamp(118px, 13vh, 176px);
  padding-bottom: clamp(54px, 9vh, 94px);
}

.hero-overlay h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 11ch;
  color: #fff6ea;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.hero-overlay p {
  max-width: 52ch;
  margin: 0;
  color: rgba(247, 237, 226, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.56;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #049dbf;
}

.hero-button {
  width: fit-content;
  border-radius: 0;
  border: 1px solid rgba(217, 144, 54, 0.65);
  background: linear-gradient(120deg, rgba(39, 29, 20, 0.88), rgba(22, 17, 13, 0.88));
  color: #f3e6d4;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.hero-button:hover {
  transform: translateY(-1px);
  border-color: rgba(4, 157, 191, 0.82);
  background: linear-gradient(120deg, rgba(50, 38, 26, 0.9), rgba(28, 21, 15, 0.9));
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.6vh, 36px);
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #f3dec7;
  text-decoration: none;
  opacity: 1;
  transition: opacity 220ms ease, transform 220ms ease;
  padding: 0;
}

.hero-scroll-indicator__text {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.92;
}

/* Modern "mouse" scroll simgesi + animasyonlu tekerlek noktası */
.hero-scroll-indicator__line {
  position: relative;
  width: 27px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(243, 222, 199, 0.7);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: border-color 260ms ease, transform 260ms ease;
}

.hero-scroll-indicator__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 9px;
  margin-left: -2px;
  border-radius: 2px;
  background: #f3dec7;
  animation: heroMouseWheel 1.7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-scroll-indicator:hover .hero-scroll-indicator__line,
.hero-scroll-indicator:focus-visible .hero-scroll-indicator__line {
  border-color: rgba(246, 230, 189, 0.98);
  transform: translateY(2px);
}

body.hero-scrolled .hero-scroll-indicator {
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
}

@keyframes heroMouseWheel {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateY(11px);
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-indicator__line::before {
    animation: none;
    top: 50%;
    transform: translateY(-50%);
  }
}

.uv-showcase-section,
.uv-services-section,
.uv-process-section,
.uv-trust-section,
.uv-reviews-section,
.uv-cta-section,
.uv-grid-section {
  position: relative;
}

.uv-showcase-section::before,
.uv-services-section::before,
.uv-process-section::before,
.uv-trust-section::before,
.uv-reviews-section::before,
.uv-cta-section::before,
.uv-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.uv-shell,
.uv-grid-shell {
  position: relative;
  z-index: 1;
}

.uv-showcase-section::before,
.uv-grid-section::before {
  background: #ffffff;
}

.uv-services-section::before,
.uv-trust-section::before {
  background: #ffffff;
}

.uv-process-section::before,
.uv-reviews-section::before,
.uv-cta-section::before {
  background: #ffffff;
}

.uv-section-head p,
.section-head p {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--uv-accent);
}

.uv-section-head h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  line-height: 1.05;
}

.uv-section-head span {
  color: var(--uv-muted);
  font-size: 0.95rem;
}

.uv-showcase-grid,
.uv-services-grid,
.uv-process-band,
.uv-trust-strip,
.uv-reviews-grid,
.uv-grid {
  gap: clamp(0.9rem, 1.2vw, 1.3rem);
}

.uv-showcase-card,
.uv-service-card,
.uv-process-band > div,
.uv-trust-strip li,
.uv-review-card,
.uv-card {
  border: 1px solid var(--uv-border);
  background: var(--uv-surface);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 18px 42px -24px rgba(0, 0, 0, 0.7),
    0 0 24px -12px rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.uv-showcase-card:hover,
.uv-showcase-card:focus-within,
.uv-service-card:hover,
.uv-service-card:focus-within,
.uv-review-card:hover,
.uv-review-card:focus-within,
.uv-process-band > div:hover,
.uv-trust-strip li:hover {
  transform: translateY(-2px);
  box-shadow: var(--uv-shadow-md);
  border-color: #cdb89d;
}

.uv-showcase-card__body a,
.uv-service-card a,
.uv-cta-link,
.footer-mail {
  text-decoration: none;
  border-bottom: 1px solid #a07d50;
  color: #2d251c;
}

.uv-showcase-card__body a:hover,
.uv-service-card a:hover,
.uv-cta-link:hover,
.footer-mail:hover {
  color: var(--uv-accent-strong);
}

.uv-showcase-card__body a:focus-visible,
.uv-service-card a:focus-visible,
.uv-cta-link:focus-visible,
.footer-mail:focus-visible,
.header-cta:focus-visible,
.hero-button:focus-visible,
.primary-nav a:focus-visible {
  outline: 2px solid #049dbf;
  outline-offset: 2px;
}

.uv-service-card,
.uv-review-card {
  padding: 1.1rem;
}

.uv-service-card h3,
.uv-showcase-card h3,
.uv-review-card h3 {
  margin: 0;
}

.uv-service-card p,
.uv-showcase-card p,
.uv-review-card p {
  margin: 0.45rem 0 0;
  color: var(--uv-muted);
}

.uv-process-band span {
  color: var(--uv-accent);
  font-weight: 600;
}

.uv-trust-strip strong {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #2a2118;
}

.uv-card__body {
  background: var(--uv-surface);
}

.uv-card__title a {
  color: #211a13;
}

.uv-card__excerpt {
  color: var(--uv-muted);
}

.uv-cta-box {
  background: linear-gradient(135deg, #ffffff, #f4efe9);
  border: 1px solid #8c6542;
  box-shadow: var(--uv-shadow-md);
}

.uv-cta-link {
  margin-top: 1.1rem;
  display: inline-block;
  font-weight: 600;
}

.site-footer {
  background: #000000;
  border-top: 1px solid #8c4f04;
}

.site-footer--moduler-bg {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.9) 100%),
    url("/wp-content/uploads/2026/04/moduler-oturma-mobil-ofis-vip-arac.jpeg") center / cover no-repeat;
}

.footer-grid {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
  align-items: start;
  color: #d99036;
}

.footer-logo {
  max-height: 78px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

.site-footer a,
.site-footer .footer-title,
.site-footer .footer-subtitle {
  color: #d99036;
}

.footer-bottom {
  width: min(100% - 2rem, 1320px);
  margin: 0.75rem auto 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(217, 144, 54, 0.22);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1.2rem;
}

.footer-copy {
  margin: 0;
  color: #d99036;
}

.footer-legal a {
  color: #d99036;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-grid {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
}

.footer-social {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.footer-social a {
  text-decoration: none;
  border: 1px solid rgba(217, 144, 54, 0.35);
  color: #d99036;
  padding: 0.46rem 0.56rem;
  text-align: center;
  background: rgba(20, 14, 9, 0.55);
}

.footer-map-row {
  width: min(100% - 2rem, 1320px);
  margin: 1rem auto 0;
}

.footer-map iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}

.uv-seo-links,
.uv-related-posts {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #d8c3aa;
  background: #fff;
}

.uv-seo-links h2,
.uv-related-posts h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.uv-seo-links__grid,
.uv-related-posts__grid {
  display: grid;
  gap: 0.7rem;
}

.uv-seo-links__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.uv-seo-links__grid a {
  text-decoration: none;
  border: 1px solid #dcc8af;
  padding: 0.55rem 0.7rem;
  color: #2b2218;
}

.uv-related-posts__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.uv-related-posts__item {
  border: 1px solid #e6d8c8;
  padding: 0.75rem;
  background: #fff;
}

.uv-related-posts__item h3 {
  margin: 0;
  font-size: 1rem;
}

.uv-related-posts__item p {
  margin: 0.45rem 0 0;
  color: #5e4f3e;
}

@media (max-width: 980px) {
  .uv-related-posts__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .uv-seo-links__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-branding img {
    max-height: clamp(38px, 6.2vw, 54px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 0.6rem;
    padding-block: 0.45rem;
    min-height: 68px;
  }

  .site-branding {
    grid-column: 1 / 2;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
  }

  .header-toggle {
    display: inline-flex;
    order: 2;
    width: 38px;
    height: 38px;
  }

  .header-lang {
    order: 4;
  }

  .uv-lang__toggle {
    height: 34px;
    padding: 0 0.55rem;
    font-size: 0.78rem;
  }

  .header-cta {
    order: 5;
    justify-self: start;
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
  }

  .primary-menu-panel {
    display: none;
    padding-top: 0.35rem;
  }

  .site-header.menu-open .primary-menu-panel {
    display: block;
  }

  .primary-nav .menu {
    justify-content: flex-start;
    gap: 0.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav .menu > li > a {
    padding: 0.55rem 0.2rem;
    border-radius: 0;
  }

  .header-lang {
    justify-content: start;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 60px;
  }

  .site-header.is-scrolled .site-branding img {
    max-height: clamp(34px, 5.4vw, 44px);
  }

  .site-main {
    padding-top: var(--uv-header-h, 124px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 60px;
    padding-inline: 0.75rem;
    gap: 0.45rem;
  }

  .site-branding img {
    max-height: clamp(34px, 9vw, 42px);
  }

  .header-toggle {
    width: 34px;
    height: 34px;
  }

  .header-toggle span {
    width: 16px;
  }

  .primary-nav .menu > li > a {
    font-size: 0.76rem;
    padding: 0.5rem 0.15rem;
  }

  .uv-lang__toggle {
    height: 32px;
    padding: 0 0.5rem;
    font-size: 0.74rem;
    gap: 0.4rem;
  }

  .uv-lang__panel {
    right: auto;
    left: 0;
    transform-origin: top left;
  }

  .header-cta {
    padding: 0.44rem 0.65rem;
    font-size: 0.74rem;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 54px;
  }

  .site-main {
    padding-top: var(--uv-header-h, 108px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-map iframe {
    min-height: 220px;
  }
}
