/* ===========================================================
   Lokma Kahvaltı — Türkisches Frühstück
   Warm Anatolian / Mediterranean : cream + terracotta + olive + turquoise
   =========================================================== */

:root{
  --cream:       #fbf4e9;
  --cream-2:     #f4e8d4;
  --sand:        #efe0c8;
  --ink:         #2c241c;
  --ink-soft:    #5b4f43;
  --muted:       #8a7b69;

  --clay:        #c2562f;   /* terracotta primary */
  --clay-dark:   #a3431f;
  --olive:       #6e7b3f;   /* olive-green */
  --olive-dark:  #56612f;
  --teal:        #2f9c93;   /* Turkish-tile turquoise */
  --teal-dark:   #258179;
  --honey:       #e0a83c;

  --surface:     #fffaf1;
  --line:        rgba(44,36,28,.12);
  --shadow-sm:   0 2px 10px rgba(60,40,20,.07);
  --shadow-md:   0 14px 38px rgba(60,40,20,.14);
  --shadow-lg:   0 26px 70px rgba(40,25,10,.26);

  --maxw:        1180px;
  --rad:         18px;
  --rad-lg:      26px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }

h1,h2,h3{
  font-family:var(--serif);
  font-weight:500;
  line-height:1.08;
  letter-spacing:-.01em;
  margin:0;
}
h1{ font-size:clamp(2.5rem,7vw,4.6rem); font-weight:500; }
h2{ font-size:clamp(1.9rem,4.4vw,3rem); }
h3{ font-size:clamp(1.2rem,2.4vw,1.45rem); }
h1 em, h2 em{ font-style:italic; color:var(--clay); }

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 clamp(20px,5vw,48px); }

.section{ padding:clamp(64px,9vw,118px) 0; position:relative; }

.eyebrow{
  font-family:var(--sans);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.72rem;
  font-weight:700;
  color:var(--clay);
  margin:0 0 1rem;
}
.eyebrow.olive{ color:var(--olive-dark); }
.eyebrow.on-dark, .eyebrow.on-dark{ color:var(--honey); }

.section-head{ max-width:680px; margin:0 auto clamp(36px,5vw,56px); text-align:center; }
.section-head .section-sub{ color:var(--ink-soft); font-size:1.05rem; margin:.85rem 0 0; }
.section-head.light h2{ color:var(--cream); }
.section-sub.on-dark{ color:rgba(255,248,238,.86); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  font-family:var(--sans); font-weight:700; font-size:.98rem;
  letter-spacing:.01em;
  padding:.85rem 1.7rem;
  border-radius:999px;
  cursor:pointer; border:2px solid transparent;
  transition:transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  will-change:transform;
}
.btn-primary{ background:var(--clay); color:#fff; box-shadow:0 10px 24px rgba(194,86,47,.32); }
.btn-primary:hover{ background:var(--clay-dark); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--cream); transform:translateY(-2px); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(251,244,233,.82);
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid transparent;
  transition:padding .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled{
  box-shadow:var(--shadow-sm);
  border-bottom-color:var(--line);
  background:rgba(251,244,233,.94);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:.95rem 0; transition:padding .25s ease; }
.site-header.scrolled .header-inner{ padding:.65rem 0; }

.brand{ display:flex; flex-direction:column; line-height:1; }
.brand-mark{
  font-family:var(--serif); font-weight:600; font-style:italic;
  font-size:1.7rem; color:var(--teal); letter-spacing:.005em;
}
.brand-sub{ font-size:.62rem; letter-spacing:.26em; text-transform:uppercase; color:var(--muted); margin-top:.32rem; font-weight:600; }

.nav{ display:flex; align-items:center; gap:1.9rem; }
.nav a{ font-size:.93rem; font-weight:600; color:var(--ink-soft); transition:color .18s ease; position:relative; }
.nav a:not(.nav-cta):hover{ color:var(--clay); }
.nav a:not(.nav-cta)::after{
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--clay);
  transition:width .22s ease;
}
.nav a:not(.nav-cta):hover::after{ width:100%; }
.nav-cta{
  background:var(--teal); color:#fff !important; padding:.55rem 1.15rem; border-radius:999px;
  font-weight:700; box-shadow:0 8px 18px rgba(47,156,147,.28);
}
.nav-cta:hover{ background:var(--teal-dark); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px;
}
.nav-toggle span{ width:26px; height:2.5px; background:var(--ink); border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero{ position:relative; min-height:clamp(560px,92vh,820px); display:flex; align-items:center; overflow:hidden; }
.hero-bg{
  position:absolute; inset:0;
  background:url("/images/hero.jpg") center/cover no-repeat;
  transform:scale(1.04);
}
.hero-veil{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(34,24,16,.82) 0%, rgba(34,24,16,.55) 42%, rgba(34,24,16,.18) 78%),
    linear-gradient(0deg, rgba(34,24,16,.55), rgba(34,24,16,.05));
}
.hero-inner{ position:relative; z-index:2; padding-top:3rem; padding-bottom:3rem; }
.hero-copy{ max-width:660px; color:#fff; }
.hero-copy .eyebrow{ color:var(--honey); }
.hero h1{ color:#fff; text-shadow:0 2px 30px rgba(0,0,0,.35); }
.hero h1 em{ color:#ffd9a0; }
.lede{ font-size:clamp(1.05rem,2.2vw,1.28rem); color:rgba(255,250,242,.94); margin:1.4rem 0 2rem; max-width:560px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.85rem; }
.hero .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.7); }
.hero .btn-ghost:hover{ background:#fff; color:var(--ink); }
.hero-hours{
  display:flex; align-items:center; gap:.55rem; margin-top:2rem;
  font-weight:600; font-size:.92rem; color:rgba(255,250,242,.9);
}
.hero-hours .dot{ width:9px; height:9px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(47,156,147,.3); }

/* ===========================================================
   ABOUT
   =========================================================== */
.about{ background:var(--cream); }
.about-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(36px,6vw,80px); align-items:center; }
.about-copy p{ color:var(--ink-soft); margin:1rem 0; }
.about-marks{ list-style:none; padding:0; margin:1.8rem 0 0; display:grid; gap:.75rem; }
.about-marks li{ display:flex; align-items:center; gap:.7rem; font-weight:600; color:var(--ink); }
.about-marks li span{ font-size:1.25rem; }

.about-figure{ position:relative; margin:0; }
.about-figure img{
  width:100%; border-radius:var(--rad-lg);
  box-shadow:var(--shadow-md);
  border:6px solid var(--surface);
  aspect-ratio:4/5; object-fit:cover;
}
.about-figure::before{
  content:""; position:absolute; inset:auto -16px -16px auto; width:62%; height:62%;
  border:2.5px solid var(--teal); border-radius:var(--rad-lg); z-index:-1;
}
.about-figure figcaption{
  position:absolute; left:14px; bottom:14px;
  background:var(--clay); color:#fff; font-family:var(--serif); font-style:italic; font-size:1.02rem;
  padding:.5rem 1rem; border-radius:999px; box-shadow:var(--shadow-sm);
}

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery{ background:linear-gradient(180deg,var(--cream) 0%, var(--cream-2) 100%); }
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(12px,1.6vw,20px);
}
.card{
  position:relative; padding:0; border:0; cursor:pointer; overflow:hidden;
  border-radius:var(--rad); background:var(--surface);
  box-shadow:var(--shadow-sm);
  aspect-ratio:1/1;
  transition:transform .25s ease, box-shadow .25s ease;
  font:inherit; color:inherit; text-align:left;
}
.card.big{ grid-column:span 2; grid-row:span 2; aspect-ratio:1/1; }
.card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.card:hover img{ transform:scale(1.06); }
.card:focus-visible{ outline:3px solid var(--teal); outline-offset:3px; }
.card-tag{
  position:absolute; left:10px; bottom:10px; z-index:2;
  background:rgba(34,24,16,.72); color:#fff; backdrop-filter:blur(3px);
  font-size:.74rem; font-weight:700; letter-spacing:.04em;
  padding:.32rem .7rem; border-radius:999px;
}
.card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(34,24,16,.32), transparent 45%);
  opacity:.85; transition:opacity .25s ease;
}
.card:hover::after{ opacity:1; }

/* ===========================================================
   BREAKFAST / OFFER (warm dark band)
   =========================================================== */
.breakfast{ position:relative; overflow:hidden; color:#fff; }
.breakfast-bg{
  position:absolute; inset:0;
  background:url("/images/06.jpg") center/cover no-repeat;
  transform:scale(1.05);
}
.breakfast-veil{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(86,40,20,.92), rgba(40,24,14,.93));
}
.breakfast .container{ position:relative; z-index:2; }
.offer-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(14px,2vw,24px); }
.offer{
  background:rgba(255,250,242,.06);
  border:1px solid rgba(255,250,242,.16);
  border-radius:var(--rad); padding:1.7rem 1.4rem;
  backdrop-filter:blur(2px);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}
.offer:hover{ transform:translateY(-4px); background:rgba(255,250,242,.1); border-color:rgba(224,168,60,.5); }
.offer-icon{ font-size:1.9rem; display:block; margin-bottom:.7rem; }
.offer h3{ color:#fff; margin-bottom:.4rem; }
.offer p{ color:rgba(255,248,238,.82); font-size:.95rem; margin:0; }
.breakfast-note{ text-align:center; margin:clamp(30px,5vw,48px) 0 0; font-size:1.1rem; font-family:var(--serif); font-style:italic; color:rgba(255,248,238,.9); }
.breakfast-note a{ color:var(--honey); border-bottom:2px solid rgba(224,168,60,.5); padding-bottom:1px; }
.breakfast-note a:hover{ color:#fff; border-color:#fff; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact{ background:var(--cream); }
.contact-grid{ display:grid; grid-template-columns:1fr .85fr; gap:clamp(36px,6vw,80px); align-items:center; }
.contact-copy p{ color:var(--ink-soft); }
.contact-rows{ margin:1.8rem 0 2rem; display:grid; gap:1.05rem; }
.contact-row{ display:grid; grid-template-columns:auto 1fr; gap:1rem; padding-bottom:1.05rem; border-bottom:1px solid var(--line); align-items:start; }
.contact-label{ font-size:.72rem; text-transform:uppercase; letter-spacing:.16em; font-weight:700; color:var(--olive-dark); min-width:118px; padding-top:.2rem; }
.contact-val{ font-weight:600; color:var(--ink); }
.contact-val a{ color:var(--clay); border-bottom:1px solid rgba(194,86,47,.4); }
.contact-val a:hover{ color:var(--clay-dark); }
.contact-figure{ margin:0; }
.contact-figure img{
  width:100%; border-radius:var(--rad-lg); box-shadow:var(--shadow-md); border:6px solid var(--surface);
  aspect-ratio:4/5; object-fit:cover;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer{ background:var(--ink); color:rgba(255,248,238,.78); padding:clamp(46px,6vw,68px) 0 calc(clamp(46px,6vw,68px) + env(safe-area-inset-bottom)); }
.footer-inner{ display:flex; flex-direction:column; align-items:center; gap:1.3rem; text-align:center; }
.footer-brand{ display:flex; flex-direction:column; align-items:center; gap:.2rem; }
.footer-brand .brand-mark{ color:var(--teal); font-size:1.9rem; }
.footer-tag{ font-size:.66rem; letter-spacing:.26em; text-transform:uppercase; color:rgba(255,248,238,.55); font-weight:600; }
.footer-nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:1.3rem; }
.footer-nav a{ font-size:.92rem; font-weight:600; color:rgba(255,248,238,.8); transition:color .18s ease; }
.footer-nav a:hover{ color:var(--honey); }
.footer-copy{ font-size:.85rem; color:rgba(255,248,238,.5); margin:0; }

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */
.sticky-cta{
  display:none;
  position:fixed; left:14px; right:14px; bottom:calc(14px + env(safe-area-inset-bottom)); z-index:70;
  background:var(--clay); color:#fff; font-weight:700;
  text-align:center; padding:.95rem 1rem; border-radius:999px;
  box-shadow:0 12px 30px rgba(40,25,10,.4);
}
.sticky-cta:active{ transform:scale(.98); }

/* ===========================================================
   LIGHTBOX
   =========================================================== */
.lightbox{
  position:fixed; inset:0; z-index:100;
  background:rgba(28,20,12,.92);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
  padding:clamp(16px,4vw,48px);
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lb-figure{ margin:0; max-width:min(880px,92vw); max-height:86vh; }
.lb-figure img{
  max-width:100%; max-height:86vh; width:auto; border-radius:14px;
  box-shadow:var(--shadow-lg); border:5px solid var(--surface);
}
.lb-close,.lb-nav{
  position:absolute; background:rgba(255,250,242,.12); color:#fff; border:1px solid rgba(255,255,255,.25);
  cursor:pointer; border-radius:50%; backdrop-filter:blur(4px); transition:background .2s ease, transform .15s ease;
}
.lb-close{ top:18px; right:18px; width:48px; height:48px; font-size:2rem; line-height:1; }
.lb-nav{ top:50%; transform:translateY(-50%); width:54px; height:54px; font-size:2.2rem; line-height:1; }
.lb-prev{ left:clamp(8px,2vw,28px); }
.lb-next{ right:clamp(8px,2vw,28px); }
.lb-close:hover,.lb-nav:hover{ background:var(--clay); }
.lb-nav:hover{ transform:translateY(-50%) scale(1.06); }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto !important; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .card img, .btn, .offer{ transition:none !important; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:920px){
  .offer-grid{ grid-template-columns:repeat(2,1fr); }
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .about-figure, .contact-figure{ max-width:480px; }
  .about-figure::before{ display:none; }
}

@media (max-width:760px){
  .nav-toggle{ display:flex; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--surface);
    box-shadow:var(--shadow-md);
    border-top:1px solid var(--line);
    padding:.5rem clamp(20px,5vw,48px) 1.1rem;
    max-height:0; overflow:hidden; opacity:0; pointer-events:none;
    transition:max-height .3s ease, opacity .25s ease, padding .3s ease;
  }
  .nav.open{ max-height:440px; opacity:1; pointer-events:auto; padding-top:.8rem; }
  .nav a{ padding:.85rem .2rem; border-bottom:1px solid var(--line); }
  .nav a::after{ display:none !important; }
  .nav a:last-child{ border-bottom:0; }
  .nav-cta{ text-align:center; margin-top:.7rem; padding:.8rem 1.15rem; }

  .grid{ grid-template-columns:repeat(2,1fr); }
  .card.big{ grid-column:span 2; grid-row:auto; aspect-ratio:16/10; }

  .sticky-cta{ display:block; }
  .site-footer{ padding-bottom:calc(96px + env(safe-area-inset-bottom)); }
}

@media (max-width:430px){
  body{ font-size:16px; }
  .offer-grid{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
  .card, .card.big{ aspect-ratio:4/3; grid-column:auto; }
  .hero-actions{ gap:.6rem; }
  .hero-actions .btn{ flex:1 1 auto; }
  .contact-row{ grid-template-columns:1fr; gap:.25rem; }
}
