/* ==========================================================================
   Turkish House Experience — site styles
   Dark cinematic · Manrope · white pill CTAs · no cards, no glow orbs
   ========================================================================== */

:root {
  --bg: #050505;
  --ink: #fafafa;
  --muted: #a7a6a6;
  --nav: #b6b5b5;
  --strip: #8b8a8a;
  --line: rgba(255, 255, 255, .10);
  --pill: #ffffff;
  --pill-ink: #050505;
  --accent: #f04020;           /* logo red */
  --gold: #e9d3a0;             /* logo gold */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1320px;
  --pad: clamp(20px, 5vw, 76px);
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Pills / buttons ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 30px; border-radius: 999px;
  background: var(--pill); color: var(--pill-ink);
  font-size: 17px; font-weight: 600; letter-spacing: .01em; white-space: nowrap;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.pill span { transform: translateY(1px); }
.pill:hover { transform: translateY(-1px); background: #f0f0f0; }
.pill-sm { height: 44px; padding: 0 22px; font-size: 15px; }
.ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 500; letter-spacing: .01em; color: #fff;
  transition: opacity .3s var(--ease);
}
.ghost::after { content: '→'; transition: transform .35s var(--ease); }
.ghost:hover::after { transform: translateX(4px); }
.outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28); color: var(--ink);
  font-size: 15px; font-weight: 500; white-space: nowrap;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); }

/* ---------- Header ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 var(--pad);
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(to bottom, rgba(5,5,5,.72), rgba(5,5,5,0));
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.topbar.is-solid {
  background: rgba(5,5,5,.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-logo { width: 48px; height: 48px; flex: none; border-radius: 50%; object-fit: contain; }
.brand-lg .brand-logo { width: 72px; height: 72px; }
.brand-name { display: flex; flex-direction: column; align-items: stretch; line-height: 1.05; }
/* -.12em cancels the trailing letter-space so the two lines end flush */
.brand-name b { font-size: 17px; font-weight: 700; letter-spacing: .12em; margin-right: -.12em; white-space: nowrap; }
/* the letters are space-separated in the markup; justify stretches them to the width of the line above */
.brand-name small {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0; color: var(--gold);
  text-align: justify; text-align-last: justify; word-spacing: 0;
}

.links { display: flex; align-items: center; gap: 26px; justify-self: center; }
.links a {
  position: relative; font-size: 17px; font-weight: 400; color: var(--nav);
  transition: color .3s var(--ease);
}
.links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.links a:hover, .links a[aria-current="page"] { color: var(--ink); }
.links a[aria-current="page"]::after, .links a:hover::after { transform: scaleX(1); }

.topbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.socials { display: flex; align-items: center; gap: 14px; }
.socials a { color: var(--nav); display: inline-flex; transition: color .3s var(--ease), transform .3s var(--ease); }
.socials a:hover { color: var(--ink); transform: translateY(-1px); }
.socials svg { width: 20px; height: 20px; }

/* burger (mobile only) */
.burger {
  display: none; position: relative; width: 48px; height: 48px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.burger i {
  position: absolute; left: 14px; width: 20px; height: 1.6px; background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.burger i:nth-child(1) { top: 19px; }
.burger i:nth-child(2) { top: 27px; }
body.is-open .burger i:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.is-open .burger i:nth-child(2) { top: 23px; transform: rotate(-45deg); }

/* mobile overlay */
.menu {
  position: fixed; inset: 0; z-index: 40;
  background: linear-gradient(180deg, rgba(5,5,5,.94), rgba(5,5,5,.99));
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: opacity .42s var(--ease), visibility .42s;
  padding: calc(var(--header-h) + 24px) var(--pad) 40px;
  display: flex; flex-direction: column;
}
body.is-open .menu { opacity: 1; visibility: visible; }
.menu-eyebrow { margin: 0 0 18px; font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); }
.menu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.menu-list a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(25px, 8vw, 34px); font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--line);
}
.menu-list a::after { content: '↗'; font-size: .6em; color: var(--muted); }
.menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 18px; padding-top: 30px; }
.menu-eyebrow, .menu-list li, .menu-foot { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
body.is-open .menu-eyebrow { opacity: 1; transform: none; transition-delay: .06s; }
body.is-open .menu-list li:nth-child(1) { opacity: 1; transform: none; transition-delay: .10s; }
body.is-open .menu-list li:nth-child(2) { opacity: 1; transform: none; transition-delay: .16s; }
body.is-open .menu-list li:nth-child(3) { opacity: 1; transform: none; transition-delay: .22s; }
body.is-open .menu-list li:nth-child(4) { opacity: 1; transform: none; transition-delay: .28s; }
body.is-open .menu-foot { opacity: 1; transform: none; transition-delay: .34s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.plate { position: absolute; inset: 0; z-index: -1; background: #050505; }
.plate-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 55% center; pointer-events: none;
  background: #050505 url('../assets/hero-placeholder.jpg') center / cover no-repeat;
}
.plate::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,.35) 0%, rgba(5,5,5,0) 22%,
      rgba(5,5,5,0) 55%, rgba(5,5,5,.45) 74%,
      rgba(5,5,5,.84) 88%, #050505 100%),
    linear-gradient(to right, rgba(5,5,5,.72) 0%, rgba(5,5,5,.32) 42%, rgba(5,5,5,0) 70%);
}
.hero-inner {
  position: relative; width: 100%; max-width: var(--max); margin: 0 auto;
  padding: calc(var(--header-h) + 60px) var(--pad) clamp(70px, 12vh, 130px);
}
.eyebrow {
  margin: 0 0 22px; font-size: 13px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.headline {
  margin: 0; font-weight: 400; letter-spacing: .004em;
  font-size: clamp(42px, 5.2vw, 76px); line-height: 1.08; color: var(--ink);
}
.headline span { display: block; }
.sub {
  margin: 26px 0 0; max-width: 560px;
  font-size: clamp(16px, 1.35vw, 20px); line-height: 1.45; color: var(--muted);
}
.actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; right: var(--pad); bottom: 40px;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--strip);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 14px;
}
.scroll-hint::after { content: ''; width: 1px; height: 54px; background: linear-gradient(to bottom, var(--strip), transparent); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-title {
  margin: 0; font-weight: 400; letter-spacing: -.005em;
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.1;
}
.section-kicker { margin: 0 0 14px; font-size: 12.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }
.section-lead { margin: 14px 0 0; max-width: 620px; color: var(--muted); font-size: 17px; }

/* ---------- City filter ---------- */
.cities {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px;
  list-style: none; padding: 0;
}
.city {
  height: 40px; padding: 0 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); color: var(--nav);
  font-size: 14.5px; font-weight: 500; letter-spacing: .02em; white-space: nowrap;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.city:hover { color: var(--ink); border-color: rgba(255,255,255,.5); }
.city[aria-pressed="true"] { background: var(--pill); color: var(--pill-ink); border-color: var(--pill); }
.city-count { color: inherit; }
.city-count { margin-left: 6px; opacity: .55; font-variant-numeric: tabular-nums; }

/* ---------- Notice strip (integrations / announcements) ---------- */
.notice {
  display: flex; align-items: flex-start; gap: 14px;
  margin: 34px 0 0; padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.14); border-left: 2px solid var(--gold); border-radius: 4px;
  background: rgba(255,255,255,.025);
  font-size: 15.5px; line-height: 1.55; color: var(--muted);
}
.notice[hidden] { display: none; }
.notice::before {
  content: ''; flex: none; width: 7px; height: 7px; margin-top: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 0 rgba(233,211,160,.5);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(233,211,160,.45); }
  70% { box-shadow: 0 0 0 9px rgba(233,211,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(233,211,160,0); }
}

/* ---------- Flyers grid ---------- */
.flyers {
  display: grid; gap: 22px; margin-top: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 200px;
}
.flyer {
  position: relative; display: block; color: inherit;
  animation: rise .7s var(--ease) both;
}
.flyer-media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 6px;
  background: #0e0e0e; outline: 1px solid var(--line); outline-offset: -1px;
}
.flyer-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001); transition: transform .8s var(--ease), opacity .6s var(--ease);
}
.flyer:hover .flyer-media img { transform: scale(1.04); }
.flyer-meta {
  padding: 14px 4px 6px;
  display: flex; flex-direction: column; gap: 3px;
}
.flyer-city { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--strip); }
.flyer-title { font-size: 16.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.flyer:hover .flyer-title { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--strip); }
.flyer-venue { font-size: 13.5px; color: var(--nav); }
.flyer-date { font-size: 13.5px; color: var(--muted); }
.flyer-cta {
  position: absolute; top: 14px; right: 14px; height: 32px; padding: 0 14px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--pill-ink); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; opacity: 0; transform: translateY(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.flyer:hover .flyer-cta, .flyer:focus-visible .flyer-cta { opacity: 1; transform: none; }
.flyer-soon .flyer-cta { background: rgba(255,255,255,.14); color: var(--ink); }
/* author rules beat the UA [hidden] rule, so restate it for these two */
.flyers[hidden], .cities[hidden] { display: none; }
.flyers-empty {
  grid-column: 1 / -1; padding: 60px 20px; text-align: center; color: var(--muted);
  border: 1px dashed rgba(255,255,255,.16); border-radius: 6px;
}

/* ---------- Statement / band ---------- */
.band { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.band p { margin: 0 0 18px; font-size: clamp(17px, 1.25vw, 19px); line-height: 1.6; color: var(--muted); }
.band p strong { color: var(--ink); font-weight: 600; }
.pillars { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.pillars li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pillars b { font-size: 13px; font-weight: 600; color: var(--strip); letter-spacing: .1em; padding-top: 3px; }
.pillars h3 { margin: 0 0 6px; font-size: 19px; font-weight: 600; }
.pillars p { margin: 0; font-size: 15.5px; }

/* ---------- Stats strip (about) ---------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 34px; margin-top: 60px; }
.facts b { display: block; font-size: clamp(34px, 3.4vw, 48px); font-weight: 400; letter-spacing: -.01em; line-height: 1; }
.facts span { display: block; margin-top: 10px; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: start; }
.contact-list { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line); }
.contact-list li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list b { font-size: 12.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.contact-list a, .contact-list span { font-size: 19px; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--strip); }

.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.14); border-radius: 6px; padding: 14px 16px;
  outline: none; transition: border-color .3s var(--ease), background .3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a7a6a6' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { background: #101010; color: #fafafa; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.form-note { margin: 0; font-size: 13.5px; color: var(--strip); }
.form-status { min-height: 22px; font-size: 14.5px; color: var(--muted); }

/* ---------- Page hero (about / contact) ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(60px, 10vh, 120px)) 0 clamp(50px, 7vw, 90px); overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 70% 0%, rgba(255,255,255,.06), transparent 70%);
}
.page-hero .headline { font-size: clamp(40px, 5vw, 70px); }
.page-hero .sub { max-width: 640px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { margin: 0; font-size: clamp(26px, 3vw, 42px); font-weight: 400; line-height: 1.15; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 34px; color: var(--strip); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { margin: 0 0 16px; font-size: 12px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--nav); transition: color .3s var(--ease); }
.footer a:hover { color: var(--ink); }
.footer .brand { margin-bottom: 18px; }
.footer p { margin: 0; max-width: 340px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; }

/* ---------- Legal pages ---------- */
.legal > * { max-width: 800px; }
.legal p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.legal p strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--strip); }
.legal h2 { margin: 42px 0 12px; font-size: 21px; font-weight: 600; color: var(--ink); }
.footer-legal { display: inline-flex; gap: 22px; }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .brand, .links, .topbar-right { animation: rise .8s var(--ease) both; }
  .eyebrow { animation: rise .9s var(--ease) both; }
  .headline { animation: rise .9s var(--ease) .06s both; }
  .sub { animation: rise .9s var(--ease) .14s both; }
  .actions { animation: rise .9s var(--ease) .22s both; }
  .scroll-hint, .plate-media { animation: fade 1.4s ease .3s both; }
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .flyers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .links, .topbar-right .pill, .topbar-right .socials { display: none; }
  .topbar-inner { grid-template-columns: 1fr auto; }
  .burger { display: block; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name b { font-size: 15px; }
  .headline span { display: inline; }
  .headline span + span::before { content: ' '; }
  .band, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .facts { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .scroll-hint { display: none; }
  .plate-media { object-position: 43% center; }
  .plate::after {
    background:
      linear-gradient(to bottom, rgba(5,5,5,.72) 0%, rgba(5,5,5,.34) 24%, rgba(5,5,5,.34) 56%, rgba(5,5,5,.80) 82%, rgba(5,5,5,.97) 94%, #050505 100%),
      linear-gradient(to right, rgba(5,5,5,.86) 0%, rgba(5,5,5,.66) 42%, rgba(5,5,5,.20) 78%, rgba(5,5,5,.10) 100%);
  }
}
@media (max-width: 640px) {
  .flyers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .flyer-meta { padding: 10px 2px 4px; }
  .flyer-title { font-size: 14.5px; }
  .flyer-cta { display: none; }
  .flyer-date::after { content: '  ·  Tickets →'; color: var(--nav); }
  .flyer-soon .flyer-date::after { content: '  ·  Coming soon'; }
  .form-row { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .facts { gap: 18px; }
  .actions { gap: 22px; }
  .hero-inner { padding-bottom: 60px; }
}
