
:root{
  --bg:#d4e2cb;
  --paper:#fffaf5;
  --ink:#1e1a17;
  --muted:#675f59;
  --line:#b9c8b1;
  --accent:#829678;
  --accent-dark:#53664d;
  --soft:#e9f0e4;
  --header-h:72px;
  --mobile-bar-h:72px;
}
*{box-sizing:border-box}
html{scroll-behavior:auto;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  overflow-x:hidden;
  padding-bottom:calc(var(--mobile-bar-h) + env(safe-area-inset-bottom));
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:auto}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(212,226,203,.94);
  
  
  border-bottom:1px solid var(--line);
  padding-top:env(safe-area-inset-top);
}
.nav{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px
}
.brand{
  font-family:Georgia,serif;
  font-size:1.06rem;
  letter-spacing:.10em;
  white-space:nowrap;
  line-height:1.15
}
.navlinks{display:none}
.desktop-randevu{display:none}

.menu-toggle{
  width:46px;height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--paper);
  color:var(--ink);
  cursor:pointer;
  flex:0 0 auto;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  display:block;
  width:19px;height:1.5px;
  background:currentColor;
  border-radius:10px;
  transition:.2s ease;
  position:relative
}
.menu-toggle span::before{position:absolute;top:-6px}
.menu-toggle span::after{position:absolute;top:6px}
.menu-toggle[aria-expanded="true"] span{background:transparent}
.menu-toggle[aria-expanded="true"] span::before{top:0;transform:rotate(45deg)}
.menu-toggle[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg)}

.mobile-panel{
  position:fixed;
  inset:calc(var(--header-h) + env(safe-area-inset-top)) 0 0 0;
  z-index:190;
  background:rgba(212,226,203,.985);
  padding:24px 4% calc(110px + env(safe-area-inset-bottom));
  overflow-y:auto;
  transform:translateX(100%);
  visibility:hidden;
  pointer-events:none;
  transition:transform .24s ease, visibility 0s linear .24s;
}
.mobile-panel.open{
  transform:translateX(0);
  visibility:visible;
  pointer-events:auto;
  transition-delay:0s;
}
.mobile-panel .menu-group{
  border-bottom:1px solid var(--line);
  padding:6px 0 16px;
  margin-bottom:12px
}
.mobile-panel .menu-title{
  display:block;
  font-family:Georgia,serif;
  font-size:1.45rem;
  padding:10px 0
}
.mobile-panel .submenu{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px
}
.mobile-panel .submenu a{
  min-height:46px;
  display:flex;
  align-items:center;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--paper);
  font-size:.92rem
}
.mobile-panel .single-link{
  display:flex;
  align-items:center;
  min-height:52px;
  font-family:Georgia,serif;
  font-size:1.35rem;
  border-bottom:1px solid var(--line)
}

/* TYPOGRAPHY */
.kicker{
  font-size:.76rem;
  letter-spacing:.19em;
  text-transform:uppercase;
  color:var(--accent-dark)
}
h1,h2,h3{
  font-family:Georgia,serif;
  font-weight:500;
  line-height:1.07;
  margin:0 0 18px
}
h1{font-size:clamp(2.45rem,11vw,3.85rem)}
h2{font-size:clamp(1.75rem,7.2vw,2.85rem)}
h3{font-size:1.48rem}
.lead{font-size:1.03rem;color:var(--muted);max-width:680px}

/* BUTTONS */
.cta{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border:1px solid var(--ink);
  border-radius:999px;
  transition:.2s ease
}
.cta:hover{background:var(--ink);color:#fff}
.cta.primary{background:var(--ink);color:#fff}
.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px
}

/* HERO */
.hero{
  min-height:auto;
  padding:28px 0 48px
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  align-items:center
}
.hero .placeholder{
  order:-1;
  min-height:clamp(300px,40vh,390px);
}
.placeholder{
  min-height:420px;
  border:1px dashed #b8a99d;
  border-radius:26px;
  background:
    linear-gradient(135deg,rgba(155,121,103,.12),rgba(255,255,255,.48)),
    repeating-linear-gradient(45deg,transparent,transparent 18px,rgba(0,0,0,.018) 18px,rgba(0,0,0,.018) 36px);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--muted);
  padding:28px
}
.placeholder strong{color:var(--ink)}

/* SECTIONS / CARDS */
section{padding:64px 0}
.section-head{
  display:block;
  margin-bottom:28px
}
.section-head .lead{margin-top:12px}
.grid-4,.grid-3,.grid-2{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}
.card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:var(--paper);
  transition:.2s ease
}
.card:active{transform:scale(.992)}
.card.featured{
  min-height:285px;
  background:linear-gradient(160deg,var(--paper),var(--soft))
}
.card small{
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-dark)
}
.card p{color:var(--muted);margin-bottom:0}

.split{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center
}
.small-ph{min-height:320px}

/* SERVICE PAGES */
.service-hero{padding:56px 0 44px}
.service-hero h1{font-size:clamp(2.35rem,10.5vw,3.7rem)}
.breadcrumb{
  font-size:.86rem;
  color:var(--muted);
  margin-bottom:18px;
  overflow-wrap:anywhere
}
.pill-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:22px
}
.pill{
  border:1px solid var(--line);
  padding:8px 11px;
  border-radius:999px;
  background:var(--paper);
  font-size:.86rem
}
.faq{border-top:1px solid var(--line)}
.faq details{
  padding:18px 0;
  border-bottom:1px solid var(--line)
}
.faq summary{
  cursor:pointer;
  font-weight:600;
  min-height:44px;
  display:flex;
  align-items:center
}
.note{
  background:#e7efe2;
  border:1px solid #b9c8b1;
  border-radius:18px;
  padding:16px;
  color:#4f5f4a;
  margin:20px 0
}

/* FOOTER */
.footer{
  padding:44px 0;
  border-top:1px solid var(--line);
  margin-top:30px;
  color:var(--muted)
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px
}

/* STICKY MOBILE CTA BAR */
.mobile-cta-bar{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:250;
  min-height:var(--mobile-bar-h);
  padding:10px 10px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,250,245,.97);
  
  
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:9px
}
.mobile-cta-bar a{
  min-height:50px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:650;
  border:1px solid var(--ink)
}
.mobile-cta-bar .wa{background:var(--ink);color:#fff}
.mobile-cta-bar .call{background:var(--paper)}

/* Tablet */
@media (min-width:700px){
  body{padding-bottom:0}
  .hero{padding:70px 0}
  .hero .placeholder{min-height:500px}
  .grid-4{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr 1fr}
  .section-head{display:flex;justify-content:space-between;gap:30px;align-items:end}
  .actions{display:flex;flex-wrap:wrap}
  .footer-grid{grid-template-columns:2fr 1fr 1fr}
  .mobile-cta-bar{display:none}
}

/* Desktop */
@media (min-width:1000px){
  :root{--header-h:76px}
  .brand{font-size:1.24rem}
  .menu-toggle,.mobile-panel{display:none}
  .desktop-randevu{display:inline-flex}
  .navlinks{
    display:flex;
    align-items:center;
    gap:24px;
    font-size:.94rem
  }
  .nav-item{position:relative;padding:28px 0}
  .dropdown{
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    position:absolute;
    top:70px;
    left:-18px;
    min-width:240px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:18px;
    padding:10px;
    box-shadow:0 22px 50px rgba(30,26,23,.10);
    transition:.18s ease
  }
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0)
  }
  .dropdown a{
    display:block;
    padding:10px 12px;
    border-radius:10px
  }
  .dropdown a:hover,
  .dropdown a:focus-visible{background:var(--soft)}
  .hero{
    min-height:82vh;
    display:grid;
    place-items:center;
    padding:92px 0 72px
  }
  .hero-grid{
    grid-template-columns:1.06fr .94fr;
    gap:50px
  }
  .hero .placeholder{
    order:initial;
    min-height:520px
  }
  h1{font-size:clamp(3rem,7vw,6.3rem)}
  h2{font-size:clamp(2.2rem,4.5vw,4.1rem)}
  section{padding:88px 0}
  .grid-4{grid-template-columns:repeat(4,1fr);gap:18px}
  .grid-3{grid-template-columns:repeat(3,1fr);gap:18px}
  .split{grid-template-columns:1fr 1fr;gap:36px}
  .card{min-height:310px;padding:28px}
  .card.featured{min-height:410px}
  .small-ph{min-height:370px}
  .service-hero{padding:104px 0 60px}
  .service-hero h1{font-size:clamp(3rem,7vw,5.5rem)}
}

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;transition:none!important}
}


/* V3.1 mobile polish */
@media (max-width:999px){
  .desktop-randevu{display:none!important}
  .nav .desktop-randevu{display:none!important}
  .hero-grid{gap:24px}
  .hero .placeholder{
    min-height:clamp(285px,38vh,380px);
    max-height:420px;
  }
}


/* V3.4.9 – ana sayfa hero başlığı daha dengeli küçültüldü */
.hero h1{
  font-size:clamp(1.85rem, 7vw, 3.1rem);
  line-height:1.04;
}

@media (min-width:1000px){
  .hero h1{
    font-size:clamp(2.35rem, 3.7vw, 3.7rem);
    line-height:1.03;
  }
}


/* V3.4.1 - Hizmet sayfaları çalışma galerisi taslak alanları */
.work-gallery-section{
  padding-top:24px;
}
.gallery-head{
  align-items:flex-end;
}
.gallery-intro{
  max-width:680px;
  margin-top:10px;
}
.work-gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.work-photo-placeholder{
  aspect-ratio:4/5;
  min-height:260px;
  border:1px dashed var(--line);
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.34),rgba(255,255,255,.08)),
    repeating-linear-gradient(45deg,rgba(255,255,255,.18) 0 18px,rgba(122,94,78,.025) 18px 36px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:5px;
  padding:22px;
  color:var(--muted);
}
.work-photo-placeholder span{
  color:var(--ink);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.13em;
}
.work-photo-placeholder small{
  font-size:.86rem;
}

@media (max-width:760px){
  .work-gallery-section{
    padding-top:8px;
  }
  .work-gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .work-photo-placeholder{
    min-height:0;
    border-radius:16px;
    padding:14px;
  }
  .work-photo-placeholder span{
    font-size:.72rem;
  }
  .work-photo-placeholder small{
    font-size:.74rem;
  }
}


/* V3.4.2 - Instagram, gerçek sayfa içi anchor bağlantıları ve FAQ düzeni */
html{
  scroll-padding-top:calc(var(--header-h) + 24px);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.instagram-link{
  display:none;
  min-height:44px;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  font-size:.88rem;
  color:var(--muted);
  border-radius:999px;
  transition:.18s ease;
}
.instagram-link:hover{
  color:var(--ink);
  background:var(--soft);
}
.pill{
  text-decoration:none;
}
.pill:focus-visible,
.instagram-link:focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
}
@media (min-width:1000px){
  .instagram-link{display:inline-flex}
}
@media (max-width:999px){
  .header-actions{display:none}
}


/* V3.4.4 - Kuaför ana hizmet grupları */
.grouped-service-grid{
  margin-top:22px;
}
.grouped-service-grid .card{
  scroll-margin-top:calc(var(--header-h) + 28px);
}


/* V3.4.5 - Kuaför alt hizmet içerik blokları */
.subservice-list-section{
  padding-top:28px;
}
.subservice-jump{
  margin:18px 0 34px;
}
.subservice-block{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.9fr);
  gap:42px;
  align-items:center;
  padding:48px 0;
  border-top:1px solid var(--line);
  scroll-margin-top:calc(var(--header-h) + 28px);
}
.subservice-block:first-of-type{
  margin-top:6px;
}
.subservice-copy{
  max-width:660px;
}
.subservice-copy h2{
  margin-top:8px;
}
.subservice-copy p{
  color:var(--muted);
  line-height:1.75;
}
.subservice-note{
  font-size:.93rem;
}
.subservice-photo{
  width:100%;
  min-height:320px;
}
.subservice-block:nth-of-type(even) .subservice-copy{
  order:2;
}
.subservice-block:nth-of-type(even) .subservice-photo{
  order:1;
}

@media (max-width:820px){
  .subservice-block{
    grid-template-columns:1fr;
    gap:20px;
    padding:34px 0;
  }
  .subservice-block:nth-of-type(even) .subservice-copy,
  .subservice-block:nth-of-type(even) .subservice-photo{
    order:initial;
  }
  .subservice-photo{
    min-height:240px;
  }
}


/* V3.4.6 - Logo entegrasyonu */
.brand-with-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:999px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-text{
  display:block;
  white-space:nowrap;
}
.footer-brand-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-mark{
  width:62px;
  height:62px;
  border-radius:999px;
  object-fit:contain;
  flex:0 0 auto;
}
.footer-brand-text{
  margin-bottom:6px;
}
@media (max-width:999px){
  .brand-mark{
    width:40px;
    height:40px;
  }
  .brand-text{
    font-size:.96rem;
    letter-spacing:.09em;
  }
  .footer-brand-wrap{
    align-items:flex-start;
  }
}


/* V3.4.7 - Oasis AVM canlı konum */
.location-note a{
  display:inline-block;
  margin-top:6px;
  font-weight:650;
  text-decoration:underline;
  text-underline-offset:3px;
}
.location-card{
  min-height:360px;
  justify-content:center;
}
.location-card h3{
  margin-top:10px;
}
.location-address{
  margin:12px 0 22px;
}
.map-cta{
  align-self:flex-start;
}
.map-frame-wrap{
  min-height:360px;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  background:var(--paper);
}
.map-frame{
  display:block;
  width:100%;
  height:100%;
  min-height:360px;
  border:0;
}
@media (max-width:699px){
  .location-card,
  .map-frame-wrap,
  .map-frame{
    min-height:300px;
  }
}


/* V3.4.8 - Ana sayfada doğrudan Google Maps önizleme */
.home-location-block{
  margin-top:26px;
  border:1px solid #b9c8b1;
  border-radius:22px;
  overflow:hidden;
  background:#e7efe2;
}
.home-location-copy{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
}
.home-location-copy strong{
  display:block;
  margin-top:4px;
  font-size:1.05rem;
}
.home-location-copy p{
  margin:4px 0 0;
  color:#4f5f4a;
  line-height:1.5;
}
.home-map-button{
  flex:0 0 auto;
  min-height:44px;
  padding:10px 15px;
}
.home-map-preview-link{
  display:block;
  position:relative;
  height:270px;
  border-top:1px solid #d9c9bd;
  background:var(--paper);
  overflow:hidden;
}
.home-map-preview{
  display:block;
  width:100%;
  height:100%;
  border:0;
  pointer-events:none;
}
@media (max-width:699px){
  .home-location-copy{
    display:block;
  }
  .home-map-button{
    margin-top:14px;
  }
  .home-map-preview-link{
    height:240px;
  }
}

/* V3.4.8 - iletişim sayfasında yalnızca adres + Maps butonu */
.location-section .container{
  max-width:820px;
}


/* V3.4.10 - Ana sayfadaki 4 ana hizmet kartı daha kompakt */
#hizmetler .card.featured{
  min-height:220px;
  padding:24px;
}

@media (min-width:700px){
  #hizmetler .card.featured{
    min-height:250px;
  }
}

@media (min-width:1000px){
  #hizmetler .card.featured{
    min-height:285px;
    padding:26px 28px;
  }
}


/* V3.4.11 - Marshall 50GY 75/122 esintili ana marka zemini */
body{
  background:var(--bg);
}
.header{
  background:rgba(212,226,203,.94);
}
.mobile-panel{
  background:rgba(212,226,203,.985);
}
.card,
.pill,
.dropdown,
.menu-toggle,
.mobile-panel .submenu a{
  background:var(--paper);
}
.placeholder{
  background:
    linear-gradient(135deg,rgba(255,255,255,.42),rgba(255,250,245,.56)),
    repeating-linear-gradient(45deg,transparent,transparent 18px,rgba(42,62,38,.022) 18px,rgba(42,62,38,.022) 36px);
}
.home-location-block{
  background:#e7efe2;
  border-color:#b9c8b1;
}
.home-location-copy p{
  color:#4f5f4a;
}
.home-map-preview-link{
  border-top-color:#b9c8b1;
}
.footer{
  background:rgba(212,226,203,.48);
}


/* V3.4.13 - Ana sayfa salon galerisi / slider */
.salon-slider{
  position:relative;
  min-width:0;
}
.salon-slider-viewport{
  overflow:hidden;
  border-radius:26px;
}
.salon-slider-track{
  display:flex;
  transition:transform .42s ease;
  will-change:transform;
}
.salon-slide{
  flex:0 0 100%;
  min-width:100%;
}
.salon-slide-placeholder{
  min-height:370px;
  border-radius:26px;
  flex-direction:column;
  gap:8px;
}
.salon-slide-placeholder span{
  color:var(--muted);
  font-size:.92rem;
}
.salon-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,250,245,.92);
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  z-index:2;
  box-shadow:0 10px 24px rgba(30,26,23,.08);
}
.salon-slider-prev{left:14px}
.salon-slider-next{right:14px}
.salon-slider-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}
.salon-dot{
  width:9px;
  height:9px;
  padding:0;
  border-radius:999px;
  border:1px solid var(--ink);
  background:transparent;
  cursor:pointer;
}
.salon-dot.is-active{
  background:var(--ink);
}
.salon-real-image{
  width:100%;
  height:370px;
  object-fit:cover;
  border-radius:26px;
  display:block;
}
@media (max-width:699px){
  .salon-slide-placeholder,
  .salon-real-image{
    min-height:300px;
    height:300px;
  }
  .salon-slider-arrow{
    width:42px;
    height:42px;
  }
}
@media (prefers-reduced-motion:reduce){
  .salon-slider-track{transition:none}
}


/* V3.4.14 - Ana sayfa konum alanı sade + hero başlık daha küçük */
.hero h1{
  font-size:clamp(1.95rem, 7.4vw, 3.35rem);
  line-height:1.05;
}
@media (min-width:1000px){
  .hero h1{
    font-size:clamp(2.55rem, 3.65vw, 3.95rem);
    line-height:1.04;
  }
}

.home-location-compact{
  margin-top:26px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#e7efe2;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.home-location-compact strong{
  display:block;
  margin-top:5px;
  font-size:1.05rem;
}
.home-location-compact p{
  margin:5px 0 0;
  color:#4f5f4a;
  line-height:1.5;
}
.home-location-cta{
  flex:0 0 auto;
  white-space:nowrap;
}

.contact-mini-map-wrap{
  margin-top:18px;
  height:220px;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:var(--paper);
}
.contact-mini-map{
  width:100%;
  height:100%;
  display:block;
  border:0;
}
.contact-mini-map[hidden]{display:none;}
.contact-map-consent{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:24px;
  text-align:center;
  background:var(--soft);
}
.contact-map-consent[hidden]{display:none;}
.contact-map-consent p{
  max-width:620px;
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.contact-map-load{
  flex:0 0 auto;
  cursor:pointer;
}

@media (max-width:699px){
  .home-location-compact{
    display:block;
    padding:18px;
  }
  .home-location-cta{
    margin-top:14px;
  }
  .contact-mini-map-wrap{
    height:190px;
  }
}


/* V3.4.15 - İletişim kartında Google Maps butonuna daha fazla nefes alanı */
.location-card .map-cta{
  margin-top:18px;
  align-self:flex-start;
}
.location-card .location-address{
  margin-bottom:0;
}


/* V3.4.17 - Örnek hizmet metinleri bilgi kartları */
.service-info-section{padding-top:24px;}
.service-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.service-info-card{border:1px solid var(--line);border-radius:22px;background:var(--paper);padding:24px;}
.service-info-card h3{margin:0 0 10px;font-family:"Cormorant Garamond",serif;font-size:1.55rem;}
.service-info-card p{margin:0;color:var(--muted);line-height:1.68;}
@media(max-width:820px){.service-info-grid{grid-template-columns:1fr;}}



/* V3.4.19 - Başlıklar gereksiz alt alta düşmesin */
@media (min-width: 1000px){
  .split h2,
  .service-hero h1{
    max-width: none;
    width: auto;
  }
}


/* V3.4.20 - Sade bölüm başlıkları */
.section-label-heading{
  margin:0 0 20px;
  font-family:inherit;
  font-weight:500;
  line-height:1.2;
}
.service-info-section .section-head,
.work-gallery-section .section-head{
  margin-bottom:18px;
}
#sss > .container > .section-label-heading{
  margin-bottom:18px;
}


/* V3.4.22 - Manikür / Pedikür fotoğrafsız içerik düzeni */
.split.single-copy{
  grid-template-columns:minmax(0, 760px);
  justify-content:start;
}
@media (min-width:1000px){
  .split.single-copy{
    grid-template-columns:minmax(0, 820px);
  }
}


/* V3.4.23 - Performans / mobil kaydırma hafifletme */
html{
  scroll-behavior:auto !important;
}

/* Blur yerine opak arka plan: mobil Safari/Chrome'da daha hafif */
.site-header{
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.mobile-cta-bar{
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

/* Kullanıcı hareket azaltmayı seçtiyse animasyon/transition yükünü minimuma indir */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto !important;
  }
  *,
  *::before,
  *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
}


/* V3.4.32 - Semantik heading hiyerarşisi */
.location-card .location-card-heading{
  margin-top:10px;
  font-size:1.48rem;
}


/* V3.4.44 - Gerçek salon / hizmet görselleri */
.hero-real-image{
  width:100%;
  height:clamp(300px,40vh,390px);
  object-fit:cover;
  object-position:center;
  border-radius:26px;
  display:block;
}
.service-real-image{
  width:100%;
  min-height:320px;
  height:100%;
  max-height:520px;
  object-fit:cover;
  object-position:center;
  border-radius:26px;
  display:block;
}
@media (min-width:900px){
  .hero-real-image{
    height:500px;
  }
}
@media (max-width:760px){
  .service-real-image{
    min-height:300px;
    max-height:420px;
  }
  }


/* V3.4.45 - Fotoğrafı olmayan hizmetlerde boş alan bırakma */
.subservice-block.no-media{
  grid-template-columns:minmax(0, 820px);
  justify-content:start;
}
.subservice-block.no-media .subservice-copy{
  order:initial !important;
}


/* V3.4.47 - Galeri + Instagram */
.gallery-instagram-section{
  padding-top:72px;
}
.gallery-instagram-layout{
  display:grid;
  grid-template-columns:minmax(260px,.8fr) minmax(0,1.6fr);
  gap:28px;
  align-items:stretch;
}
.instagram-profile-card{
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--paper);
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
}
.instagram-profile-card h3{
  margin:8px 0 12px;
  font-size:clamp(1.5rem,2vw,2.15rem);
}
.instagram-profile-card p{
  margin:0 0 22px;
  color:var(--muted);
  max-width:38ch;
}
.instagram-gallery-cta{
  align-self:flex-start;
}
.salon-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.salon-gallery-item{
  margin:0;
  overflow:hidden;
  border-radius:22px;
  background:var(--paper);
  aspect-ratio:4/3;
}
.salon-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media (max-width:860px){
  .gallery-instagram-layout{
    grid-template-columns:1fr;
  }
  .instagram-profile-card{
    padding:24px;
  }
}
@media (max-width:560px){
  .salon-gallery-grid{
    grid-template-columns:1fr;
  }
  .salon-gallery-item{
    aspect-ratio:4/3;
  }
}


/* V3.4.50 - SEO Adım 20: Mobil uyumluluk / responsive UX */

/* Dokunmatik kontroller */
a,
button{
  -webkit-tap-highlight-color:rgba(30,26,23,.08);
}
.menu-toggle,
.mobile-cta-bar a,
.mobile-panel a,
.salon-slider-arrow,
.salon-dot,
.cta{
  touch-action:manipulation;
}

/* Slider dotlarının görünen noktası küçük kalsın, dokunma alanı büyüsün */
.salon-dot{
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  display:grid;
  place-items:center;
  position:relative;
}
.salon-dot::after{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid var(--ink);
  background:transparent;
  display:block;
}
.salon-dot.is-active{
  background:transparent;
}
.salon-dot.is-active::after{
  background:var(--ink);
}
.salon-slider-dots{
  gap:2px;
  margin-top:8px;
}

/* Mobile/tablet: sabit randevu aksiyonu 999px'e kadar erişilebilir kalsın */
@media (max-width:999px){
  body{
    padding-bottom:calc(var(--mobile-bar-h) + env(safe-area-inset-bottom));
  }
  .mobile-cta-bar{
    display:grid;
  }
  .mobile-cta-bar a{
    padding:0 10px;
    text-align:center;
  }
}

/* Çok dar telefonlarda başlık, menü ve aksiyonlar sıkışmasın */
@media (max-width:430px){
  .nav{
    gap:10px;
  }
  .brand-with-logo{
    gap:8px;
    min-width:0;
  }
  .brand-text{
    font-size:.84rem;
    letter-spacing:.06em;
  }
  .mobile-panel{
    padding-left:5%;
    padding-right:5%;
  }
  .mobile-panel .submenu{
    grid-template-columns:1fr;
  }
  .mobile-panel .submenu a{
    min-height:48px;
    font-size:.95rem;
  }
  .actions{
    grid-template-columns:1fr;
  }
  .actions .cta{
    width:100%;
  }
  .salon-slider-arrow{
    width:46px;
    height:46px;
  }
}

/* En dar ekranlarda marka alanına güvenli pay */
@media (max-width:350px){
  .brand-text{
    font-size:.76rem;
    letter-spacing:.035em;
  }
  .brand-mark{
    width:36px;
    height:36px;
  }
  .menu-toggle{
    width:44px;
    height:44px;
  }
}

/* Galeri CTA mobilde rahat dokunulsun */
@media (max-width:560px){
  .instagram-gallery-cta{
    width:100%;
    min-height:50px;
    text-align:center;
  }
}

/* Klavye odağı */
.menu-toggle:focus-visible,
.mobile-cta-bar a:focus-visible,
.mobile-panel a:focus-visible,
.salon-slider-arrow:focus-visible,
.salon-dot:focus-visible,
.cta:focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
}


/* V3.4.51 - SEO Adım 21: dönüşüm UX */
a[data-conversion="whatsapp"],
a[data-conversion="phone"]{
  text-underline-offset:3px;
}


/* V3.4.56 - SEO Adım 28: Güven / işletme sinyalleri */
.footer-social{
  margin-top:8px;
}
.contact-salon-proof{
  padding-top:24px;
}
.contact-salon-proof-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:32px;
  align-items:center;
}
.contact-salon-proof-copy{
  max-width:620px;
}
.contact-salon-proof-image{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:26px;
  display:block;
}
@media (max-width:860px){
  .contact-salon-proof-grid{
    grid-template-columns:1fr;
  }
}

/* V3.4.59 - klavye, dar masaüstü ve footer yerleşim düzeltmeleri */
@media (min-width:700px){
  .footer-social{
    grid-column:3;
    grid-row:2;
  }
}

@media (min-width:1000px) and (max-width:1179px){
  .brand-text{
    display:none;
  }
  .navlinks{
    gap:14px;
    font-size:.88rem;
  }
  .header-actions .instagram-link{
    display:none;
  }
}

/* V3.4.60 - hizmet sayfalarında ölçülü WhatsApp randevu çağrısı */
.service-booking-section{
  padding-top:20px;
}
.service-booking-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--soft);
}
.service-booking-card p{
  margin:5px 0 0;
  color:var(--muted);
}
.service-booking-cta{
  flex:0 0 auto;
  white-space:nowrap;
}
@media (max-width:699px){
  .service-booking-card{
    display:block;
    padding:20px;
  }
  .service-booking-cta{
    width:100%;
    margin-top:16px;
    white-space:normal;
    text-align:center;
  }
}

/* V3.4.61 - KVKK uyumlu temel analitik izni ve çerez politikası */
.footer-legal{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-size:.9rem;
}
.footer-legal a,
.cookie-settings-trigger{
  color:var(--muted);
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-settings-trigger{
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  font:inherit;
  cursor:pointer;
}

.cookie-banner{
  position:fixed;
  left:12px;
  right:12px;
  bottom:calc(var(--mobile-bar-h) + 12px + env(safe-area-inset-bottom));
  z-index:400;
  width:auto;
  max-width:920px;
  margin:0 auto;
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--paper);
  box-shadow:0 18px 50px rgba(30,26,23,.18);
  color:var(--ink);
}
.cookie-banner[hidden]{display:none;}
.cookie-banner-copy strong{
  display:block;
  font-family:Georgia,serif;
  font-size:1.3rem;
  font-weight:500;
}
#cookie-banner-title:focus{outline:none;}
.cookie-banner-copy p{
  margin:7px 0 0;
  color:var(--muted);
  line-height:1.55;
}
.cookie-banner-copy a{
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-banner-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:15px;
}
.cookie-action{
  min-height:46px;
  padding:10px 16px;
  border:1px solid var(--ink);
  border-radius:999px;
  background:var(--paper);
  color:var(--ink);
  font:inherit;
  font-weight:650;
  cursor:pointer;
}
.cookie-action:hover{
  background:var(--ink);
  color:#fff;
}
.cookie-settings-trigger:focus-visible,
.cookie-action:focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
}

.policy-section{padding-top:18px;}
.policy-content{max-width:900px;}
.policy-content h2{
  margin-top:38px;
  font-size:clamp(1.55rem,5vw,2.15rem);
}
.policy-content a{
  text-decoration:underline;
  text-underline-offset:3px;
}
.policy-table-wrap{
  margin-top:18px;
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--paper);
}
.policy-table{
  width:100%;
  min-width:680px;
  border-collapse:collapse;
}
.policy-table th,
.policy-table td{
  padding:14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
.policy-table tr:last-child td{border-bottom:0;}

@media (min-width:700px){
  .cookie-banner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:24px;
    bottom:18px;
    padding:20px 22px;
  }
  .cookie-banner-actions{
    min-width:240px;
    margin-top:0;
  }
}

/* V3.4.62 - Odak görünümü düzeltmesi ve isteğe bağlı Google Maps yükleme */
/* FINAL PRE-LAUNCH REVIEW V3.4.62 */
