/* ==========================================================================
   METİN ALTIN — Bespoke Wood Studio
   ========================================================================== */

:root{
  --black:#0b0b0c;
  --black-soft:#151513;
  --charcoal:#211f1c;
  --gold:#b6884e;
  --gold-light:#d9b988;
  --gold-dark:#8a6836;
  --cream:#f6f2ea;
  --cream-2:#efe8da;
  --ink:#211d18;
  --muted:#6f6a60;
  --line:#e3dcc9;
  --radius:2px;
  --maxw:1180px;
  --nav-h:76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Poppins', -apple-system, 'Segoe UI', Arial, sans-serif;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:'Playfair Display', Georgia, serif; font-weight:600; }
p{ margin:0; }
.section-pad{ padding:88px 0; }
@media (max-width:700px){ .section-pad{ padding:64px 0; } }

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-weight:600;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--gold-dark);
  display:inline-block;
}
.section-title{
  font-size:clamp(28px,4vw,42px);
  letter-spacing:.5px;
  color:var(--ink);
  margin-bottom:18px;
}
.section-intro{
  max-width:640px;
  color:var(--muted);
  font-size:15.5px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  font-size:13.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:600;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-gold{
  background:linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color:#1a1408;
}
.btn-gold:hover{ filter:brightness(1.06); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:#fff;
}
.btn-outline:hover{ background:rgba(255,255,255,.12); }
.btn-dark{
  background:var(--black);
  color:var(--cream);
}
.btn-dark:hover{ background:var(--charcoal); }
.btn-whatsapp{
  background:#22c35e;
  color:#08240f;
}
.btn-whatsapp:hover{ filter:brightness(1.05); }
.btn svg{ width:17px; height:17px; flex:none; }
.btn-block{ width:100%; }

/* ---------- Nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(11,11,12,0);
  transition:background .35s ease, height .35s ease, box-shadow .35s ease;
}
.nav.scrolled{
  background:rgba(11,11,12,.94);
  height:64px;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}
.nav-inner{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:12px;
  color:#fff;
}
.brand-mono{ height:34px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .name{
  font-family:'Playfair Display', serif;
  font-size:19px;
  letter-spacing:3px;
  color:#fff;
}
.brand-text .sub{
  font-size:8.5px;
  letter-spacing:2.6px;
  color:var(--gold-light);
  margin-top:3px;
}
.nav-links{
  display:flex; align-items:center; gap:34px;
}
.nav-links a{
  color:#f1ece0;
  font-size:13px;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-weight:500;
  position:relative;
  padding:4px 0;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:-2px; height:1px;
  background:var(--gold-light);
  transition:right .25s ease;
}
.nav-links a:hover::after{ right:0; }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  color:#fff; font-size:13.5px; font-weight:500;
}
.nav-phone svg{ width:16px; height:16px; color:var(--gold-light); }
.nav-toggle{
  display:none;
  width:40px; height:40px;
  border:none; background:transparent;
  cursor:pointer;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav-toggle span{
  width:24px; height:2px; background:#fff; display:block;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; z-index:999;
  background:rgba(10,10,10,.98);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:28px;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
}
.mobile-menu.open{ opacity:1; visibility:visible; transform:translateY(0); }
.mobile-menu a{
  color:#f4efe4; font-family:'Playfair Display',serif;
  font-size:24px; letter-spacing:1px;
}
.mobile-menu .btn{ margin-top:14px; }

@media (max-width:920px){
  .nav-links{ display:none; }
  .nav-phone{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  color:#fff;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center 38%;
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(20,16,10,.25) 0%, rgba(8,8,7,.55) 55%, rgba(6,6,6,.8) 100%),
    linear-gradient(180deg, rgba(6,6,6,.6) 0%, rgba(8,8,7,.35) 35%, rgba(6,6,6,.75) 100%);
}
.hero-content{
  position:relative; z-index:2;
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:calc(var(--nav-h) + 26px) 24px 60px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
}
.hero-mono{ width:64px; height:auto; margin-bottom:22px; opacity:.95; }
.hero-content h1{
  font-size:clamp(34px, 6.4vw, 68px);
  letter-spacing:6px;
  color:#fdf9f0;
  line-height:1.08;
}
.hero-content .sub-brand{
  font-size:clamp(11px,1.6vw,14px);
  letter-spacing:6px;
  color:var(--gold-light);
  text-transform:uppercase;
  margin-top:14px;
  font-weight:500;
}
.hero-tagline{
  font-family:'Playfair Display', serif;
  font-style:italic;
  color:#e9e2d2;
  font-size:clamp(15px,2vw,19px);
  margin-top:26px;
  letter-spacing:.4px;
}
.hero-desc{
  max-width:560px;
  color:#cfc9ba;
  font-size:14.5px;
  margin-top:16px;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:16px;
  margin-top:38px; justify-content:center;
}
.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  z-index:2;
  width:22px; height:36px; border:1.5px solid rgba(255,255,255,.55); border-radius:12px;
  display:flex; justify-content:center; padding-top:6px;
}
.scroll-cue span{
  width:3px; height:7px; background:#fff; border-radius:2px;
  animation:scrollcue 1.8s ease infinite;
}
@keyframes scrollcue{
  0%{ transform:translateY(0); opacity:1; }
  70%{ transform:translateY(10px); opacity:0; }
  100%{ opacity:0; }
}

/* ---------- About ---------- */
.about{ background:var(--cream); }
.about-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
}
.about-media{ position:relative; }
.about-media img{
  border-radius:var(--radius);
  box-shadow:0 30px 60px -20px rgba(20,15,5,.35);
}
.about-media .frame{
  position:absolute; inset:18px -18px -18px 18px;
  border:1px solid var(--gold);
  z-index:-1;
}
.about-text p{ color:var(--muted); margin-bottom:16px; font-size:15px; }
.value-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
  margin-top:30px;
}
.value-item{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px; background:#fff; border:1px solid var(--line);
}
.value-item svg{ width:22px; height:22px; color:var(--gold-dark); flex:none; margin-top:2px; }
.value-item .t{ font-weight:600; font-size:13.5px; letter-spacing:.3px; }
.value-item .d{ font-size:12.5px; color:var(--muted); margin-top:3px; }

@media (max-width:860px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .about-media{ order:-1; }
  .value-grid{ grid-template-columns:1fr; }
}

/* ---------- Services ---------- */
.services{ background:var(--cream-2); }
.service-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  margin-top:44px;
}
.service-card{
  position:relative; overflow:hidden;
  aspect-ratio:4/3;
  cursor:pointer;
  border-radius:var(--radius);
  isolation:isolate;
}
.service-card img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease;
}
.service-card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,0) 35%, rgba(8,8,7,.88) 100%);
}
.service-card:hover img{ transform:scale(1.07); }
.service-card .label{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:20px;
  color:#fff;
}
.service-card .label .name{
  font-family:'Playfair Display',serif;
  font-size:19px;
  letter-spacing:.4px;
}
.service-card .label .arrow{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; letter-spacing:1.6px; text-transform:uppercase;
  color:var(--gold-light); margin-top:8px;
}
.tagcloud{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:46px;
}
.tagcloud span{
  font-size:12.5px; letter-spacing:.4px;
  padding:8px 15px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  border-radius:20px;
}

@media (max-width:900px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .service-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .service-card .label{ padding:14px; }
  .service-card .label .name{ font-size:15px; }
  .service-card .label .arrow{ display:none; }
}

/* ---------- Process / Timeline ---------- */
.process{ background:var(--cream); }
.timeline{
  margin-top:48px;
  position:relative;
  max-width:760px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:23px; top:6px; bottom:6px;
  width:1px;
  background:linear-gradient(180deg, var(--gold), var(--line) 90%);
}
.timeline-item{
  position:relative;
  display:flex; gap:24px;
  padding-bottom:38px;
}
.timeline-item:last-child{ padding-bottom:0; }
.tl-num{
  flex:none;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--cream);
  border:1px solid var(--gold);
  color:var(--gold-dark);
  font-family:'Playfair Display',serif;
  font-size:19px; font-weight:600;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1;
}
.tl-body h3{
  font-size:17.5px;
  color:var(--ink);
  margin-bottom:6px;
  font-weight:600;
}
.tl-body p{
  color:var(--muted);
  font-size:14px;
  max-width:520px;
}
@media (max-width:600px){
  .timeline::before{ left:19px; }
  .tl-num{ width:40px; height:40px; font-size:16px; }
  .timeline-item{ gap:16px; padding-bottom:30px; }
}

/* ---------- Gallery ---------- */
.gallery{ background:var(--cream); }
.filters{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:38px 0 36px;
}
.filter-btn{
  padding:10px 18px;
  font-size:12.5px; letter-spacing:1px; text-transform:uppercase;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  cursor:pointer;
  border-radius:20px;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover{ border-color:var(--gold); }
.filter-btn.active{
  background:var(--black);
  border-color:var(--black);
  color:#fff;
}
@media (max-width:760px){
  .filters-wrap{
    position:relative;
    margin:26px -24px 30px;
  }
  .filters{
    flex-wrap:nowrap;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    margin:0;
    padding:2px 24px 10px;
  }
  .filters::-webkit-scrollbar{ display:none; }
  .filter-btn{
    flex:none;
    white-space:nowrap;
    scroll-snap-align:start;
  }
  .filters-wrap::after{
    content:"";
    position:absolute; top:0; right:0; bottom:10px; width:28px;
    background:linear-gradient(90deg, rgba(246,242,234,0), var(--cream));
    pointer-events:none;
  }
}
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.grid-item{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  cursor:pointer;
  border-radius:var(--radius);
  background:#e6ded0;
}
.grid-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease, opacity .3s ease;
}
.grid-item:hover img{ transform:scale(1.06); }
.grid-item .zoom{
  position:absolute; right:10px; bottom:10px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(11,11,12,.55);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .25s ease;
}
.grid-item:hover .zoom{ opacity:1; }
.grid-item .zoom svg{ width:15px; height:15px; color:#fff; }
.grid-item.hide{ display:none; }

.gallery-more{
  text-align:center; margin-top:34px;
}

@media (max-width:900px){
  .grid{ grid-template-columns:repeat(3,1fr); gap:10px; }
}
@media (max-width:560px){
  .grid{ grid-template-columns:repeat(2,1fr); gap:8px; }
  .filters{ gap:8px; }
  .filter-btn{ padding:8px 14px; font-size:11px; }
}

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(6,6,6,.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox-inner{
  position:relative;
  max-width:min(92vw, 1100px);
  max-height:88vh;
  width:100%;
  display:flex; flex-direction:column; align-items:center;
  transform:scale(.88);
  transition:transform .35s cubic-bezier(.22,.8,.32,1);
}
.lightbox.open .lightbox-inner{ transform:scale(1); }
.lightbox img{
  max-width:100%; max-height:78vh; width:auto; margin:0 auto;
  border:1px solid rgba(255,255,255,.08);
}
.lightbox .cat-label{
  color:var(--gold-light); font-size:12.5px; letter-spacing:2px; text-transform:uppercase;
  margin-top:16px;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg{ width:18px; height:18px; }
.lightbox-close{ top:-58px; right:0; }
.lightbox-prev{ left:-56px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:-56px; top:50%; transform:translateY(-50%); }
@media (max-width:760px){
  .lightbox-close{ top:-46px; right:0; width:38px; height:38px; }
  .lightbox-prev{ left:6px; width:38px; height:38px; }
  .lightbox-next{ right:6px; width:38px; height:38px; }
}

/* ---------- Contact ---------- */
.contact{ background:var(--black); color:#efe9db; }
.contact .eyebrow{ color:var(--gold-light); }
.contact .eyebrow::before{ background:var(--gold-light); }
.contact .section-title{ color:#fff; }
.contact .section-intro{ color:#b9b2a2; }
.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  margin-top:44px;
  align-items:start;
}
@media (max-width:860px){
  .contact-layout{ grid-template-columns:1fr; gap:40px; }
}
.contact-cards{ display:flex; flex-direction:column; gap:16px; }
.contact-card{
  display:flex; align-items:center; gap:16px;
  padding:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
}
.contact-card .ico{
  width:46px; height:46px; flex:none;
  border-radius:50%;
  background:rgba(182,136,78,.16);
  display:flex; align-items:center; justify-content:center;
}
.contact-card .ico svg{ width:20px; height:20px; color:var(--gold-light); }
.contact-card .t{ font-size:11.5px; letter-spacing:1.6px; text-transform:uppercase; color:#a79f8d; }
.contact-card .v{ font-size:15.5px; margin-top:4px; font-weight:500; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }

.contact-form{
  display:flex; flex-direction:column; gap:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  padding:28px;
  border-radius:var(--radius);
}
.contact-form .eyebrow{ margin-bottom:2px; }
.contact-form .form-title{
  font-family:'Playfair Display',serif;
  font-size:22px; font-weight:600; color:#fff;
  margin:0;
}
.contact-form .form-note{ color:#b9b2a2; font-size:14px; margin:0 0 6px; }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:13px 15px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  color:#fff;
  font-family:inherit;
  font-size:14.5px;
  transition:border-color .2s ease, background .2s ease;
}
.contact-form select{ color:#e8e3d8; }
.contact-form select option{ color:#111; }
.contact-form textarea{ resize:vertical; min-height:70px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color:rgba(255,255,255,.42); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:rgba(255,255,255,.09);
}
.form-consent{
  display:flex; align-items:flex-start; gap:10px;
  font-size:12.5px; line-height:1.5; color:#c9c3b4;
  cursor:pointer;
}
.form-consent input{ margin-top:3px; flex:none; width:15px; height:15px; accent-color:var(--gold); }
.form-kvkk{
  font-size:12px; color:#a79f8d;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:10px; margin-top:-4px;
}
.form-kvkk summary{
  cursor:pointer; color:var(--gold-light);
  letter-spacing:.3px;
}
.form-kvkk p{ margin:10px 0 0; line-height:1.55; }
.contact-form .form-submit{ margin-top:4px; border:none; }
.contact-form .form-status{
  font-size:13.5px;
  margin:2px 0 0;
  min-height:18px;
}
.contact-form .form-status.ok{ color:#8fd19e; }
.contact-form .form-status.err{ color:#e08a8a; }

/* ---------- Footer ---------- */
.footer{
  background:var(--black-soft);
  color:#a89f8d;
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  flex-wrap:wrap;
}
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-brand img{ height:22px; width:auto; }
.footer-brand span{ font-family:'Playfair Display',serif; letter-spacing:2px; color:#eee5d4; font-size:14px; }
.footer-links{ display:flex; gap:22px; font-size:13px; }
.footer-links a:hover{ color:var(--gold-light); }
.footer-copy{ font-size:12px; color:#7d7666; }
.footer-social{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
}
.footer-social svg{ width:16px; height:16px; }
@media (max-width:700px){
  .footer-inner{ flex-direction:column; text-align:center; }
}

/* ---------- Floating WhatsApp ---------- */
.floating-wa{
  position:fixed; right:20px; bottom:20px; z-index:500;
  width:58px; height:58px; border-radius:50%;
  background:#22c35e;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
  animation:floatpulse 2.6s ease infinite;
}
.floating-wa svg{ width:28px; height:28px; color:#08240f; }
@keyframes floatpulse{
  0%,100%{ box-shadow:0 10px 24px rgba(34,195,94,.28); }
  50%{ box-shadow:0 10px 30px rgba(34,195,94,.55); }
}

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}
