/* ==================================================
   GENEL AYARLAR / RENKLER BAŞLANGIÇ
================================================== */

:root {
  --wine: #5b3039;
  --wine2: #784752;
  --rose: #cfaeb4;
  --cream: #faf7f4;
  --ink: #211a1c;
  --muted: #6f6265;
  --line: #eadfe1;
  --white: #fff;
  --shadow: 0 18px 55px rgba(64, 40, 46, 0.12);
  --radius: 26px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 10px 14px;
}
/* ==================================================
   HEADER / NAVBAR BAŞLANGIÇ
================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(44, 25, 30, 0.07);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  width: 225px;
  flex: 0 0 225px;
}
.brand img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.main-nav > a,
.nav-dropdown > button {
  border: 0;
  background: none;
  padding: 13px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #4b3e41;
  cursor: pointer;
  border-radius: 12px;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown > button:hover {
  color: var(--wine);
  background: var(--cream);
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 235px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--wine);
}
.header-actions {
  display: flex;
  gap: 8px;
}
.header-btn {
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}
.header-btn.primary {
  background: var(--wine);
  color: #fff;
}
.header-btn.outline {
  border: 1px solid var(--wine);
  color: var(--wine);
  background: #fff;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}
/* ==================================================
   SLIDER BAŞLANGIÇ
================================================== */

.hero-slider {
  position: relative;
  height: min(78vh, 760px);
  min-height: 590px;
  overflow: hidden;
  background: #f1ecea;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-panel {
  position: absolute;
  left: max(5vw, 24px);
  bottom: 70px;
  z-index: 4;
  width: min(610px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.95);
  padding: 38px 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.eyebrow {
  display: inline-block;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-panel h1,
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
  margin: 0 0 18px;
}
.hero-panel p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
}
.btn-primary {
  background: var(--wine);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--wine);
  border: 1px solid var(--line);
}
.slider-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  color: var(--wine);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  font-size: 23px;
}
.slider-prev {
  left: 18px;
}
.slider-next {
  right: 18px;
}
.slider-dots {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0;
}
.slider-dots button.active {
  width: 34px;
  background: var(--wine);
}
/* ==================================================
   ORTAK SAYFA BÖLÜMLERİ BAŞLANGIÇ
================================================== */

.section {
  padding: 100px 0;
}
.section.alt {
  background: var(--cream);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2,
.content-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  margin: 0 0 18px;
}
.section-heading p,
.lead {
  font-size: 18px;
  color: var(--muted);
}
.about-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.visual-stack {
  position: relative;
  min-height: 570px;
}
.visual-stack .main-img {
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.visual-stack .small-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 285px;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}
.pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f2e7e9;
  color: var(--wine);
  font-weight: 800;
  font-size: 13px;
}
.feature-list {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}
.feature {
  display: flex;
  gap: 15px;
}
.feature i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--wine);
  color: #fff;
  border-radius: 50%;
  flex: 0 0 42px;
}
.feature h3 {
  margin: 0;
  font-size: 17px;
}
.feature p {
  margin: 2px 0;
  color: var(--muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(52, 31, 37, 0.05);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
.card-body {
  padding: 25px;
}
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  margin: 0 0 8px;
}
.card p {
  color: var(--muted);
  margin: 0 0 14px;
}
.text-link {
  font-weight: 800;
  color: var(--wine);
}
.page-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff 0%, #f5ebed 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .shell {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.page-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 15px;
}
.breadcrumbs a {
  color: var(--wine);
  font-weight: 700;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.team-card div {
  padding: 20px;
}
.team-card h3 {
  margin: 0;
  font-family: "Playfair Display";
  font-size: 24px;
}
.team-card p {
  margin: 4px 0;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
}
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
  border: 0;
}
.contact-item i {
  color: var(--wine);
  font-size: 20px;
  width: 24px;
}
.map iframe {
  width: 100%;
  min-height: 530px;
  border: 0;
  border-radius: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}
.login-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: var(--cream);
  padding: 60px 20px;
}
.login-card {
  width: min(480px, 100%);
  background: #fff;
  padding: 42px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.login-card h1 {
  font-family: "Playfair Display";
  font-size: 40px;
  margin: 0 0 10px;
}
.login-card input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 7px 0;
}
/* ==================================================
   RANDEVU ÇAĞRI ALANI BAŞLANGIÇ
================================================== */

.cta-band {
  background: var(--wine);
  color: #fff;
  padding: 70px 0;
}
.cta-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 {
  font-family: "Playfair Display";
  font-size: 42px;
  margin: 0;
}
/* ==================================================
   FOOTER BAŞLANGIÇ
================================================== */

.site-footer {
  background: #21191b;
  color: #fff;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
}
.footer-brand img {
  width: 250px;
  height: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand p,
.site-footer a {
  color: #cdbfc2;
}
.site-footer h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-footer a {
  display: block;
  margin: 8px 0;
}
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  color: #9f9093;
  font-size: 12px;
}
/* ==================================================
   SABİT SOSYAL MEDYA BUTONLARI BAŞLANGIÇ
================================================== */

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  gap: 10px;
}
.floating-actions a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.float-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.float-whatsapp {
  background: #25d366;
}
.float-phone {
  background: var(--wine);
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* ==================================================
   RESPONSIVE / TABLET VE MOBİL BAŞLANGIÇ
================================================== */

@media (max-width: 1050px) {
  .brand {
    width: 180px;
    flex-basis: 180px;
  }
  .main-nav > a,
  .nav-dropdown > button {
    font-size: 13px;
    padding: 11px 7px;
  }
  .header-btn {
    padding: 10px 11px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .header-inner {
    height: 86px;
  }
  .brand {
    width: 180px;
    flex-basis: 180px;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    margin-left: 0;
  }
  .header-btn.primary {
    display: none;
  }
  .main-nav {
    position: absolute;
    top: 86px;
    left: 14px;
    right: 14px;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: block;
  }
  .main-nav > a,
  .nav-dropdown > button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--cream);
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .hero-slider {
    height: 700px;
  }
  .hero-panel {
    bottom: 45px;
  }
  .about-grid,
  .split,
  .page-hero .shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }
  .brand {
    width: 150px;
    flex-basis: 150px;
  }
  .header-actions .outline {
    padding: 9px 11px;
    font-size: 12px;
  }
  .hero-slider {
    height: 720px;
  }
  .hero-panel {
    left: 12px;
    bottom: 28px;
    width: calc(100% - 24px);
    padding: 28px 24px;
  }
  .hero-panel h1 {
    font-size: 42px;
  }
  .slider-arrows {
    display: none;
  }
  .section {
    padding: 72px 0;
  }
  .visual-stack {
    min-height: 430px;
  }
  .visual-stack .main-img {
    height: 390px;
    width: 90%;
  }
  .visual-stack .small-img {
    height: 190px;
  }
  .card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .card img {
    height: 250px;
  }
  .page-hero {
    padding: 60px 0;
  }
  .page-hero img {
    height: 270px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cta-band h2 {
    font-size: 34px;
  }
}

/* 2026 profesyonel galeri, gelişmiş slider ve kapsamlı footer */
.hero-panel {
  overflow: hidden;
}
.hero-panel:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(var(--wine), var(--rose));
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-mini {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.hero-mini strong {
  display: block;
  color: var(--wine);
  font-size: 18px;
}
.hero-slide img {
  transform: scale(1.02);
  transition: transform 7s ease;
}
.hero-slide.active img {
  transform: scale(1.08);
}
/* ==================================================
   STÜDYO GALERİSİ BAŞLANGIÇ
================================================== */

.studio-gallery {
  background: #fff;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 245px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(64, 40, 46, 0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(28, 18, 21, 0.65));
}
.gallery-item span {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-large {
  grid-row: span 2;
}
.gallery-wide {
  grid-column: span 2;
}
.gallery-cta {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.gallery-cta p {
  margin: 0;
  color: var(--muted);
}
.footer-grid-rich {
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1.2fr 1fr;
  gap: 34px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  margin: 0;
  color: #fff;
}
.footer-socials a:hover {
  background: var(--wine2);
}
.site-footer a:hover {
  color: #fff;
}
.site-footer h3 {
  margin: 0 0 18px;
}
.footer-address {
  color: #cdbfc2;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
}
.footer-address i {
  margin-right: 7px;
}
.hours-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cdbfc2;
}
.hours-row span,
.hours-row strong {
  display: block;
}
.hours-row strong {
  color: #fff;
  font-size: 13px;
}
.footer-appointment {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 18px !important;
  color: #fff !important;
  font-weight: 800;
}
.footer-bottom a {
  display: inline !important;
  margin: 0 !important;
  color: #fff;
  font-weight: 800;
}
@media (max-width: 1100px) {
  .footer-grid-rich {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-large {
    grid-row: span 2;
  }
  .gallery-wide {
    grid-column: span 2;
  }
}
@media (max-width: 700px) {
  .hero-mini {
    gap: 14px;
  }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-large,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }
  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
  .floating-actions {
    right: 12px;
    bottom: 16px;
  }
  .floating-actions a {
    width: 46px;
    height: 46px;
  }
  .hero-panel {
    background: rgba(255, 255, 255, 0.97);
  }
}
@media (max-width: 480px) {
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-mini {
    display: none;
  }
}

/* V4: slider okunabilirlik ve zengin galeri */
.hero-panel {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  max-height: calc(100% - 120px);
  overflow: auto;
  scrollbar-width: none;
}
.hero-panel::-webkit-scrollbar {
  display: none;
}
.hero-panel h1 {
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.02;
}
.hero-panel.is-changing {
  opacity: 0;
  transform: translateY(calc(-50% + 12px));
}
.hero-panel {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 230px;
  gap: 18px;
}
.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: #eadfdd;
  box-shadow: 0 14px 40px rgba(64, 40, 46, 0.11);
  isolation: isolate;
}
.gallery-card-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-card-tall {
  grid-row: span 2;
}
.gallery-card-wide {
  grid-column: span 2;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}
.gallery-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(31, 18, 22, 0.72) 100%
  );
  z-index: 1;
}
.gallery-card:hover img {
  transform: scale(1.055);
}
.gallery-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}
.gallery-copy small {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}
.gallery-copy strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.12;
}
.gallery-note {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(145deg, #f6eeec, #fff);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-note h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
.gallery-note p {
  margin: 0 0 18px;
  color: var(--muted);
}
.gallery-cta strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero-panel {
    left: 32px;
    width: min(570px, calc(100% - 64px));
  }
  .gallery-showcase {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }
  .gallery-card-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-card-tall {
    grid-row: span 2;
  }
  .gallery-card-wide {
    grid-column: span 2;
  }
}
@media (max-width: 760px) {
  .hero-slider {
    min-height: 680px;
    height: 82vh;
  }
  .hero-panel {
    left: 16px;
    width: calc(100% - 32px);
    top: auto;
    bottom: 34px;
    transform: none;
    padding: 26px 24px;
    max-height: calc(100% - 100px);
  }
  .hero-panel.is-changing {
    transform: translateY(10px);
  }
  .hero-panel h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero-panel p {
    font-size: 15px;
  }
  .gallery-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }
  .gallery-card-feature,
  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-note {
    min-height: 270px;
  }
}

/* ==================================================
   AÇIK RENK FOOTER TASARIMI BAŞLANGIÇ
================================================== */
.site-footer {
  background: linear-gradient(180deg, #f8f3ef 0%, #efe4de 100%);
  color: #4d3f3f;
  border-top: 1px solid rgba(121, 58, 69, 0.12);
  box-shadow: inset 0 20px 45px rgba(121, 58, 69, 0.035);
}

.site-footer .footer-brand img {
  filter: none;
}

.site-footer h3 {
  color: #793a45;
  font-weight: 800;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer .footer-address,
.site-footer .hours-row {
  color: #655655;
}

.site-footer a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a:hover {
  color: #a94f60;
  transform: translateX(3px);
}

.site-footer .footer-socials a {
  color: #ffffff;
  background: #793a45;
  box-shadow: 0 8px 20px rgba(121, 58, 69, 0.18);
}

.site-footer .footer-socials a:hover {
  color: #ffffff;
  background: #b85f6c;
  transform: translateY(-3px);
}

.site-footer .hours-row {
  border-bottom-color: rgba(121, 58, 69, 0.14);
}

.site-footer .hours-row strong {
  color: #793a45;
}

.site-footer .footer-appointment {
  color: #ffffff !important;
  background: #793a45;
  border-color: #793a45;
}

.site-footer .footer-appointment:hover {
  color: #ffffff !important;
  background: #a94f60;
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  color: #756563;
  border-top-color: rgba(121, 58, 69, 0.16);
  background: rgba(255, 255, 255, 0.3);
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -24px;
  padding: 20px;
  border-radius: 18px 18px 0 0;
}

.site-footer .footer-bottom a {
  color: #793a45;
  font-weight: 800;
  display: inline;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 55px;
  }

  .site-footer .footer-bottom {
    margin-left: -12px;
    margin-right: -12px;
    text-align: center;
  }
}
/* ==================================================
   AÇIK RENK FOOTER TASARIMI BİTİŞ
================================================== */


/* ==================================================
   SADE STÜDYO GALERİSİ BAŞLANGIÇ
================================================== */
.gallery-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-clean-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #eadfdd;
  box-shadow: 0 14px 36px rgba(64, 40, 46, 0.10);
}

.gallery-clean-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-clean-tall {
  grid-row: span 2;
}

.gallery-clean-wide {
  grid-column: span 2;
}

.gallery-clean-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.gallery-clean-item::after {
  content: "↗";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7b3943;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(31, 18, 22, 0.14);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-clean-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.gallery-clean-item:hover::after,
.gallery-clean-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-clean-footer {
  margin-top: 28px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  background: #f8f3ef;
  border: 1px solid rgba(123, 57, 67, 0.12);
}

.gallery-clean-footer p {
  margin: 0;
  color: #4d3f3f;
  font-weight: 600;
}

@media (max-width: 980px) {
  .gallery-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }
}

@media (max-width: 640px) {
  .gallery-clean-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-clean-large,
  .gallery-clean-tall,
  .gallery-clean-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-clean-footer {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
}
/* ==================================================
   SADE STÜDYO GALERİSİ BİTİŞ
================================================== */


/* SEO için erişilebilir, görsel olarak gizli ana başlık */
.seo-h1{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}
