/* ───────────────────────────────────────────────────────────
   oigoworks · Ürün sayfaları · ORTAK TEMEL
   Her ürün sayfası bunu paylaşır; kendi karakterini <style> ile ekler.
   Sayfa şu değişkenleri tanımlar: --accent, --accent-tx, --accent-soft, --accent-line
─────────────────────────────────────────────────────────── */

:root{
  --ink:        #0d0c0a;
  --ink-2:      #2b2925;
  --ink-3:      #6b665d;
  --paper:      #faf7f0;
  --paper-2:    #f1ecdf;
  --paper-3:    #e6dfcb;
  --rule:       #1b1a17;
  --line:       rgba(0,0,0,0.12);
  --oigo-blue:  #1f7ed1;

  --c-hotel:    #ef8e0c;  --c-hotel-tx: #2a1a02;
  --c-agency:   #e63a82;  --c-agency-tx:#fff;
  --c-desk:     #10a472;  --c-desk-tx:  #03261a;
  --c-lms:      #7c4dee;  --c-lms-tx:   #fff;
  --c-chat:     #00a8c4;  --c-chat-tx:  #00201b;
  --c-files:    #3b82f6;  --c-files-tx: #fff;
  --c-pet:      #f5b417;  --c-pet-tx:   #1a1500;

  --f-display:  "Bricolage Grotesque", system-ui, sans-serif;
  --f-body:     "Geist", "Inter", system-ui, sans-serif;
  --f-mono:     "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --f-hand:     "Caveat", cursive;

  /* fallback accent */
  --accent: var(--ink);
  --accent-tx: var(--paper);
  --accent-soft: var(--paper-2);
  --accent-line: var(--line);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--f-body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border: none; background: none; }
img{ max-width: 100%; display: block; }
h1,h2,h3,h4{ margin: 0; }

.wrap{ max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.eyebrow{ font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.hand{ font-family: var(--f-hand); }

/* ─── Site nav (shared chrome) ─── */
.site-nav{
  position: sticky; top: 0; z-index: 80;
  background: rgba(250,247,240,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav .bar{
  max-width: 1200px; margin: 0 auto; padding: 11px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-nav .brand{ display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 600; font-size: 16px; }
.site-nav .brand-logo{ display:block; width:148px; height:auto; }
.site-nav .brand .crumb{ font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); font-weight: 400; }
.site-nav .brand .crumb b{ color: var(--accent); font-family: var(--f-display); font-weight: 600; font-size: 14px; }
.site-nav .links{ display: flex; align-items: center; gap: 22px; font-family: var(--f-mono); font-size: 13px; }
.site-nav .links a{ color: var(--ink-2); transition: color .15s; }
.site-nav .links a:hover{ color: var(--ink); }
.site-nav .links a.cur{ color: var(--accent); position: relative; }
.site-nav .links a.cur::after{ content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--accent); border-radius:2px; }
@media (max-width: 860px){ .site-nav .links{ display: none; } }

/* ─── Buttons ─── */
.btn{
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--f-body); font-weight: 500; font-size: 15px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  transition: transform .12s, box-shadow .15s, background .15s, border-color .15s;
}
.btn:hover{ transform: translateY(-1px); }
.btn .arr{ transition: transform .15s; }
.btn:hover .arr{ transform: translateX(3px); }
.btn.solid{ background: var(--accent); color: var(--accent-tx); border-color: var(--accent); }
.btn.solid:hover{ box-shadow: 0 12px 26px -12px var(--accent); }
.btn.ink{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn.lg{ padding: 15px 28px; font-size: 16px; }
.btn.ghost{ background: transparent; }

/* ─── Shared footer ─── */
.site-foot{
  background: var(--ink); color: var(--paper);
  padding: 56px 0 40px; margin-top: 0;
}
.site-foot .wrap{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-foot .brand{ display:flex; align-items:center; gap: 10px; font-family: var(--f-display); font-weight: 600; font-size: 18px; }
.site-foot .brand-logo{ display:block; width:160px; height:auto; }
.site-foot .tag{ color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.5; }
.site-foot h5{ font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 14px; }
.site-foot ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.site-foot ul a{ color: rgba(255,255,255,0.78); font-size: 14px; transition: color .15s; }
.site-foot ul a:hover{ color: #fff; }
.site-foot .row2{ max-width: 1200px; margin: 40px auto 0; padding: 22px 32px 0; border-top: 1px solid rgba(255,255,255,0.12); display:flex; justify-content: space-between; align-items:center; flex-wrap: wrap; gap: 14px; font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,0.5); }
.site-foot .row2 .social{ display:flex; gap: 8px; }
.site-foot .row2 .social a{ width: 30px; height: 30px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; color: rgba(255,255,255,0.7); transition: all .15s; }
.site-foot .row2 .social a:hover{ background: rgba(255,255,255,0.1); color: #fff; }
@media (max-width: 760px){ .site-foot .wrap{ grid-template-columns: 1fr 1fr; } }

/* ─── Shared section rhythm helpers ─── */
.sec{ padding: 96px 0; }
.sec-sm{ padding: 64px 0; }
.lead{ font-size: 20px; line-height: 1.55; color: var(--ink-2); }
.muted{ color: var(--ink-3); }

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
