/*
Theme Name: Güler Bodelenger
Theme URI: https://gulerbodelenger.com
Author: Güler Bodelenger
Description: Seramik ve Fayans Ustası – Güler Bodelenger için özel tasarım WordPress teması.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guler-bodelenger
*/

/* =============================================================
   DESIGN SYSTEM
   UI UX Pro Max → Premium Sans + Modern Minimalism
   Font: Outfit (display) + Montserrat (body)
   ============================================================= */


:root {
  /* Palette */
  --c-bg:         #F7F4EF;
  --c-bg-alt:     #EFE9E0;
  --c-bg-dark:    #1C1612;
  --c-bg-dark2:   #2A211A;
  --c-ink:        #1C1612;
  --c-ink-2:      #4A3F35;
  --c-ink-3:      #8A7A6E;
  --c-copper:     #B87333;
  --c-copper-dk:  #956028;
  --c-copper-lt:  #D4956A;
  --c-cream:      #FAF7F2;
  --c-border:     #DDD5C8;
  --c-border-dk:  #C4B8A8;
  --c-white:      #FFFFFF;

  /* Typography */
  --f-display: 'Outfit', system-ui, sans-serif;
  --f-body:    'Montserrat', system-ui, sans-serif;

  /* Scale */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;

  /* Shadow */
  --sh-sm:  0 2px 8px rgba(28,22,18,0.08);
  --sh-md:  0 8px 32px rgba(28,22,18,0.12);
  --sh-lg:  0 20px 60px rgba(28,22,18,0.16);
  --sh-xl:  0 32px 80px rgba(28,22,18,0.22);

  /* Transition */
  --t-fast: 180ms ease;
  --t-base: 280ms ease;
  --t-slow: 480ms ease;

  /* Layout */
  --max-w:      1280px;
  --pad-x:      clamp(20px, 5vw, 80px);
  --section-py: clamp(80px, 10vw, 140px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: var(--f-body); }

/* ===== CONTAINER ===== */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.up    { transform: translateY(24px); }
.reveal.left  { transform: translateX(-24px); }
.reveal.right { transform: translateX(24px); }
.reveal.scale { transform: scale(0.96); }
.reveal.visible { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }
.d5 { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--c-copper);
}

.display-title {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.display-title.lg { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.display-title.xl { font-size: clamp(2.8rem, 5vw, 4.5rem); }
.display-title.xxl{ font-size: clamp(3.5rem, 6vw, 6rem); }

.section-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--c-ink-3);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--t-fast);
}
.btn:hover::after { opacity: 1; }

.btn-copper {
  background: var(--c-copper);
  color: var(--c-white);
  border-radius: var(--r-sm);
}
.btn-copper:hover {
  background: var(--c-copper-dk);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-border-dk);
  border-radius: var(--r-sm);
}
.btn-outline:hover {
  border-color: var(--c-copper);
  color: var(--c-copper);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--r-sm);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn svg { flex-shrink: 0; }

/* ===== NAVBAR ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: var(--t-base);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.site-header.scrolled {
  box-shadow: var(--sh-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Nav logo mark removed - PNG logo used instead */

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  position: relative;
  transition: var(--t-fast);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-copper);
  transition: var(--t-base);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-copper); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-cta .btn svg { display: none; }

/* Hamburger */
.nav-burger {
  display: none;
  position: relative;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--c-ink);
  border-radius: 1px;
  transition: var(--t-base);
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 8px; }
.nav-burger span:nth-child(3) { top: 16px; }
.nav-burger.active span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-bg-dark);
  z-index: 800;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 80px 36px 40px;
}
.nav-overlay.open { display: flex; }

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.nav-overlay-links a {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--t-fast);
}
.nav-overlay-links a:last-child { border-bottom: none; }
.nav-overlay-links a:hover { color: var(--c-copper-lt); padding-left: 6px; }

.nav-overlay-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 4px 0 24px;
}

.nav-overlay-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.nav-overlay-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250,247,242,0.55);
  font-size: 13px;
}
.nav-overlay-contact-item svg {
  flex-shrink: 0;
  color: var(--c-copper-lt);
}
.nav-overlay-contact-item a {
  color: rgba(250,247,242,0.65);
  transition: var(--t-fast);
}
.nav-overlay-contact-item a:hover { color: var(--c-copper-lt); }

.nav-overlay-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.nav-overlay-socials .soc-btn {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.nav-overlay-socials .soc-btn svg { color: rgba(250,247,242,0.6); }
.nav-overlay-socials .soc-btn:hover { background: var(--c-copper); border-color: var(--c-copper); }
.nav-overlay-socials .soc-btn:hover svg { color: white; }

.nav-overlay-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-overlay-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--c-cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.nav-overlay-close:hover { background: rgba(255,255,255,0.08); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad-x) 80px;
  position: relative;
  z-index: 2;
  background: var(--c-bg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 32px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--c-copper);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin-bottom: 28px;
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 700;
  color: var(--c-copper);
  margin-top: 4px;
}

.hero-desc {
  font-size: 15px;
  color: var(--c-ink-3);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
}
.hero-stat-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
  display: block;
}
.hero-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  display: block;
  margin-top: 4px;
}

/* Hero sağ — fotoğraf paneli */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(247,244,239,0.3) 0%,
    transparent 30%
  );
  pointer-events: none;
}

/* Hero floating card */
.hero-float-card {
  position: absolute;
  bottom: 48px;
  left: -56px;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  padding: 20px 24px;
  min-width: 200px;
  z-index: 3;
}
.hero-float-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 4px;
}
.hero-float-card-val {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
}
.hero-float-card-sub {
  font-size: 11px;
  color: var(--c-ink-3);
  margin-top: 2px;
}

/* ===== ABOUT ===== */
#about {
  padding-block: var(--section-py);
  background: var(--c-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-bg-alt);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px;
  height: 180px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 5px solid var(--c-bg);
  box-shadow: var(--sh-lg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-exp-badge {
  position: absolute;
  top: 32px;
  left: -32px;
  background: var(--c-copper);
  color: var(--c-white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--sh-lg);
}
.about-exp-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-exp-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
  display: block;
  margin-top: 4px;
}

.about-content { padding-left: 16px; }
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-2);
}
.about-list-item svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--c-copper);
}

/* ===== SERVICES ===== */
#services {
  padding-block: var(--section-py);
  background: var(--c-bg-alt);
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 6vw, 80px);
  gap: 32px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-copper), var(--c-copper-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--t-base);
}
.service-card:hover .service-icon {
  background: var(--c-copper);
}
.service-icon svg {
  color: var(--c-copper);
  transition: var(--t-base);
  stroke-width: 1.6;
}
.service-card:hover .service-icon svg { color: var(--c-white); }

.service-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.service-text {
  font-size: 13.5px;
  color: var(--c-ink-3);
  line-height: 1.75;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px;
}
.service-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-copper);
  background: rgba(184,115,51,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== PROJECTS / GALLERY ===== */
#gallery {
  padding-block: var(--section-py);
  background: var(--c-bg);
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.f-btn {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--c-border-dk);
  background: transparent;
  color: var(--c-ink-3);
  cursor: pointer;
  transition: var(--t-fast);
}
.f-btn:hover,
.f-btn.active {
  background: var(--c-copper);
  border-color: var(--c-copper);
  color: var(--c-white);
}

/* Symmetric 4-column gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
/* Default: 1 col × 1 row */
.g-item { grid-column: span 1; grid-row: span 1; }
/* Overrides */
.g-item.big  { grid-column: span 2; grid-row: span 2; }
.g-item.wide { grid-column: span 2; grid-row: span 1; }
.g-item.tall { grid-column: span 1; grid-row: span 2; }

.g-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--c-bg-alt);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.g-item:hover img { transform: scale(1.07); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,22,18,0.80) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-white);
  transform: translateY(8px);
  transition: transform var(--t-base);
}
.g-overlay-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-copper-lt);
  margin-bottom: 4px;
  transform: translateY(8px);
  transition: transform var(--t-base) 40ms;
}
.g-item:hover .g-overlay-title,
.g-item:hover .g-overlay-cat { transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
}
.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
  transition: var(--t-fast);
}
.lb-close:hover { color: var(--c-copper-lt); transform: rotate(90deg); }

/* ===== WHY US (dark section) ===== */
#why {
  padding-block: var(--section-py);
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,51,0.10), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.why-head { text-align: center; margin-bottom: clamp(48px,6vw,80px); }
.why-head .display-title { color: var(--c-cream); }
.why-head .section-sub { color: rgba(250,247,242,0.55); margin-inline: auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: var(--t-base);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,115,51,0.30);
  transform: translateY(-4px);
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: rgba(184,115,51,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--t-base);
}
.why-card:hover .why-icon { background: var(--c-copper); }
.why-icon svg { color: var(--c-copper-lt); transition: var(--t-fast); stroke-width: 1.6; }
.why-card:hover .why-icon svg { color: var(--c-white); }
.why-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 10px;
}
.why-text {
  font-size: 13.5px;
  color: rgba(250,247,242,0.55);
  line-height: 1.75;
}

/* ===== PROCESS ===== */
#process {
  padding-block: var(--section-py);
  background: var(--c-bg-alt);
}
.process-head { text-align: center; margin-bottom: clamp(48px,6vw,80px); }
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: var(--c-border);
  pointer-events: none;
}
.process-step { text-align: center; padding: 0 20px; }
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-dk);
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-copper);
  margin: 0 auto 22px;
  position: relative; z-index: 2;
  transition: var(--t-base);
}
.process-step:hover .process-step-num {
  background: var(--c-copper);
  color: var(--c-white);
  border-color: var(--c-copper);
  transform: scale(1.08);
}
.process-step-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.process-step-text {
  font-size: 12.5px;
  color: var(--c-ink-3);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding-block: var(--section-py);
  background: var(--c-bg);
}
.testimonials-head { text-align: center; margin-bottom: clamp(48px,6vw,80px); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: var(--t-base);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.testi-quote-mark {
  font-family: var(--f-display);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--c-copper);
  opacity: 0.15;
  position: absolute;
  top: 24px; right: 28px;
  user-select: none;
  pointer-events: none;
}
.testi-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
}
.testi-star { fill: var(--c-copper); color: var(--c-copper); width: 16px; height: 16px; }
.testi-text {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 26px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-copper);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px; font-weight: 700;
  color: var(--c-ink);
}
.testi-loc {
  font-size: 11px;
  color: var(--c-ink-3);
  margin-top: 2px;
}

/* ===== CTA BANNER ===== */
#cta {
  padding-block: clamp(80px, 10vw, 120px);
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(250,247,242,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  margin-inline: auto;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px;
}

/* ===== CONTACT ===== */
#contact {
  padding-block: var(--section-py);
  background: var(--c-bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(184,115,51,0.10);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t-base);
}
.contact-item:hover .contact-icon { background: var(--c-copper); }
.contact-icon svg { color: var(--c-copper); stroke-width: 1.7; transition: var(--t-fast); }
.contact-item:hover .contact-icon svg { color: var(--c-white); }
.contact-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-copper); margin-bottom: 3px;
}
.contact-val {
  font-size: 14px; font-weight: 500;
  color: var(--c-ink); line-height: 1.5;
}
.contact-val a { transition: var(--t-fast); }
.contact-val a:hover { color: var(--c-copper); }

.contact-socials {
  display: flex; gap: 10px; margin-top: 8px;
}
.soc-btn {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-base); cursor: pointer;
}
.soc-btn:hover {
  background: var(--c-copper);
  border-color: var(--c-copper);
  transform: translateY(-2px);
}
.soc-btn svg { color: var(--c-ink-3); stroke-width: 1.7; transition: var(--t-fast); }
.soc-btn:hover svg { color: var(--c-white); }

/* Form */
.contact-form-box {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink-2); margin-bottom: 7px;
}
.form-field {
  width: 100%;
  padding: 13px 16px;
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-ink);
  transition: var(--t-fast);
  outline: none;
}
.form-field:focus {
  border-color: var(--c-copper);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.form-field::placeholder { color: var(--c-ink-3); opacity: 0.7; }
textarea.form-field { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%; justify-content: center;
  font-size: 13px;
  padding: 16px;
}
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  margin-top: 14px;
}
.form-msg.ok  { background: rgba(107,123,60,0.1); color: #4a6330; border: 1px solid #a0b870; }
.form-msg.err { background: rgba(220,38,38,0.08); color: #b91c1c; border: 1px solid #fca5a5; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-bg-dark);
  padding-block: 64px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(250,247,242,0.45);
  line-height: 1.85;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-copper-lt);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(250,247,242,0.45);
  transition: var(--t-fast);
}
.footer-links a:hover { color: var(--c-copper-lt); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(250,247,242,0.3);
}

/* Footer mini gallery */
.footer-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.footer-mini-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  opacity: 0.55;
  transition: var(--t-base);
  background: rgba(255,255,255,0.06);
  display: block;
}
.footer-mini-gallery-item:hover {
  opacity: 1;
  transform: scale(1.03);
}
.footer-mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 46px; height: 46px;
  background: var(--c-copper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer;
  box-shadow: var(--sh-md);
  opacity: 0; transform: translateY(12px);
  transition: var(--t-base);
  pointer-events: none; z-index: 500;
  border: none;
}
#back-to-top.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--c-copper-dk); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; min-height: 320px; order: -1; }
  .hero-float-card { left: 24px; bottom: -40px; }
  .hero-left { padding: 40px var(--pad-x) 48px; }
  .hero-badge { margin-bottom: 18px; }
  .hero-title { margin-bottom: 16px; }
  .hero-desc { margin-bottom: 24px; }
  .hero-actions { margin-bottom: 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin-inline: auto; }
  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
}
@media (max-width: 768px) {
  :root { --section-py: clamp(48px, 9vw, 90px); }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item, .g-item.tall, .g-item.wide, .g-item.big { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-exp-badge { left: 8px; }
  .about-img-accent { right: 0; bottom: -20px; width: 140px; height: 140px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-head, .gallery-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* WP compat */
.aligncenter { display: block; margin: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== LOGO PNG ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: auto;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 480px) {
  .nav-logo-img { height: 46px; }
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  display: block;
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  display: block;
  margin-top: 3px;
}

/* Navbar telefon butonu ikonu */
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-phone-btn svg {
  flex-shrink: 0;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  z-index: 500;
  transition: var(--t-base);
  text-decoration: none;
  color: white;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}
.whatsapp-fab:hover {
  background: #1da851;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 28px rgba(37,211,102,0.50);
}
.whatsapp-fab-tooltip {
  position: absolute;
  left: 66px;
  background: var(--c-bg-dark);
  color: var(--c-cream);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
  box-shadow: var(--sh-md);
}
.whatsapp-fab-tooltip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--c-bg-dark);
  border-left: none;
}
.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }

/* ===== ÇEREZ (COOKIE) MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,22,18,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--sh-xl);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 300ms ease;
}
.cookie-modal-overlay.visible .cookie-modal {
  transform: translateY(0) scale(1);
}
.cookie-modal-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}
.cookie-modal-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.cookie-modal-text {
  font-size: 13.5px;
  color: var(--c-ink-3);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cookie-link {
  color: var(--c-copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-accept { min-width: 140px; justify-content: center; }
.cookie-decline { min-width: 100px; justify-content: center; font-size: 11px; }

/* ===== HERO FLOAT CARD — hero-right sağ alt köşe ===== */
.hero-float-card {
  position: absolute;
  bottom: 44px;
  right: 36px;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  padding: 20px 24px;
  min-width: 180px;
  z-index: 10;
  border-left: 3px solid var(--c-copper);
}
.hero-float-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 4px;
}
.hero-float-card-val {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
}
.hero-float-card-sub {
  font-size: 11px;
  color: var(--c-ink-3);
  margin-top: 3px;
  font-weight: 500;
}

.hero-right { position: relative; overflow: hidden; }

@media (max-width: 1024px) {
  .hero-float-card {
    bottom: 24px;
    right: 20px;
    padding: 14px 18px;
    min-width: 148px;
  }
  .hero-float-card-val { font-size: 1.5rem; }
  .whatsapp-fab { bottom: 24px; left: 20px; }
}
@media (max-width: 768px) {
  .hero-float-card {
    bottom: 16px;
    right: 14px;
    padding: 12px 14px;
    min-width: 130px;
    border-radius: var(--r-sm);
  }
  .hero-float-card-label { font-size: 9px; }
  .hero-float-card-val   { font-size: 1.3rem; }
  .hero-float-card-sub   { font-size: 10px; }
  .whatsapp-fab { width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .whatsapp-fab-tooltip { display: none; }
  .cookie-modal { padding: 24px 20px; }
}

/* ===================================================
   BÖLÜM ZEMİN DOKU — Seramik/Fayans Tile Pattern
   =================================================== */

/* Light bölümler — koyu çizgi, çok düşük opaklık */
#about,
#services,
#gallery,
#process,
#testimonials,
#contact {
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 63px,
      rgba(28,22,18,0.042) 63px, rgba(28,22,18,0.042) 64px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 63px,
      rgba(28,22,18,0.042) 63px, rgba(28,22,18,0.042) 64px
    );
  background-size: 64px 64px;
}

/* Alt bölüm (bg-alt) aynı doku ama biraz daha belirgin */
#services,
#contact {
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 63px,
      rgba(28,22,18,0.05) 63px, rgba(28,22,18,0.05) 64px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 63px,
      rgba(28,22,18,0.05) 63px, rgba(28,22,18,0.05) 64px
    );
}

/* Koyu bölümler — beyaz çizgi, çok düşük opaklık */
#why,
#cta,
.site-footer {
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 63px,
      rgba(255,255,255,0.055) 63px, rgba(255,255,255,0.055) 64px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 63px,
      rgba(255,255,255,0.055) 63px, rgba(255,255,255,0.055) 64px
    );
  background-size: 64px 64px;
}

/* İçerik texture'nın üstünde kalsın */
#about .wrap,
#services .wrap,
#gallery .wrap,
#process .wrap,
#testimonials .wrap,
#contact .wrap,
#why .wrap,
#cta .wrap,
.site-footer .wrap {
  position: relative;
  z-index: 1;
}

/* Responsive footer grid */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-mini-gallery { grid-template-columns: repeat(6, 1fr); }
  .footer-mini-gallery-item { aspect-ratio: 1.2; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: span 1; }
  .footer-mini-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-mini-gallery-item { aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: span 1; }
}

/* ===================================================
   FOOTER CONTACT ICONS
   =================================================== */
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  transition: var(--t-fast);
}
.footer-contact-item:hover { color: var(--c-copper-lt); }
.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.75;
}

/* ===================================================
   FAYANS IZGARA DESENİ — açık bölüm arka planları
   =================================================== */
#about, #gallery, #process, #testimonials {
  background-image:
    repeating-linear-gradient(90deg, transparent 0px, transparent 63px, rgba(28,22,18,0.035) 63px, rgba(28,22,18,0.035) 64px),
    repeating-linear-gradient(0deg,  transparent 0px, transparent 63px, rgba(28,22,18,0.035) 63px, rgba(28,22,18,0.035) 64px);
  background-size: 64px 64px, 64px 64px;
}

/* Alt renkli bölümler için de aynı desen */
#services, #contact {
  background-image:
    repeating-linear-gradient(90deg, transparent 0px, transparent 63px, rgba(28,22,18,0.042) 63px, rgba(28,22,18,0.042) 64px),
    repeating-linear-gradient(0deg,  transparent 0px, transparent 63px, rgba(28,22,18,0.042) 63px, rgba(28,22,18,0.042) 64px);
  background-size: 64px 64px, 64px 64px;
}

/* ===================================================
   PHOTO BANNER — Banyo & Mutfak (fullwidth fotoğraf)
   =================================================== */
.photo-banner {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 44vw, 520px);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.photo-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.photo-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 720px;
}
.photo-banner-title {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* Banyo — odak küvet, slogan üst boşlukta */
.photo-banner-bathroom {
  align-items: flex-start;
}
.photo-banner-bathroom .photo-banner-img { object-position: center 50%; }
.photo-banner-bathroom .photo-banner-overlay {
  background: linear-gradient(180deg, rgba(28,22,18,0.58) 0%, rgba(28,22,18,0.15) 42%, rgba(28,22,18,0.3) 100%);
}
.photo-banner-bathroom .photo-banner-content {
  margin-top: clamp(28px, 6vw, 64px);
}
.photo-banner-bathroom .photo-banner-title { color: var(--c-cream); }

/* Mutfak — koyu atmosfer, yazı tam ortada */
.photo-banner-kitchen {
  align-items: center;
}
.photo-banner-kitchen .photo-banner-img { object-position: center 55%; }
.photo-banner-kitchen .photo-banner-overlay {
  background: linear-gradient(180deg, rgba(10,8,6,0.5) 0%, rgba(10,8,6,0.4) 50%, rgba(10,8,6,0.62) 100%);
}
.photo-banner-kitchen .photo-banner-content {
  margin: auto 0;
}
.photo-banner-kitchen .photo-banner-title { color: var(--c-cream); }

@media (max-width: 600px) {
  .photo-banner { min-height: 320px; }
}
