@font-face{
  font-family:'Gloock';
  src:url('fonts/Gloock-Regular.ttf') format('truetype');
  font-weight:400 700;
  font-display:swap;
}
@font-face{
  font-family:'Libre Baskerville';
  src:url('fonts/LibreBaskerville-Regular.ttf') format('truetype');
  font-weight:400;
  font-display:swap;
}
@font-face{
  font-family:'Instrument Serif Italic';
  src:url('fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight:400;
  font-style:italic;
  font-display:swap;
}

:root{
  --navy-deep:#070C1A;
  --navy-mid:#0C1428;
  --navy-soft:#101A33;
  --stone:#F7F5F0;
  --stone-line:#E4DFD3;
  --ivory:#EFE7D8;
  --gold:#C9A66B;
  --gold-soft:#B8935A;
  --ink:#182238;
  --muted:#8A8578;
  --muted-dark:#9BA3B8;
  --serif:'Gloock', Georgia, serif;
  --serif-accent:'Instrument Serif Italic', Georgia, serif;
  --sans:'Inter', -apple-system, sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:var(--sans); background:var(--stone); color:var(--ink); line-height:1.6; overflow-x:hidden;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
button{font-family:var(--sans);}

/* THREAD signature */
#thread-track{position:fixed; left:0; top:0; width:3px; height:100vh; background:rgba(201,166,107,0.12); z-index:100;}
#thread-fill{width:100%; height:0%; background:linear-gradient(180deg,#E8C77A,var(--gold)); transition:height 0.1s linear;}
#thread-dot{position:fixed; left:-3px; top:0; width:9px;height:9px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px rgba(201,166,107,0.6); z-index:101; transition:top 0.1s linear;}
@media (max-width:768px){
  #thread-track{width:100%; height:2px; top:0; left:0;}
  #thread-fill{width:0%; height:100%;}
  #thread-dot{display:none;}
}

.wrap{max-width:1120px; margin:0 auto; padding:0 24px;}
.narrow{max-width:640px; margin:0 auto; padding:0 24px;}

.eyebrow{display:inline-block; font-family:var(--sans); font-size:12px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; font-weight:500;}
.light .eyebrow{color:var(--gold-soft);}

section{padding:96px 0; position:relative;}
@media (max-width:768px){ section{padding:64px 0;} }

.dark{
  background-color:var(--navy-deep);
  background-image:
    radial-gradient(1px 1px at 8% 15%, rgba(201,166,107,0.35) 0%, transparent 60%),
    radial-gradient(1px 1px at 22% 68%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 45% 30%, rgba(201,166,107,0.3) 0%, transparent 60%),
    radial-gradient(1px 1px at 63% 82%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(1px 1px at 78% 22%, rgba(201,166,107,0.28) 0%, transparent 60%),
    radial-gradient(1px 1px at 92% 60%, rgba(255,255,255,0.14) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 92%, rgba(201,166,107,0.22) 0%, transparent 60%),
    radial-gradient(1px 1px at 12% 45%, rgba(255,255,255,0.12) 0%, transparent 60%);
  background-size:520px 520px;
  background-repeat:repeat;
  color:var(--ivory);
}
.dark .muted{color:var(--muted-dark);}
.light{background:var(--stone); color:var(--ink);}
.light .muted{color:var(--muted);}

h1,h2,h3{font-family:var(--serif); font-weight:400; line-height:1.25; letter-spacing:0.3px;}

.reveal{opacity:0; transform:translateY(18px); filter:blur(4px); transition:opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;}
.reveal.in{opacity:1; transform:translateY(0); filter:blur(0);}

/* HEADER */
header{position:fixed; top:0; left:0; right:0; z-index:90; padding:20px 24px; display:flex; align-items:center; justify-content:space-between; transition:background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;}
header.scrolled{background:rgba(7,12,26,0.92); backdrop-filter:blur(12px); padding:12px 24px; box-shadow:0 1px 0 rgba(201,166,107,0.15);}
header.on-light{background:rgba(247,245,240,0.85); backdrop-filter:blur(10px);}
header.on-light .brand{color:var(--ink);}
.brand{font-family:var(--serif); font-weight:400; font-size:17px; color:var(--ivory); letter-spacing:0.3px; display:flex; align-items:center; gap:10px;}
.brand span{color:var(--gold);}
.brand-logo{width:38px; height:38px; border-radius:50%; object-fit:cover; transition:width 0.4s ease, height 0.4s ease;}
header.scrolled .brand-logo{width:32px; height:32px;}
.brand-text{line-height:1.2;}
.brand-signature{display:block; font-family:var(--serif-accent); font-style:italic; font-size:11px; letter-spacing:1.5px; color:var(--gold-soft); margin-top:2px; font-weight:500;}
.menu-toggle{width:22px; height:16px; position:relative; cursor:pointer; background:none; border:none; padding:0;}
.menu-toggle span{display:block; width:100%; height:1px; background:var(--ivory); position:absolute; transition:transform 0.3s ease, opacity 0.3s ease;}
header.on-light .menu-toggle span{background:var(--ink);}
.menu-toggle span:nth-child(1){top:0;}
.menu-toggle span:nth-child(2){top:7px; width:70%;}
.menu-toggle span:nth-child(3){top:14px; width:40%;}

/* NAV OVERLAY */
.nav-overlay{position:fixed; inset:0; background:var(--navy-deep); z-index:200; transform:translateX(100%); transition:transform 0.55s cubic-bezier(.22,1,.36,1); display:flex; flex-direction:column; justify-content:center; padding:60px 40px;}
.nav-overlay.open{transform:translateX(0);}
.nav-links a{display:block; font-family:var(--serif); font-size:clamp(26px,7vw,40px); color:var(--ivory); padding:11px 0; border-bottom:1px solid rgba(239,231,216,0.08); transition:color 0.3s ease, padding-left 0.3s ease;}
.nav-links a:hover{color:var(--gold); padding-left:8px;}
.nav-close{position:absolute; top:22px; right:24px; font-size:26px; color:var(--ivory); cursor:pointer; background:none; border:none; line-height:1;}
.nav-sub{margin-top:36px; display:flex; gap:20px; flex-wrap:wrap;}
.nav-sub a{font-size:12.5px; letter-spacing:1px; color:var(--muted-dark); text-transform:uppercase;}
.nav-sub a:hover{color:var(--gold);}
body.nav-open{overflow:hidden;}

/* PAGE HERO (subpages) */
.page-hero{min-height:56vh; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:150px 24px 60px; color:var(--ivory); position:relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(201,166,107,0.08), transparent),
    linear-gradient(160deg, var(--navy-deep) 0%, #050810 100%);
}
.page-hero.about-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.8) 0%, rgba(3,5,10,0.9) 100%),
    url('about-bg.jpg');
  background-size:cover; background-position:center;
}
.page-hero.hero-ruya-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.55) 0%, rgba(3,5,10,0.75) 100%),
    url('hero-ruya.jpg');
  background-size:cover; background-position:center;
}
.page-hero.hero-numeroloji-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.55) 0%, rgba(3,5,10,0.75) 100%),
    url('hero-numeroloji.jpg');
  background-size:cover; background-position:center;
}
.page-hero.hero-astroloji-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.5) 0%, rgba(3,5,10,0.7) 100%),
    url('hero-astroloji.jpg');
  background-size:cover; background-position:center;
}
.page-hero.hero-esma-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.55) 0%, rgba(3,5,10,0.75) 100%),
    url('hero-esma.jpg');
  background-size:cover; background-position:center;
}
.page-hero.hero-tarot-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.55) 0%, rgba(3,5,10,0.75) 100%),
    url('hero-tarot.jpg');
  background-size:cover; background-position:center;
}
.page-hero.hero-dogaltas-bg{
  background:
    linear-gradient(160deg, rgba(5,8,16,0.6) 0%, rgba(3,5,10,0.8) 100%),
    url('hero-dogaltas.jpg');
  background-size:cover; background-position:center;
}
.v-dogaltas{background-image:url('dogaltas-visual.jpg');}
.breadcrumb{font-size:12.5px; color:var(--muted-dark); margin-bottom:22px; letter-spacing:0.5px;}
.breadcrumb a{color:var(--gold);}
.page-hero h1{font-size:clamp(28px,5.5vw,46px); max-width:760px; font-weight:400; margin-bottom:16px;}
.page-hero .sub{font-size:15.5px; color:var(--muted-dark); max-width:480px;}

/* HERO (home) */
.hero{min-height:100vh; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; text-align:left;
  background:
    linear-gradient(100deg, rgba(3,5,10,0.65) 0%, rgba(3,5,10,0.4) 30%, rgba(3,5,10,0.15) 55%, transparent 75%),
    linear-gradient(0deg, rgba(3,5,10,0.5) 0%, transparent 30%),
    url('hero-bg.jpg');
  background-size:cover; background-position:center;
  color:var(--ivory); padding:120px 32px 80px; position:relative;}
.hero-mark{width:110px; height:110px; border-radius:50%; object-fit:cover; margin-bottom:36px; box-shadow:0 0 0 1px rgba(201,166,107,0.4), 0 12px 40px rgba(0,0,0,0.4);}
.hero h1{font-size:clamp(30px, 6vw, 52px); max-width:820px; margin-bottom:22px; font-weight:400;}
.hero h1 em{color:var(--gold); font-style:normal;}
.hero p{font-size:16px; color:var(--muted-dark); max-width:460px; margin-bottom:40px;}

.cta-row{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-start;}
.btn-primary{background:var(--gold); color:var(--navy-deep); padding:15px 32px; border-radius:2px; font-size:14px; font-weight:600; letter-spacing:0.5px; transition:background 0.3s ease, transform 0.3s ease; display:inline-block; border:none; cursor:pointer;}
.btn-primary:hover{background:#DBB87C; transform:translateY(-2px);}
.btn-ghost{border:1px solid rgba(239,231,216,0.3); color:var(--ivory); padding:14px 30px; border-radius:2px; font-size:14px; transition:border-color 0.3s ease, background 0.3s ease;}
.btn-ghost:hover{border-color:var(--gold); background:rgba(201,166,107,0.06);}
.btn-small{display:inline-block; border:1px solid var(--gold); color:var(--gold); padding:10px 22px; border-radius:2px; font-size:13px; font-weight:500; transition:all 0.3s ease;}
.dark .btn-small:hover{background:var(--gold); color:var(--navy-deep);}
.light .btn-small{border-color:var(--navy-deep); color:var(--navy-deep);}
.light .btn-small:hover{background:var(--navy-deep); color:var(--ivory);}

.scroll-hint{position:absolute; bottom:36px; left:50%; transform:translateX(-50%); width:1px; height:44px; background:linear-gradient(180deg, transparent, var(--gold)); animation:pulse-line 2.4s ease-in-out infinite;}
@keyframes pulse-line{0%,100%{opacity:0.3;} 50%{opacity:1;}}

/* STORY / WHY */
.story-inner{max-width:660px; margin:0 auto; text-align:center;}
.story-inner h2{font-size:clamp(24px,4vw,34px); margin-bottom:36px; color:var(--ivory);}
.story-inner p{font-size:16.5px; color:var(--muted-dark); margin-bottom:20px; text-align:left;}
.story-section{
  background:
    linear-gradient(180deg, rgba(4,7,14,0.9) 0%, rgba(7,12,26,0.95) 100%),
    url('corridor-bg.jpg');
  background-size:cover; background-position:center;
}
.why-block p{font-size:16.5px; margin-bottom:18px; text-align:left; color:var(--muted);}
.pull-quote{font-family:var(--serif-accent); font-weight:500; font-size:clamp(24px,4.2vw,36px); text-align:center; color:var(--ink); max-width:680px; margin:64px auto; line-height:1.4; font-style:italic;}

/* SERVICE */
.service{padding:88px 0;}
.service-head{max-width:680px; margin:0 auto 44px; text-align:center;}
.service-head h2{font-size:clamp(24px,4.5vw,38px); margin-bottom:16px;}
.service-head .sub{font-size:15.5px; opacity:0.85; max-width:520px; margin:0 auto;}
.service-body{max-width:680px; margin:0 auto;}
.service-body p{margin-bottom:16px; font-size:15.5px;}
.esma-examples{max-width:680px; margin:48px auto 0; text-align:center;}
.esma-intro{font-size:14.5px; color:var(--muted-dark); max-width:560px; margin:0 auto 32px;}
.esma-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; text-align:left;}
@media (max-width:768px){ .esma-grid{grid-template-columns:1fr;} }
.esma-card{padding:22px 20px; border:1px solid rgba(201,166,107,0.2); border-radius:4px;}
.esma-card h4{font-family:var(--serif); font-size:19px; color:var(--ivory); margin-bottom:6px; font-weight:400;}
.esma-niyet{display:inline-block; font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--gold); margin-bottom:10px;}
.esma-card p{font-size:13.5px; color:var(--muted-dark); margin:0;}
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; max-width:680px; margin-left:auto; margin-right:auto;}
@media (max-width:768px){ .steps{grid-template-columns:1fr;} }
.step{padding:24px 20px; border:1px solid rgba(201,166,107,0.2); border-radius:4px;}
.light .step{border-color:var(--stone-line); background:#FFFEFB;}
.step-num{font-family:var(--serif); font-size:13px; color:var(--gold); margin-bottom:10px; letter-spacing:1px;}
.step p{font-size:14.5px; margin:0; opacity:0.85;}

.service-visual{height:280px; border-radius:6px; margin:0 auto 44px; max-width:680px; position:relative; overflow:hidden; background-size:cover; background-position:center;}
.v-numerology{background-image:url('numeroloji-visual.jpg');}
.v-astrology{background-image:url('astroloji-visual.jpg'); border:1px solid var(--stone-line);}
.v-esma{background-image:url('esma-visual.jpg');}
.v-tarot{background-image:url('tarot-visual.jpg'); border:1px solid var(--stone-line);}
.v-dream{background-image:url('ruya-visual.jpg');}

/* RELATED SERVICES */
.related{border-top:1px solid rgba(201,166,107,0.15); margin-top:20px; padding-top:44px;}
.related-grid{display:flex; gap:14px; flex-wrap:wrap; justify-content:center; max-width:680px; margin:0 auto;}
.related-grid a{font-size:13px; letter-spacing:0.5px; padding:9px 18px; border:1px solid rgba(201,166,107,0.25); border-radius:20px; color:var(--muted-dark); transition:all 0.3s ease;}
.related-grid a:hover{border-color:var(--gold); color:var(--gold);}
.light .related-grid a{color:var(--muted); border-color:var(--stone-line);}
.light .related-grid a:hover{border-color:var(--gold-soft); color:var(--gold-soft);}

/* BRIDGE CARD */
.bridge-card{max-width:820px; margin:0 auto; display:flex; gap:0; border:1px solid var(--stone-line); border-radius:6px; overflow:hidden; background:#FFFEFB;}
@media (max-width:768px){ .bridge-card{flex-direction:column;} }
.bridge-visual{width:220px; flex-shrink:0; background-image:url('taslarinotesi-bridge.jpg'); background-size:cover; background-position:center; position:relative;}
@media (max-width:768px){ .bridge-visual{width:100%; height:180px;} }
.bridge-visual.thumb-bracelet{background-image:url('taslarinotesi-bridge.jpg');}
.bridge-content{padding:32px 36px; display:flex; flex-direction:column; justify-content:center;}
.bridge-content h3{font-size:22px; margin-bottom:12px;}
.bridge-content p{font-size:14.5px; color:var(--muted); margin-bottom:20px;}
.bridge-btns{display:flex; gap:10px; flex-wrap:wrap;}

/* TESTIMONIALS */
.testi-scroll{display:flex; gap:16px; overflow-x:auto; padding:8px 24px 24px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;}
.testi-scroll::-webkit-scrollbar{display:none;}
.testi-card{scroll-snap-align:start; min-width:260px; max-width:280px; background:#FFFEFB; border:1px solid var(--stone-line); border-radius:6px; padding:26px 22px; flex-shrink:0;}
.testi-mark{font-family:var(--serif); font-size:34px; color:var(--gold); line-height:0.5; display:block; margin-bottom:10px;}
.testi-card p{font-size:14.5px; color:var(--ink); margin-bottom:16px;}
.testi-name{font-size:13px; color:var(--muted); font-weight:500;}
.reply-row{display:flex; gap:16px; overflow-x:auto; padding:0 24px 32px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;}
.reply-row::-webkit-scrollbar{display:none;}
.reply-card{scroll-snap-align:start; min-width:230px; background:var(--navy-soft); border-radius:20px; padding:20px 22px; flex-shrink:0; color:var(--ivory); font-size:14px;}

/* INSTAGRAM */
.ig-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:6px; max-width:680px; margin:0 auto 20px;}
.ig-grid div{aspect-ratio:1; background-size:cover; background-position:center; border-radius:2px;}
.ig-1{background-image:url('ig-1.jpg');}
.ig-2{background-image:url('ig-2.jpg');}
.ig-3{background-image:url('ig-3.jpg');}
.ig-4{background-image:url('ig-4.jpg');}
.ig-5{background-image:url('ig-5.jpg');}
.ig-6{background-image:url('ig-6.jpg');}
.ig-cta{text-align:left; margin-bottom:56px;}
.ig-bridge{max-width:680px; margin:0 auto; display:flex; align-items:center; gap:18px; border-top:1px solid rgba(201,166,107,0.2); padding-top:32px;}
.ig-bridge-thumb{width:56px; height:56px; border-radius:50%; flex-shrink:0; background-image:url('taslarinotesi-bridge.jpg'); background-size:cover; background-position:center;}
.ig-bridge p{font-size:14px; color:var(--muted-dark); margin:0;}
.ig-bridge strong{display:block; color:var(--ivory); font-size:14.5px; margin-bottom:2px; font-weight:500;}
.ig-bridge a{margin-left:auto; font-size:13px; color:var(--gold); border-bottom:1px solid var(--gold); white-space:nowrap; flex-shrink:0;}

/* FAQ */
.faq-item{border-bottom:1px solid var(--stone-line);}
.faq-section{
  background:
    linear-gradient(180deg, rgba(247,245,240,0.94) 0%, rgba(247,245,240,0.97) 100%),
    url('faq-bg.jpg');
  background-size:cover; background-position:center;
}
.testimonials-section{
  background:
    linear-gradient(180deg, rgba(7,12,26,0.85) 0%, rgba(7,12,26,0.93) 100%),
    url('testimonials-bg.jpg');
  background-size:cover; background-position:center;
}
.contact-section{
  background:
    linear-gradient(180deg, rgba(7,12,26,0.88) 0%, rgba(3,5,10,0.94) 100%),
    url('contact-bg.jpg');
  background-size:cover; background-position:center;
}
.closing-cta{
  min-height:60vh; display:flex; align-items:center; justify-content:flex-start;
  padding:100px 32px; position:relative;
  background:
    linear-gradient(160deg, rgba(3,5,10,0.55) 0%, rgba(3,5,10,0.75) 100%),
    url('closing-cta.jpg');
  background-size:cover; background-position:center;
}
.closing-cta-inner{max-width:520px;}
.closing-cta h2{color:var(--ivory); font-size:clamp(26px,4.5vw,40px); margin-bottom:32px;}
.faq-q{width:100%; text-align:left; background:none; border:none; padding:22px 4px; font-family:var(--sans); font-size:15.5px; font-weight:500; color:var(--ink); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px;}
.faq-q .plus{font-size:20px; color:var(--gold); transition:transform 0.3s ease; flex-shrink:0;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height 0.35s ease;}
.faq-a p{padding:0 4px 22px; font-size:14.5px; color:var(--muted); max-width:560px;}

/* CONTACT */
.contact-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; max-width:900px; margin:0 auto;}
@media (max-width:768px){ .contact-grid{grid-template-columns:1fr; gap:40px;} }
.field{margin-bottom:18px;}
.field label{display:block; font-size:12.5px; letter-spacing:1px; text-transform:uppercase; color:var(--muted-dark); margin-bottom:8px;}
.field input, .field textarea{width:100%; background:rgba(239,231,216,0.04); border:1px solid rgba(239,231,216,0.2); color:var(--ivory); padding:13px 14px; font-family:var(--sans); font-size:14.5px; border-radius:3px; transition:border-color 0.3s ease;}
.field input:focus, .field textarea:focus{outline:none; border-color:var(--gold);}
.field textarea{resize:vertical; min-height:100px;}
.dm-box{border:1px solid rgba(201,166,107,0.25); border-radius:6px; padding:28px; display:flex; flex-direction:column; justify-content:center; height:100%;}
.dm-box h3{font-size:18px; margin-bottom:10px; color:var(--ivory);}
.dm-box p{font-size:14px; color:var(--muted-dark); margin-bottom:20px;}

/* ABOUT PAGE */
.about-mark{width:110px; height:110px; border-radius:50%; object-fit:cover; margin:0 auto 40px; display:block; box-shadow:0 0 0 1px rgba(201,166,107,0.4), 0 12px 40px rgba(0,0,0,0.4);}
.about-body{max-width:660px; margin:0 auto;}
.about-visual{
  max-width:660px; margin:0 auto 44px;
  height:280px; border-radius:6px;
  background-image:url('about-content.jpg');
  background-size:cover; background-position:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.about-body p{font-size:16px; margin-bottom:20px; color:var(--muted-dark);}
.about-signature{max-width:660px; margin:56px auto 0; padding-top:32px; border-top:1px solid rgba(201,166,107,0.2); text-align:center;}
.about-signature p{font-family:var(--serif-accent); font-style:italic; font-size:19px; color:var(--ivory); opacity:0.9;}
.privacy-note{max-width:660px; margin:0 auto 40px; padding:20px 24px; border-left:2px solid var(--gold); background:rgba(201,166,107,0.06); font-size:14.5px; color:var(--muted-dark); line-height:1.7;}

/* FOOTER */
footer{
  background:
    linear-gradient(180deg, rgba(4,8,16,0.55) 0%, rgba(4,8,16,0.75) 100%),
    url('footer-bg.jpg');
  background-size:cover; background-position:center;
  color:var(--muted-dark); padding:56px 0 28px; text-align:center;
}
.neden-section{
  background:
    linear-gradient(180deg, rgba(247,245,240,0.55) 0%, rgba(247,245,240,0.7) 100%),
    url('neden-bg.jpg');
  background-size:cover; background-position:center;
}
footer .brand{margin-bottom:6px; justify-content:center; display:flex;}
.footer-signature{font-family:var(--serif-accent); font-style:italic; font-size:13px; color:var(--gold-soft); margin-bottom:18px; letter-spacing:0.5px;}
footer p{font-size:13.5px; max-width:380px; margin:0 auto 24px; color:var(--muted-dark);}
.footer-links{display:flex; gap:22px; justify-content:center; flex-wrap:wrap; margin-bottom:32px; font-size:13.5px;}
.footer-links a:hover{color:var(--gold);}
.footer-bottom{font-size:12px; opacity:0.5; border-top:1px solid rgba(239,231,216,0.08); padding-top:22px;}

/* CUSTOM BRACELET CTA */
.custom-cta{padding:64px 0; background:var(--stone);}
.custom-cta-card{
  max-width:900px; margin:0 auto;
  display:flex; align-items:stretch;
  border:1px solid rgba(201,166,107,0.4);
  border-radius:6px; overflow:hidden;
  background:linear-gradient(135deg, #FFFEFB 0%, #F7F0DE 100%);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}
@media (max-width:768px){ .custom-cta-card{flex-direction:column;} }
.custom-cta-visual{
  width:260px; flex-shrink:0;
  background-image:url('custom-cta-visual.jpg');
  background-size:cover; background-position:center;
  position:relative;
}
@media (max-width:768px){ .custom-cta-visual{width:100%; height:200px;} }
.custom-cta-content{padding:36px 40px; display:flex; flex-direction:column; justify-content:center;}
.custom-cta-content .eyebrow{color:var(--gold-soft);}
.custom-cta-content h2{font-size:clamp(22px,4vw,30px); color:var(--ink); margin-bottom:14px;}
.custom-cta-content p{font-size:14.5px; color:var(--muted); margin-bottom:22px; max-width:420px;}
.custom-cta-content .btn-primary{align-self:flex-start;}

/* HERO VISUAL CTA TILES */
.cta-visual-row{gap:14px; align-items:flex-start;}
.cta-tile{
  position:relative; width:170px; height:112px;
  border-radius:6px; overflow:hidden; flex-shrink:0;
  border:1px solid rgba(201,166,107,0.55);
  transition:transform 0.35s ease, border-color 0.35s ease;
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}
.cta-tile:hover{transform:translateY(-4px); border-color:var(--gold);}
.cta-tile img{width:100%; height:100%; object-fit:cover; display:block;}
.cta-tile-label{
  position:absolute; inset:0; display:flex; align-items:flex-end;
  padding:10px 12px;
  background:linear-gradient(180deg, transparent 35%, rgba(3,5,10,0.9) 100%);
  color:var(--ivory); font-size:13px; font-weight:600; letter-spacing:0.2px; line-height:1.25;
}
@media (max-width:420px){
  .cta-tile{width:150px; height:100px;}
  .cta-tile-label{font-size:12px;}
}

/* CALCULATOR BOX (Numeroloji, Doğal Taş) */
.calc-box{
  max-width:680px; margin:56px auto 0; padding:36px 32px;
  border:1px solid rgba(201,166,107,0.3); border-radius:6px;
}
.dark .calc-box{background:rgba(201,166,107,0.04);}
.light .calc-box{background:#FFFEFB;}
.calc-box h3{font-size:22px; margin-bottom:10px;}
.calc-intro{font-size:14px; color:var(--muted); margin-bottom:22px; max-width:480px;}
.dark .calc-intro{color:var(--muted-dark);}
.calc-form{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.calc-form input[type="date"]{
  flex:1; min-width:180px;
  padding:12px 14px; border-radius:3px; font-family:var(--sans); font-size:14.5px;
  border:1px solid rgba(201,166,107,0.35);
  background:rgba(255,255,255,0.6); color:var(--ink);
}
.dark .calc-form input[type="date"]{background:rgba(239,231,216,0.06); color:var(--ivory); border-color:rgba(239,231,216,0.2);}
.calc-form button{cursor:pointer; border:1px solid var(--gold); background:none;}
.calc-result{display:none; margin-top:26px; padding-top:22px; border-top:1px solid rgba(201,166,107,0.25);}
.calc-result.show{display:block;}
.calc-result p{font-size:14.5px; color:var(--muted); max-width:520px; line-height:1.7;}
.dark .calc-result p{color:var(--muted-dark);}
.calc-number{
  font-family:var(--serif); font-size:44px; color:var(--gold);
  margin-bottom:12px; line-height:1;
}
.calc-warn{color:var(--gold-soft); font-size:14px;}

/* PERSONAL COMBO PROGRAM (Doğal Taş) */
.combo-box{max-width:680px; margin:0 auto;}
.combo-result{display:none; margin-top:28px;}
.combo-result.show{display:block;}
.combo-result p{font-size:15px; color:var(--muted-dark); line-height:1.8; margin-bottom:16px;}
.combo-stones{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0;}
.combo-stone-tag{
  padding:8px 16px; border:1px solid rgba(201,166,107,0.4); border-radius:20px;
  font-size:13px; color:var(--gold); letter-spacing:0.3px;
}
.combo-esma{font-family:var(--serif); font-size:20px; color:var(--ivory); margin:18px 0 6px;}
.combo-esma span{color:var(--gold);}

/* STATS ROW (index.html Instagram section) */
.stats-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  max-width:900px; margin:0 auto 48px;
}
@media (max-width:768px){ .stats-row{grid-template-columns:repeat(2,1fr);} }
.stat-item{text-align:center;}
.stat-num{font-family:var(--serif); font-size:clamp(26px,5vw,38px); color:var(--gold); line-height:1;}
.stat-label{font-size:12px; color:var(--muted-dark); margin-top:8px; letter-spacing:0.3px;}
