:root{
  --ink:#4B4743;
  --paper:#FEFBF8;
  --surface:#FFFFFF;
  --brand:#C97452;
  --brand-deep:#8A4A2E;
  --sage:#4F7A5C;
  --taupe:#6E5A55;
  --border: rgba(36,27,30,0.12);
  --btn-more:#A6C168;
  --btn-more-deep:#6E8C3F;
  --btn-cta:#7C9C4A;
  --btn-cta-deep:#4A6329;
  --slot-border-a:#3E7C8C;
  --slot-border-b:#4F9C6E;
  --fabric-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");

  --space-1: clamp(0.45rem, 0.35rem + 0.35vw, 0.7rem);
  --space-2: clamp(0.85rem, 0.65rem + 0.7vw, 1.4rem);
  --space-3: clamp(1.25rem, 0.95rem + 1.1vw, 2rem);
  --space-4: clamp(1.65rem, 1.25rem + 1.4vw, 2.6rem);
  --space-5: clamp(2.3rem, 1.7rem + 2.2vw, 3.8rem);
  --space-6: clamp(3rem, 2.2rem + 2.8vw, 5rem);
  --space-7: clamp(4.3rem, 3.2rem + 4vw, 7.2rem);

  --radius-xs: clamp(0.2rem, 0.15rem + 0.15vw, 0.3rem);
  --radius-sm: clamp(0.4rem, 0.32rem + 0.3vw, 0.6rem);
  --radius-md: clamp(0.6rem, 0.5rem + 0.35vw, 0.85rem);

  --font-display:'Jost', 'Brandon Grotesque', sans-serif;
  --font-body:'Jost', sans-serif;

  color-scheme: light;
}

/* Kasıtlı olarak prefers-color-scheme:dark media query'si YOK: proje kararı
   (DESIGN_SPEC.md §2) varsayılanın ziyaretçinin işletim sistemi ayarından
   bağımsız olarak HER ZAMAN açık/aydınlık kalması; koyu tema yalnızca
   aşağıdaki data-theme="dark" açık seçimiyle devreye girer. */
:root[data-theme="dark"]{
  --ink:#F1E7E4; --paper:#1C1416; --surface:#241B1E;
  --brand:#D98A5E; --brand-deep:#F0B98F; --sage:#7BAE8A; --taupe:#A6908B;
  --btn-more:#B9D488; --btn-more-deep:#7FA050;
  --btn-cta:#93B563; --btn-cta-deep:#5C7A38;
  --border: rgba(241,231,228,0.14);
  --slot-border-a:#5FB4C7; --slot-border-b:#7FCB94;
  color-scheme: dark;
}
:root[data-theme="light"]{
  --ink:#4B4743; --paper:#FEFBF8; --surface:#FFFFFF;
  --brand:#C97452; --brand-deep:#8A4A2E; --sage:#4F7A5C; --taupe:#6E5A55;
  --btn-more:#A6C168; --btn-more-deep:#6E8C3F;
  --btn-cta:#7C9C4A; --btn-cta-deep:#4A6329;
  --border: rgba(36,27,30,0.12);
  --slot-border-a:#3E7C8C; --slot-border-b:#4F9C6E;
  color-scheme: light;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:200;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  background-color:var(--paper);
  background-image:
    radial-gradient(ellipse 56.25rem 40.625rem at 8% -12%, color-mix(in srgb, var(--brand) 20%, transparent), transparent 60%),
    radial-gradient(ellipse 56.25rem 40.625rem at 105% 112%, color-mix(in srgb, var(--sage) 18%, transparent), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none' stroke='%234B4743' stroke-opacity='0.05' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M38,188 C50,138 44,88 81,31'/%3E%3Cg transform='translate(45,150) rotate(-35)'%3E%3Cpath d='M0,0 Q11,-9 22,0 Q11,9 0,0 Z'/%3E%3C/g%3E%3Cg transform='translate(55,103) rotate(35)'%3E%3Cpath d='M0,0 Q10,-8 20,0 Q10,8 0,0 Z'/%3E%3C/g%3E%3Cg transform='translate(70,60) rotate(-25)'%3E%3Cpath d='M0,0 Q9,-6 18,0 Q9,6 0,0 Z'/%3E%3C/g%3E%3Cg transform='translate(81,31) rotate(20)'%3E%3Cpath d='M0,0 Q8,-5 15,0 Q8,5 0,0 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-repeat:no-repeat, no-repeat, repeat, repeat;
  background-attachment:fixed, fixed, fixed, fixed;
}
img{max-width:100%; display:block;}

h1,h2,h3{
  font-family:var(--font-display);
  font-weight:200;
  line-height:1.12;
  text-wrap:balance;
  margin:0;
}

a{color:inherit;}
a:focus-visible, button:focus-visible{
  outline:0.125rem solid var(--brand);
  outline-offset:0.1875rem;
}

.wrap{
  width:100%;
  padding-inline:clamp(1rem, 0.5rem + 3vw, 5rem);
}

main{ flex:1 0 auto; }

/* ---------- Header ---------- */
header.site{
  position:sticky; top:0; z-index:20;
  transform:translateZ(0);
  -webkit-transform:translateZ(0);
  will-change:transform;
}
header.site::before{
  content:'';
  position:absolute; inset:0;
  z-index:-1;
  background:color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter:blur(0.5rem);
  backdrop-filter:blur(0.5rem);
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  mask-image:linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
}
.header-row{
  position:relative;
  display:flex; align-items:center; justify-content:flex-start;
  gap:var(--space-2);
  padding-block:var(--space-2);
}
.brand{
  display:inline-flex;
  flex-direction:row;
  align-items:flex-end;
  flex-shrink:0;
  gap:clamp(0.15rem, 0.3vw, 0.4rem);
  text-decoration:none;
}
.brand-heart{
  width:clamp(2.5rem, 2rem + 2.6vw, 4.2rem);
  height:auto;
  flex-shrink:0;
  filter:drop-shadow(0 0.1875rem 0.3125rem color-mix(in srgb, var(--ink) 40%, transparent));
}
.brand-word{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:0.92;
  /* pulls the text left so "TALK" lines up with the tip of the heart's
     speech-bubble tail, not the icon's full bounding box (the heart's
     right lobe extends further right than the tail does) */
  margin-left:clamp(-0.42rem, -0.2rem - 0.26vw, -0.25rem);
  font-family:var(--font-display);
  white-space:nowrap;
}
.brand-line1{ display:flex; align-items:baseline; }
.brand-line1 .w1{
  font-weight:800;
  font-size:clamp(0.85rem, 0.7rem + 0.6vw, 1.3rem);
  letter-spacing:0.01em;
  text-transform:uppercase;
  color:var(--ink);
}
.brand-line1 .amp{
  font-weight:200;
  font-size:clamp(0.85rem, 0.7rem + 0.6vw, 1.3rem);
  color:var(--ink);
  margin-left:0.0625rem;
}
.brand-line2{
  font-weight:200;
  font-style:italic;
  font-size:clamp(0.85rem, 0.7rem + 0.6vw, 1.3rem);
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--ink);
}
nav.primary{
  display:none;
  margin-left:auto;
  gap:var(--space-4);
  font-size:clamp(0.78rem, 0.7rem + 0.25vw, 0.95rem);
  font-weight:600;
  letter-spacing:0.06em;
}
nav.primary a{ text-decoration:none; }
.header-actions{ display:flex; align-items:center; gap:var(--space-2); flex-shrink:0; }

@media (max-width:819px){
  .header-actions{ margin-left:auto; }
}

@media (max-width:480px){
  .header-actions .btn-primary{ display:none; }
}

.lang-switch{ display:flex; gap:clamp(0.3rem, 0.2rem + 0.2vw, 0.5rem); }
.lang-flag{
  background:transparent;
  border:0.0625rem solid transparent;
  border-radius:var(--radius-xs);
  padding:0.125rem;
  line-height:0;
  opacity:0.5;
  cursor:pointer;
  transition:opacity 0.15s ease, border-color 0.15s ease;
}
.lang-flag svg{ display:block; width:clamp(1.4rem, 1.1rem + 0.6vw, 2rem); height:clamp(0.93rem, 0.73rem + 0.4vw, 1.33rem); border-radius:var(--radius-xs); }
.lang-flag:hover{ opacity:1; }
.lang-flag.active{ opacity:1; border-color:var(--brand); }

.music-toggle{
  display:inline-flex;
  background:transparent;
  border:0.0625rem solid transparent;
  border-radius:var(--radius-xs);
  padding:0.3rem;
  color:var(--ink);
  opacity:0.5;
  cursor:pointer;
  transition:opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.music-toggle svg{ display:block; width:clamp(1.1rem, 0.9rem + 0.4vw, 1.4rem); height:clamp(1.1rem, 0.9rem + 0.4vw, 1.4rem); }
.music-toggle:hover{ opacity:1; }
.music-toggle.playing{ opacity:1; color:var(--sage); border-color:var(--brand); }
.music-toggle .eq-bars{
  display:none;
  align-items:flex-end;
  gap:0.15rem;
  width:clamp(1.1rem, 0.9rem + 0.4vw, 1.4rem);
  height:clamp(1.1rem, 0.9rem + 0.4vw, 1.4rem);
}
.music-toggle .eq-bars span{
  flex:1;
  height:100%;
  background:var(--sage);
  border-radius:1px;
  transform-origin:bottom;
  animation:eq-bounce 0.9s ease-in-out infinite;
}
.music-toggle .eq-bars span:nth-child(2){ animation-delay:0.2s; }
.music-toggle .eq-bars span:nth-child(3){ animation-delay:0.4s; }
.music-toggle.playing .note-icon{ display:none; }
.music-toggle.playing .eq-bars{ display:flex; }
.music-volume{
  display:none;
  width:clamp(3.5rem, 3rem + 2vw, 5rem);
  height:0.25rem;
  accent-color:var(--sage);
  cursor:pointer;
  vertical-align:middle;
}
.music-toggle.playing ~ .music-volume{ display:inline-block; }
@keyframes eq-bounce{
  0%, 100%{ transform:scaleY(0.3); }
  50%{ transform:scaleY(1); }
}
@media (prefers-reduced-motion:reduce){
  .music-toggle .eq-bars span{ animation:none; transform:scaleY(0.7); }
}

.menu-btn{
  display:inline-flex;
  background:none; border:none;
  color:var(--ink);
  padding:0.25rem;
  cursor:pointer;
  order:-1;
}
.menu-btn svg{ width:clamp(1.4rem, 1.1rem + 0.6vw, 2rem); height:clamp(1.4rem, 1.1rem + 0.6vw, 2rem); }
nav.primary.open{
  display:flex;
  position:absolute;
  top:100%; left:0; right:0;
  flex-direction:column;
  gap:var(--space-3);
  background:var(--paper);
  padding:var(--space-3) var(--space-3) var(--space-4);
  box-shadow:0 1rem 1.5rem -1rem rgba(0,0,0,0.2);
}

@media (min-width:820px){
  nav.primary{ display:flex; }
  .menu-btn{ display:none; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--font-body);
  font-weight:200;
  font-size:clamp(0.85rem, 0.78rem + 0.3vw, 1.05rem);
  text-decoration:none;
  border-radius:var(--radius-sm);
  padding:clamp(0.7rem, 0.6rem + 0.4vw, 1rem) clamp(1.2rem, 1rem + 0.8vw, 1.8rem);
  border:0.0625rem solid transparent;
  cursor:pointer;
  transition:transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active{ transform:translateY(0.0625rem); }
.btn-primary{
  background:linear-gradient(180deg, var(--btn-cta), var(--btn-cta-deep));
  color:#fff;
  border:none;
  border-radius:999px;
  box-shadow:0 0.75rem 1.5rem -0.5rem color-mix(in srgb, var(--btn-cta-deep) 55%, transparent);
}
.btn-primary:hover{
  background:linear-gradient(180deg, color-mix(in srgb, var(--btn-cta) 85%, white), var(--btn-cta-deep));
  box-shadow:0 1rem 1.75rem -0.5rem color-mix(in srgb, var(--btn-cta-deep) 60%, transparent);
  transform:translateY(-0.0625rem) scale(1.015);
}
.btn-soft{
  background:linear-gradient(180deg, var(--btn-more), var(--btn-more-deep));
  color:#fff;
  border:none;
  border-radius:999px;
  box-shadow:0 0.75rem 1.5rem -0.5rem color-mix(in srgb, var(--btn-more-deep) 55%, transparent);
}
.btn-soft:hover{
  background:linear-gradient(180deg, color-mix(in srgb, var(--btn-more) 85%, white), var(--btn-more-deep));
  box-shadow:0 1rem 1.75rem -0.5rem color-mix(in srgb, var(--btn-more-deep) 60%, transparent);
  transform:translateY(-0.0625rem) scale(1.015);
}
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--border); }
.btn span, .zig-more span{ font-weight:400; }
.btn-ghost:hover{ border-color:var(--sage); color:var(--sage); }
.header-cta{
  font-size:clamp(0.78rem, 0.72rem + 0.25vw, 0.95rem);
  padding:clamp(0.55rem, 0.48rem + 0.3vw, 0.8rem) clamp(0.9rem, 0.78rem + 0.5vw, 1.35rem);
}

/* ---------- Credentials strip ---------- */
.strip{
  background:linear-gradient(to bottom, var(--paper), var(--surface) 20%, var(--surface) 80%, var(--paper));
}
.strip .wrap{
  display:flex; flex-wrap:wrap; gap:var(--space-3) var(--space-4);
  padding-block:var(--space-3);
  font-size:0.85rem;
  font-weight:200;
  color:var(--taupe);
}
.strip strong{ color:var(--ink); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100dvh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-block:var(--space-6);
}
.hero-bg-wrap{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  transform:translateX(var(--px, 0px));
  will-change:transform;
}
/* Standalone-page intro background: fixed to the viewport so it spans the
   whole page as you scroll, instead of being clipped to .page-intro's height. */
.page-intro-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  overflow:hidden;
  pointer-events:none;
  transform:translateX(var(--px, 0px));
  will-change:transform;
}
.hero-bg{
  position:absolute;
  top:0; bottom:0;
  left:-5rem; right:-5rem;
  background-image:url("assets/hero-leaf-texture.webp");
  background-size:cover;
  background-position:left center;
  background-repeat:no-repeat;
  transform:scaleX(-1);
  opacity:0.18;
  -webkit-mask-image:linear-gradient(to left, #000 0%, #000 30%, transparent 68%);
  mask-image:linear-gradient(to left, #000 0%, #000 30%, transparent 68%);
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:var(--space-5);
  width:100%;
}
@media (min-width:900px){
  .hero-grid{ grid-template-columns:1.1fr 0.9fr; align-items:center; }
}
.hero-copy{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-wrap:balance;
  min-height:60dvh;
  min-width:0;
}
.hero-welcome{
  font-family:'WindSong', cursive;
  font-weight:500;
  font-size:clamp(1.8rem, 1.4rem + 2.8vw, 3.4rem);
  letter-spacing:0.14em;
  transform:scaleX(1.15);
  color:var(--ink);
  margin:0;
}
.hero-iam{
  font-family:var(--font-display);
  font-weight:300;
  text-transform:uppercase;
  letter-spacing:0.32em;
  font-size:clamp(0.85rem, 0.7rem + 0.9vw, 1.4rem);
  color:var(--ink);
  margin:var(--space-2) 0;
}
.hero-name{
  font-family:'WindSong', cursive;
  font-weight:500;
  /* Pure-vw scaling (no rem floor added on) so the font shrinks all the way down on
     narrow phones instead of pinning at a fixed size — the old 3.6rem floor never
     actually shrank below that on any phone width, which combined with scaleX below
     is what caused the one-line overflow. Bounds tuned so pre-transform text width
     (measured empirically) stays under container-width/1.15 from 320px through
     desktop; re-check with real device widths if the name/copy ever changes. */
  font-size:clamp(2.6rem, 12.8vw, 6rem);
  letter-spacing:0.06em;
  transform:scaleX(1.15);
  color:var(--ink);
  line-height:1.15;
  margin:0;
  min-width:0;
  /* Kept on one line (side-by-side, not stacked) — the font-size clamp above is what
     keeps it from overflowing on narrow phones, not wrapping. */
  white-space:nowrap;
}
.hero-media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-media img{
  position:relative;
  z-index:2;
  border-radius:var(--radius-md);
  width:100%;
  max-width:clamp(17.5rem, 12rem + 14vw, 32rem);
}
.photo-backdrop{
  position:absolute;
  z-index:0;
  top:-10%;
  left:-4%;
  width:120%;
  height:126%;
  border-radius:var(--radius-md);
  overflow:hidden;
  background-size:cover;
  background-position:center;
  filter:blur(clamp(0.094rem, 0.25vw, 0.1875rem)) saturate(1.15);
  opacity:1;
  transform:translateX(calc(var(--gpx, 0px) * -1));
  will-change:transform;
}
.photo-placeholder{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:100%;
  max-width:clamp(17.5rem, 12rem + 14vw, 32rem);
  aspect-ratio:3/4;
  border:0.0625rem dashed var(--border);
  border-radius:var(--radius-md);
  background:var(--surface);
  color:var(--taupe);
  font-size:0.85rem;
  padding:var(--space-3);
}
@media (prefers-reduced-motion: reduce){
  .hero-bg{ transition:none; }
}

/* ---------- Zigzag content sections (01 Hakkımda ... 05 İletişim) ---------- */
.zig{
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-block:var(--space-7);
}
.zig-bg-wrap{
  position:absolute; inset:0; z-index:0; overflow:hidden;
  transform:translateX(var(--px, 0px));
  will-change:transform;
}
.zig-bg{
  position:absolute; top:0; bottom:0; left:-5rem; right:-5rem;
  background-image:url("assets/hero-leaf-texture.webp");
  background-size:cover; background-repeat:no-repeat;
  opacity:0.08;
}
.zig-grid{
  position:relative; z-index:1;
  display:grid; gap:var(--space-6);
  grid-template-columns:1fr;
}
@media (min-width:900px){
  .zig-grid{ grid-template-columns:1.05fr 0.95fr; align-items:center; }
  .zig--reverse .zig-grid{ grid-template-columns:0.95fr 1.05fr; }
  .zig--reverse .zig-text{ order:2; }
  .zig--reverse .zig-media{ order:1; }
}
.zig-heading{ display:flex; align-items:center; gap:var(--space-3); margin-bottom:var(--space-3); }
.zig-num{
  font-family:var(--font-display); font-weight:700;
  letter-spacing:0.1em; font-size:clamp(0.9rem, 0.78rem + 0.5vw, 1.3rem); color:var(--ink);
  white-space:nowrap;
}
.zig-rule{ flex:1; height:0.0625rem; background:var(--border); max-width:13.75rem; }
.zig-text h2, #etkinlikler h2{ font-size:clamp(1.8rem, 1.4rem + 3vw, 3.6rem); margin-bottom:var(--space-3); }
#etkinlikler .wrap{ position:relative; z-index:1; }
.zig-text a.zig-title-link{ text-decoration:none; color:inherit; }
.zig-copy{
  position:relative;
  max-height:8.6em;
  overflow:hidden;
}
.zig-copy p{ margin:0 0 1em; max-width:56ch; color:var(--ink); }
.zig-copy p span{ font-weight:400; }
.zig-copy::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:2.4em;
  background:linear-gradient(to bottom, transparent, var(--paper));
}
.zig--alt .zig-copy::after{ background:linear-gradient(to bottom, transparent, var(--surface)); }
.zig-more{
  display:inline-flex; align-items:center; gap:0.5rem;
  margin-top:var(--space-3);
  font-family:var(--font-body); font-weight:200; font-size:0.85rem;
  letter-spacing:0.02em;
  color:#fff;
  text-decoration:none;
  padding:0.625rem 1.25rem; border-radius:999px;
  border:none;
  background-image:
    var(--fabric-noise),
    radial-gradient(130% 150% at 28% 16%,
      color-mix(in srgb, var(--btn-more) 55%, white) 0%,
      var(--btn-more) 45%,
      var(--btn-more-deep) 100%);
  background-blend-mode:overlay, normal;
  background-size:140px 140px, 100% 100%;
  background-repeat:repeat, no-repeat;
  box-shadow:
    0 0.625rem 1.25rem -0.625rem color-mix(in srgb, var(--btn-more-deep) 55%, transparent),
    inset 0 0.0625rem 0 rgba(255,255,255,0.35),
    inset 0 -0.3rem 0.6rem -0.2rem color-mix(in srgb, var(--btn-more-deep) 60%, transparent);
  transition:background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.zig-more:hover{
  background-image:
    var(--fabric-noise),
    radial-gradient(130% 150% at 28% 16%,
      color-mix(in srgb, var(--btn-more) 65%, white) 0%,
      var(--btn-more) 40%,
      var(--btn-more-deep) 100%);
  background-blend-mode:overlay, normal;
  background-size:140px 140px, 100% 100%;
  background-repeat:repeat, no-repeat;
  box-shadow:
    0 0.75rem 1.5rem -0.625rem color-mix(in srgb, var(--btn-more-deep) 60%, transparent),
    inset 0 0.0625rem 0 rgba(255,255,255,0.4),
    inset 0 -0.3rem 0.6rem -0.2rem color-mix(in srgb, var(--btn-more-deep) 65%, transparent);
  transform:translateY(-0.0625rem);
}
.zig-media{
  position:relative;
  min-height:clamp(20rem, 14rem + 16vw, 34rem);
}
.zig-photo{
  position:relative;
  z-index:3;
  border-radius:var(--radius-md);
  aspect-ratio:3/4;
  width:56%;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  border:0.0625rem dashed var(--border);
  background:var(--surface);
  color:var(--taupe);
  font-size:0.78rem;
  text-align:center;
  padding:var(--space-2);
}
img.zig-photo{ object-fit:cover; border:0; padding:0; }
.zig-graphic, .zig-front-card{
  position:absolute;
  aspect-ratio:3/4;
  border-radius:var(--radius-md);
  overflow:hidden;
  background-size:cover;
  background-position:center;
}
.zig-graphic{
  z-index:1;
  will-change:transform;
}
.zig-front-card{
  z-index:2;
  box-shadow:0 1.5rem 3rem -1.5rem color-mix(in srgb, var(--ink) 35%, transparent);
}
@media (max-width:640px){
  .zig-photo{ width:72%; }
}

/* ---------- Page intro (replaces hero on inner pages) ---------- */
.page-intro{ padding-block:var(--space-6) var(--space-5); }
.page-intro h1{ font-size:clamp(2rem, 1.5rem + 3.5vw, 4rem); max-width:20ch; }
.page-intro p.lead{
  max-width:52ch;
  font-size:clamp(1rem, 0.9rem + 0.4vw, 1.3rem);
  font-weight:400;
  color:var(--ink);
  margin-top:var(--space-2);
}
.services-note{
  max-width:70ch;
  margin-top:var(--space-3);
}
.services-note h3{ font-size:1.15rem; font-weight:500; margin-bottom:var(--space-1); }
.services-note p{
  font-size:0.95rem;
  font-weight:300;
  color:var(--ink);
  margin:0;
}

/* ---------- Sections ---------- */
section{ padding-block:var(--space-7); }
section.alt{ background:var(--surface); }
.zig--alt{
  background:linear-gradient(to bottom, var(--paper), var(--surface) 12%, var(--surface) 88%, var(--paper));
}
.section-head{ max-width:60ch; margin-bottom:var(--space-5); }
.section-head h2{ font-size:clamp(1.6rem, 1.2rem + 2.6vw, 3rem); }
.section-head p{ color:var(--ink); font-weight:300; margin-top:var(--space-2); }
.eyebrow{
  font-size:clamp(1rem, 0.9rem + 0.4vw, 1.3rem);
  font-weight:300;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink);
  margin:0 0 var(--space-2);
}
.page-back{
  display:inline-flex; align-items:center; gap:0.3rem;
  margin-bottom:var(--space-3);
  padding:0.5rem 1.1rem;
  border:none;
  border-radius:999px;
  background:radial-gradient(circle, #FFBE91, color-mix(in srgb, #FFBE91 65%, white));
  box-shadow:0 0.75rem 1.5rem -0.9rem color-mix(in srgb, #FFBE91 70%, transparent);
  font-family:var(--font-body); font-weight:300; font-size:0.85rem;
  color:#3d3733; text-decoration:none;
  transition:transform 0.15s ease, box-shadow 0.2s ease;
}
.page-back:hover{ transform:translateY(-0.1rem); box-shadow:0 1rem 1.75rem -1rem color-mix(in srgb, #FFBE91 75%, transparent); }
.page-back .arrow{ font-family:var(--font-display); font-size:1.05rem; line-height:1; }
/* Sits inside .services-section (over .services-bg's wave) right after the grid, not below the
   section in the plain page background -- needs the same z-index:1 as .services-grid to paint
   above the wave image instead of under it. */
.page-back-bottom{ position:relative; z-index:1; margin-top:var(--space-3); }
.page-top{ margin-top:var(--space-4); }

/* About */
.about-story{ margin-top:calc(-1 * var(--space-3)); }
.about-story h2{
  font-family:var(--font-display); font-weight:400;
  font-size:clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  margin:0 0 var(--space-3);
}
/* Approach's group headings (Evidence-Based Approaches, Deep Exploration..., Embodied
   Modalities) sit in separate .story-block siblings with no shared flex/grid gap between them
   -- without this, the second/third block lands flush against the previous block's last
   paragraph (about-story p:last-child has margin-bottom:0). Margin goes on .story-block itself,
   not just its h2: each grid item (.story-text and .story-photo) establishes its own formatting
   context, so a margin-top on the h2 alone stays contained inside .story-text and never pushes
   the top-aligned .story-photo column down with it -- the photo would stay flush against the
   previous block regardless of how much top margin the heading got. Scoped to a block that
   follows another .story-block so the very first block on the page stays flush under the
   page-intro eyebrow. */
.story-block + .story-block{ margin-top:var(--space-5); }
.about-story h3{
  font-family:var(--font-display); font-weight:300;
  font-size:clamp(1.15rem, 1rem + 0.5vw, 1.5rem);
  margin:var(--space-5) 0 var(--space-2);
}
.about-story p{ margin:0 0 var(--space-2); }
.about-story p:last-child{ margin-bottom:0; }
.about-story-closing{ font-style:italic; color:var(--taupe); }

/* Every column below is minmax(), not a fixed size -- text can narrow down to 20rem and the
   photo down to 9rem, so the grid actually negotiates the available width instead of an
   all-or-nothing breakpoint hiding photos entirely on anything narrower than some guessed
   desktop width (that guess was wrong twice: once needing 1300/1750px when the real viewport
   was well under that). .story-photo is centered in its own track (justify-self:center)
   instead of hugging whichever side the track sizes itself to. An earlier absolute-positioned
   version let the photo overlap and obscure the text; a dedicated grid column can't overlap
   by construction. Below 1100px the block stacks to a single column (text, then photo) --
   the photo stays visible there too, its clamp() width shrinking fluidly with the viewport
   (phone/tablet/laptop/desktop) instead of a hard breakpoint hiding it outright. */
.story-text{ width:100%; max-width:70ch; }
.story-block{ display:grid; grid-template-columns:1fr; gap:var(--space-4); align-items:start; }
.story-photo{ width:100%; max-width:clamp(11rem, 55vw, 22.1rem); justify-self:center; }
/* Square-ish source photos would need heavy left/right cropping to fit the
   narrow portrait column above (object-fit:cover was rejected on purpose) --
   widening the frame instead keeps the whole photo uncropped. */
.story-photo--wide{ max-width:clamp(18rem, 34vw, 30rem); }
@media (min-width:1100px){
  .story-block--right{ grid-template-columns:minmax(20rem, 70ch) minmax(9rem, 1fr); }
  .story-block--right .story-text{ grid-column:1; grid-row:1; }
  .story-block--right .story-photo{ display:flex; grid-column:2; grid-row:1; justify-self:center; }
  /* "An Introduction to Two Worlds" + "A New Chapter" block: photo centered top-to-bottom
     against the full paragraph group's height, not pinned to the first heading like the
     right-hand block above -- align-self:center overrides .story-block's align-items:start. */
  .story-block--left{ grid-template-columns:minmax(9rem, 1fr) minmax(20rem, 70ch); }
  .story-block--left .story-text{ grid-column:2; grid-row:1; }
  .story-block--left .story-photo{ display:flex; grid-column:1; grid-row:1; justify-self:center; align-self:center; }
  /* "The Essence of the Space & My Tools" + "The Timeless Journey" + the closing line: reuses
     --right's two-column grid (so the single remaining photo gets the *whole* gutter track to
     itself and can reach the same max-width as the other single-photo blocks above, instead of
     splitting that space with a second photo) plus this centering modifier, since --right on
     its own stays pinned to the block's first heading like "Where the Story Begins" does. */
  .story-block--center-v .story-photo{ align-self:center; }
}

/* Services */
.services-section{ position:relative; overflow:hidden; }
.services-bg{
  position:absolute;
  inset:-3rem;
  top:0;
  z-index:0;
  background-image:url("assets/accent-beach-sand.png");
  background-size:100% 100%;
  background-repeat:no-repeat;
  background-position:top center;
  opacity:0.55;
  -webkit-mask-image:linear-gradient(to bottom, transparent 0%, #000 14%);
  mask-image:linear-gradient(to bottom, transparent 0%, #000 14%);
}
.services-grid{
  position:relative; z-index:1;
  display:grid; gap:var(--space-3);
  grid-template-columns:1fr;
  align-items:start;
}
@media (min-width:640px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1000px){
  .services-grid{ grid-template-columns:repeat(3,1fr); }
}
.service-card{
  border-radius:var(--radius-sm);
  padding:var(--space-3);
  cursor:pointer;
  transition:transform 0.15s ease, box-shadow 0.2s ease;
}
.service-card:hover{ transform:translateY(-0.15rem); }
.service-card:focus-visible{ outline:0.125rem solid var(--ink); outline-offset:0.125rem; }
.service-card h3{ font-size:1.05rem; font-weight:400; margin:0 0 var(--space-1); color:#3d3733; }
.service-card h4{ font-size:0.92rem; font-weight:500; margin:var(--space-2) 0 0.2rem; color:#3d3733; }
.service-card p{ color:#3d3733; font-size:0.92rem; font-weight:300; margin:0; }
.service-card p + p{ margin-top:var(--space-2); }
.service-card h3 + p, .service-card h4 + p{ margin-top:0; }

/* Collapsed: clipped to a ~3-line preview with the card's own colour fading
   the text out at the bottom (mask, not an overlay -- so it fades into
   whatever gradient that specific card uses). Read more expands max-height
   to reveal the rest; ceiling is a generous fixed value since content length
   varies per card (the standard max-height-transition trick). */
.service-more{
  max-height:4.6em;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image:linear-gradient(to bottom, #000 60%, transparent 100%);
  transition:max-height 0.4s ease;
}
.service-card.is-open .service-more{
  max-height:60rem;
  -webkit-mask-image:none;
  mask-image:none;
}
.service-hint{
  display:block;
  margin-top:var(--space-2);
  font-size:0.8rem;
  font-weight:400;
  text-decoration:underline;
  color:#3d3733;
}

/* Etkinlikler bölümü (Website Implementation Brief Madde 1, 2026-08-18 — kullanıcı isteğiyle
   2. tasarım: hero/services'teki beyaz kartlı kutu yerine, index.html'de about/services/approach/
   blog ile AYNI zig deseninde, sayfayla uyumlu (çerçevesiz) kendi bölümü — id="etkinlikler",
   yukarıda). Etkinlik yoksa .event-box boş kalır -> :has() ile TÜM #etkinlikler bölümü gizlenir,
   yarım kalmış bir "Etkinlikler" başlığı boşta durmasın diye. */
#etkinlikler:has(.event-box:empty){ display:none; }
.event-box{ position:relative; z-index:1; display:flex; flex-direction:column; }
.event-box:empty{ display:none; }
.event-card{ padding-block:var(--space-4); text-align:left; }
.event-card + .event-card{ border-top:0.0625rem solid var(--border); }
.event-badge{
  display:inline-block;
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--brand-deep);
  background:rgba(201,116,82,0.12);
  border-radius:var(--radius-xs);
  padding:0.25rem 0.6rem;
  margin-bottom:var(--space-1);
}
.event-title{ font-size:1.3rem; font-weight:400; margin:0 0 var(--space-1); color:var(--ink); }
.event-meta{ font-size:0.85rem; color:var(--taupe); margin:0 0 var(--space-2); }
.event-desc{ font-size:0.98rem; font-weight:300; color:var(--ink); max-width:56ch; margin:0 0 var(--space-2); }
/* Madde 6 (2026-08-19) — panelden görsel linki girildiğinde kart görseli. */
.event-image{ display:block; width:100%; max-width:32rem; border-radius:var(--radius-sm); margin:0 0 var(--space-2); }
/* Madde 5 (2026-08-19) — Blog paneli "Video ve Medya" gönderileri, YouTube embed, 16:9 responsive. */
.blog-video-wrap{ position:relative; width:100%; max-width:32rem; aspect-ratio:16/9; margin:0 0 var(--space-2); border-radius:var(--radius-sm); overflow:hidden; }
.blog-video-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
/* 2026-08-19 düzeltme (kullanıcı geri bildirimi: "minicik yeşil buton") — özel küçültülmüş
   boyut kaldırıldı, sitedeki diğer birincil CTA'larla (ör. header "Book a consultation") aynı
   standart .btn boyutunu kullanıyor; rengi (--btn-cta, zeytin yeşili) marka rengi, o değişmedi. */
.event-cta{}

/* Blog category filters (Website Implementation Brief Madde 2, 2026-08-18). */
.blog-filters{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-1);
  margin-bottom:var(--space-3);
}
.blog-filter-btn{
  font-family:var(--font-body);
  font-size:0.82rem;
  font-weight:400;
  background:transparent;
  color:var(--ink);
  border:0.0625rem solid var(--border);
  border-radius:999px;
  padding:0.45rem 1rem;
  cursor:pointer;
  transition:border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.blog-filter-btn:hover{ border-color:var(--sage); color:var(--sage); }
.blog-filter-btn.is-active{ background:var(--brand); border-color:var(--brand); color:#fff; }
.blog-filter-empty{ color:var(--taupe); font-size:0.92rem; margin-top:var(--space-2); }
.hidden{ display:none; }
.service-hint .hint-less{ display:none; }
.service-card.is-open .service-hint .hint-more{ display:none; }
.service-card.is-open .service-hint .hint-less{ display:inline; }
.service-card--1{ background:linear-gradient(145deg, #FFBE91, color-mix(in srgb, #FFBE91 65%, white)); box-shadow:0 1rem 2rem -1.1rem color-mix(in srgb, #FFBE91 70%, transparent); }
.service-card--2{ background:linear-gradient(145deg, #FFDDB0, color-mix(in srgb, #FFDDB0 65%, white)); box-shadow:0 1rem 2rem -1.1rem color-mix(in srgb, #FFDDB0 70%, transparent); }
.service-card--3{ background:linear-gradient(145deg, #FFFCE1, color-mix(in srgb, #FFFCE1 65%, white)); box-shadow:0 1rem 2rem -1.1rem color-mix(in srgb, #FFFCE1 70%, transparent); }
.service-card--4{ background:linear-gradient(145deg, #CCFFEE, color-mix(in srgb, #CCFFEE 65%, white)); box-shadow:0 1rem 2rem -1.1rem color-mix(in srgb, #CCFFEE 70%, transparent); }
.service-card--5{ background:linear-gradient(145deg, #CFEBFF, color-mix(in srgb, #CFEBFF 65%, white)); box-shadow:0 1rem 2rem -1.1rem color-mix(in srgb, #CFEBFF 70%, transparent); }

/* Cost & Info */
.info-list{ display:grid; gap:var(--space-5); max-width:70ch; }
.info-item h3{ font-size:1.15rem; margin-bottom:var(--space-1); }
.info-item p{ color:var(--taupe); }
.tbd{
  display:inline-block;
  font-size:0.72rem;
  font-weight:200;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--brand);
  border:0.0625rem solid var(--brand);
  border-radius:999px;
  padding:0.125rem 0.625rem;
  margin-left:var(--space-1);
}

.field{ display:grid; gap:0.375rem; }
.field label{ font-size:0.85rem; font-weight:300; }
.field input, .field textarea{
  font-family:var(--font-body);
  font-size:1rem;
  padding:0.75rem 0.875rem;
  border-radius:var(--radius-sm);
  border:0.0625rem solid var(--border);
  background:var(--surface);
  color:var(--ink);
}
.field textarea{ min-height:7.5rem; resize:vertical; }
.form-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:var(--space-2); }
.form-note{
  margin:0; font-size:0.85rem; font-weight:300; color:var(--sage);
}
.form-note--error{ color:var(--brand-deep); }

/* ---------- Voice input (booking summary field + panel note dictation) ---------- */
.mic-btn{
  width:2.75rem; height:2.75rem; padding:0; flex:0 0 auto;
  border-radius:999px;
}
.mic-btn.recording{ background:var(--brand); color:#fff; border-color:var(--brand); }
.mic-btn .mic-wave{ display:none; align-items:flex-end; justify-content:center; gap:0.15rem; width:1.1rem; height:1rem; }
.mic-btn.recording .mic-icon{ display:none; }
.mic-btn.recording .mic-wave{ display:flex; }
.mic-wave span{ display:block; width:0.16rem; height:0.25rem; background:currentColor; border-radius:999px; animation:mic-wave-bounce 0.9s ease-in-out infinite; }
.mic-wave span:nth-child(2){ animation-delay:0.15s; }
.mic-wave span:nth-child(3){ animation-delay:0.3s; }
.mic-wave span:nth-child(4){ animation-delay:0.45s; }
@keyframes mic-wave-bounce{ 0%, 100%{ height:0.25rem; } 50%{ height:1rem; } }

.mode-pill span{ font-weight:300; }

/* Booking */
.field-group{ border:0; padding:0; margin:0 0 var(--space-4); max-width:70ch; }
.section-label{
  font-family:var(--font-body);
  font-size:0.95rem;
  font-weight:500;
  color:var(--ink);
  letter-spacing:0.02em;
  margin:0 0 var(--space-2);
  padding:0;
}
.mode-toggles{ display:flex; flex-wrap:wrap; gap:var(--space-2); margin-bottom:var(--space-3); }
.mode-toggle{
  display:inline-flex;
  border:0.0625rem solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
}
.mode-pill{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  padding:0.5rem 1rem;
  font-size:0.88rem;
  color:var(--ink);
  cursor:pointer;
  background:var(--paper);
  transition:background 0.15s ease, color 0.15s ease;
}
.mode-toggle .mode-pill:not(:last-child){ border-right:0.0625rem solid var(--border); }
.mode-pill:has(input:checked){ background:var(--sage); color:#fff; }
.mode-pill input{ position:absolute; opacity:0; width:0; height:0; }

.session-options{ display:grid; gap:var(--space-2); grid-template-columns:1fr; }
@media (min-width:640px){
  .session-options{ grid-template-columns:1fr 1fr; }
}
.session-option{
  display:block;
  position:relative;
  border:0.0625rem solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--paper);
  padding:var(--space-3);
  cursor:pointer;
  transition:border-color 0.15s ease, box-shadow 0.15s ease;
}
.session-option:has(input:checked){
  border-color:var(--sage);
  box-shadow:0 0 0 0.0625rem var(--sage);
}
.session-option input{ position:absolute; opacity:0; width:0; height:0; }
.session-option-body{ display:grid; gap:0.25rem; }
.session-option-name{ font-weight:500; color:var(--ink); }
.session-option-meta{ font-size:0.85rem; font-weight:300; color:var(--taupe); }
.session-option-price{ font-size:1.3rem; font-weight:300; color:var(--sage); margin-top:0.25rem; }

/* Weekly slot carousel (one week visible, swipe/arrow/dot navigation). Panel, nav
   buttons and selected chips reuse the site's real fabric-gradient recipes; chips are
   borderless with a faint blue→green wash that blends into the panel's green gradient. */
.slot-cal{
  background-color:var(--surface);
  background-image:
    var(--fabric-noise),
    linear-gradient(165deg,
      color-mix(in srgb, var(--btn-cta-deep) 38%, var(--surface)) 0%,
      color-mix(in srgb, var(--sage) 20%, var(--surface)) 55%,
      color-mix(in srgb, var(--btn-more) 22%, var(--surface)) 100%);
  background-blend-mode:overlay, normal;
  background-size:160px 160px, 100% 100%;
  background-repeat:repeat, no-repeat;
  border:0.0625rem solid var(--border);
  border-radius:var(--radius-md);
  padding:var(--space-3);
  box-shadow:0 0.5rem 1.75rem -1rem color-mix(in srgb, var(--ink) 22%, transparent);
}
.slot-cal-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:var(--space-2); margin-bottom:var(--space-3);
}
.slot-cal-nav{
  display:inline-flex; align-items:center; justify-content:center;
  width:2.6rem; height:2.6rem; flex:none;
  border:0.0625rem solid transparent; border-radius:50%;
  color:#fff; cursor:pointer;
  background-image:
    var(--fabric-noise),
    radial-gradient(130% 150% at 28% 16%,
      color-mix(in srgb, var(--btn-cta) 55%, white) 0%,
      var(--btn-cta) 45%,
      var(--btn-cta-deep) 100%);
  background-blend-mode:overlay, normal;
  background-size:140px 140px, 100% 100%;
  background-repeat:repeat, no-repeat;
  box-shadow:
    0 0.5rem 1.1rem -0.5rem color-mix(in srgb, var(--btn-cta-deep) 60%, transparent),
    inset 0 0.0625rem 0 rgba(255,255,255,0.4),
    inset 0 -0.25rem 0.5rem -0.15rem color-mix(in srgb, var(--btn-cta-deep) 65%, transparent);
  transition:box-shadow .15s ease, transform .1s ease, filter .15s ease;
}
.slot-cal-nav:hover{ filter:brightness(1.06); }
.slot-cal-nav:active{ transform:scale(0.94); }
.slot-cal-nav:disabled{ opacity:0.28; cursor:default; filter:grayscale(0.4); }
.slot-cal-nav svg{ width:1.1rem; height:1.1rem; }
.slot-cal-title{ text-align:center; }
.slot-cal-range{ font-family:var(--font-display); font-weight:700; font-size:1.05rem; }
.slot-cal-week-of{ font-size:0.74rem; color:var(--taupe); letter-spacing:0.04em; text-transform:uppercase; }

.slot-viewport{ overflow:hidden; touch-action:pan-y; }
.slot-track{ display:flex; transition:transform .32s cubic-bezier(.22,.61,.36,1); }
.slot-track.dragging{ transition:none; }
@media (prefers-reduced-motion: reduce){ .slot-track{ transition:none; } }

.slot-week{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:0.6rem;
  user-select:none;
}
.slot-day{ display:flex; flex-direction:column; gap:0.5rem; min-width:0; }
.slot-day-head{ text-align:center; padding-block:0.4rem; }
.slot-day-head .dow{ display:block; font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--taupe); }
.slot-day-head .dom{ display:block; font-family:var(--font-display); font-weight:700; font-size:1.15rem; font-variant-numeric:tabular-nums; }
.slot-day-list{ display:flex; flex-direction:column; gap:0.4rem; }
.slot-gap{ height:0.35rem; }
/* UK bank-holiday label shown in place of a day's (absent) slot chips — always visible, no hover,
   informational not an error, so muted --taupe matching .field-hint / .slot-day-head .dow. */
.slot-day-holiday{ font-size:0.68rem; line-height:1.3; color:var(--taupe); text-align:center; padding:0.3rem 0.2rem; text-wrap:balance; }

.slot-chip{
  display:block; position:relative;
  border:none; border-radius:var(--radius-xs);
  padding:0.4rem 0.3rem;
  font-size:clamp(0.72rem, 0.6rem + 0.4vw, 0.82rem);
  font-variant-numeric:tabular-nums;
  text-align:center; color:var(--ink); cursor:pointer;
  background-image:linear-gradient(135deg,
    color-mix(in srgb, var(--slot-border-a) 20%, transparent),
    color-mix(in srgb, var(--slot-border-b) 22%, transparent));
  box-shadow:inset 0 0 0 0.0625rem color-mix(in srgb, var(--slot-border-b) 12%, transparent);
  transition:filter .15s ease, transform .1s ease;
}
.slot-chip:not(.slot-chip--reserved):hover{ filter:brightness(1.12) saturate(1.2); }
.slot-chip:has(input:focus-visible){ outline:0.125rem solid var(--brand); outline-offset:0.125rem; }
.slot-chip:has(input:checked){
  color:#fff; font-weight:600;
  background-image:
    var(--fabric-noise),
    radial-gradient(130% 150% at 28% 16%,
      color-mix(in srgb, var(--btn-cta) 55%, white) 0%,
      var(--btn-cta) 45%,
      var(--btn-cta-deep) 100%);
  background-blend-mode:overlay, normal;
  background-size:70px 70px, 100% 100%;
  background-repeat:repeat, no-repeat;
  box-shadow:
    0 0.3rem 0.6rem -0.35rem color-mix(in srgb, var(--btn-cta-deep) 60%, transparent),
    inset 0 0.0625rem 0 rgba(255,255,255,0.4);
}
.slot-chip input{ position:absolute; opacity:0; width:0; height:0; }
/* Reserved/holiday slot: taken, not selectable. Flat muted --taupe fill (same token family as
   .slot-day-holiday, adapts to dark mode automatically) instead of the interactive gradient. */
.slot-chip--reserved{
  background-image:none;
  background-color:color-mix(in srgb, var(--taupe) 18%, transparent);
  box-shadow:inset 0 0 0 0.0625rem color-mix(in srgb, var(--taupe) 16%, transparent);
  color:var(--taupe);
  cursor:not-allowed;
}
/* Placeholder for a day that's already past (the backend never returns real availability for it) —
   same flat --taupe fill as .slot-chip--reserved (this day is just as unselectable), but framed
   with a light red/brand gradient ring so it reads as "over" rather than "taken", at a glance
   distinct from a genuinely reserved future slot. Two-layer background (gray padding-box over a
   gradient border-box) keeps the ring visible through the rounded corners — a plain `border`
   can't take a gradient, and `border-image` ignores border-radius. */
.slot-chip--past{
  border:0.0625rem solid transparent;
  background-image:
    linear-gradient(color-mix(in srgb, var(--taupe) 18%, var(--surface)), color-mix(in srgb, var(--taupe) 18%, var(--surface))),
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 55%, transparent), color-mix(in srgb, var(--brand-deep) 35%, transparent));
  background-origin:border-box;
  background-clip:padding-box, border-box;
  box-shadow:none;
  color:var(--taupe);
  cursor:not-allowed;
}

.slot-dots{ display:flex; justify-content:center; gap:0.4rem; margin-top:var(--space-3); }
.slot-dot{ width:0.4rem; height:0.4rem; border-radius:50%; background:var(--border); border:none; padding:0; cursor:pointer; }
.slot-dot.is-active{ background-image:linear-gradient(135deg, var(--btn-cta), var(--btn-cta-deep)); width:1.1rem; border-radius:0.25rem; }

.field-hint{ margin:0 0 var(--space-2); font-size:0.78rem; color:var(--taupe); }
/* Phone hint + error sit close together (grid's own gap only); the field only pushes the
   next field-group down when one of them is actually showing, via .has-message. */
#phoneHint, #phoneError{ margin:0; }
.field-phone.has-message{ margin-bottom:var(--space-3); }

/* Phone field: country combobox (button + searchable dropdown) + one box per required digit,
   so the exact digit count needed is visible at a glance (accessibility ask). */
.phone-input-row{ display:flex; gap:0.5rem; flex-wrap:wrap; }
.country-select{ position:relative; flex:none; }
.country-btn{
  display:flex; align-items:center; gap:0.35rem; height:100%;
  font-family:var(--font-body); font-size:1rem; color:var(--ink);
  padding:0.75rem 0.6rem; border-radius:var(--radius-sm); border:0.0625rem solid var(--border);
  background:var(--surface); cursor:pointer;
}
.country-caret{ width:0.8rem; height:0.8rem; opacity:0.6; }
.country-dropdown{
  position:absolute; z-index:20; top:calc(100% + 0.25rem); left:0;
  width:max(16rem, 100%); max-width:min(22rem, 90vw);
  background:var(--surface); border:0.0625rem solid var(--border); border-radius:var(--radius-sm);
  box-shadow:0 0.5rem 1.5rem rgba(0,0,0,0.16); padding:0.5rem;
}
.country-search{
  display:flex; align-items:center; gap:0.4rem; margin-bottom:0.4rem;
  border:0.0625rem solid var(--border); border-radius:var(--radius-sm); padding:0.4rem 0.6rem;
}
.country-search svg{ width:1rem; height:1rem; opacity:0.55; flex:none; color:var(--ink); }
.country-search input{
  flex:1 1 auto; border:0; outline:0; background:transparent; color:var(--ink);
  font-family:var(--font-body); font-size:0.9rem;
}
.country-list{ list-style:none; margin:0; padding:0; max-height:14rem; overflow-y:auto; }
.country-list li{ padding:0.5rem 0.6rem; border-radius:var(--radius-sm); cursor:pointer; font-size:0.9rem; }
.country-list li:hover, .country-list li.is-active{ background:var(--border); }
.phone-digits{ display:flex; gap:0.3rem; flex-wrap:wrap; align-items:center; }
/* Higher specificity than ".field input" (which sets its own padding/font-size) so the boxes
   actually get this compact sizing instead of squeezing each digit into a few visible pixels. */
.field-phone .phone-digit{
  width:2rem; text-align:center; padding:0.75rem 0; font-size:1.1rem;
  font-family:var(--font-body); border-radius:var(--radius-sm); border:0.0625rem solid var(--border);
  background:var(--surface); color:var(--ink);
}
.char-count{ text-align:right; }
.field-below-row{ display:flex; align-items:center; justify-content:space-between; gap:var(--space-2); flex-wrap:wrap; }
.field-below-row .char-count{ flex:1 1 auto; }

.policy-box{
  border:0.0625rem solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--surface);
  padding:var(--space-3);
  margin-bottom:var(--space-2);
}
.policy-box p{ margin:0 0 0.75em; font-size:0.92rem; font-weight:300; color:var(--ink); }
.policy-box p:last-child{ margin-bottom:0; }
.checkbox-field{
  display:flex; align-items:flex-start; gap:0.6rem;
  font-size:0.9rem;
  font-weight:300;
  cursor:pointer;
}
.checkbox-field input{ margin-top:0.2rem; flex:none; }
.recurring-toggle{ margin-top:var(--space-3); }
.recurring-note{ margin-top:var(--space-2); }
.recurring-note p{ margin:0.35rem 0 0; font-size:0.78rem; font-weight:300; color:var(--taupe); }
.recurring-note p:first-child{ margin-top:0; }

footer.site{
  background:linear-gradient(to bottom, var(--paper), var(--surface));
  padding-block:var(--space-4);
  font-size:0.8rem;
  color:var(--taupe);
}
footer.site .wrap{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:var(--space-2);
}

/* language visibility */
html[data-lang="en"] [data-tr]{ display:none; }
html[data-lang="tr"] [data-en]{ display:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn{ transition:none; }
}
