/* Fotografer Suka Suka — brand tokens (from official portfolio deck) */
:root {
  --yellow: #FFD21F;
  --yellow-deep: #E8BE00;
  --ink: #1B1C17;
  --ink-soft: #3A3B33;
  --paper: #FFFFFF;
  --grey: #6B6B5F;
  --line: rgba(27,28,23,0.12);
  --radius: 14px;
  --maxw: 1200px;
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 14px; }
.nav-links a.cta {
  background: var(--ink); color: var(--yellow); padding: 10px 18px; border-radius: 999px;
}
.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-btn {
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  font-weight: 700; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; cursor: pointer;
}
.lang-btn.active { background: var(--ink); color: var(--yellow); }
.nav-toggle { display: none; }
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 72px 0 0 0; background: var(--paper); flex-direction: column;
    padding: 24px; gap: 20px; transform: translateX(100%); transition: transform .3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--yellow);
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero .eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.92; letter-spacing: -1px; margin: 0 0 20px;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; -webkit-text-stroke: 2px var(--ink); color: var(--yellow); }
.hero p.lead { font-size: 18px; max-width: 520px; margin: 0 0 28px; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 2px solid var(--ink); cursor: pointer;
}
.btn-solid { background: var(--ink); color: var(--yellow); }
.btn-outline { background: transparent; color: var(--ink); }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-size: 34px; display: block; }
.stat span { font-size: 13px; color: var(--ink-soft); }
.marquee {
  margin-top: 48px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 24s linear infinite;
}
.marquee-track span {
  font-weight: 700; letter-spacing: 1px; font-size: 14px; padding-right: 32px; white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section shell ---------- */
section { padding: 84px 0; }

/* ---------- Client / brand logos ---------- */
.clients-section { padding: 48px 0; border-bottom: 1px solid var(--line); }
.clients-title {
  text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--grey); margin: 0 0 28px;
}
.clients-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 40px 56px;
}
.clients-strip .client-logo {
  height: 96px; max-width: 280px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.55; transition: opacity .2s ease, filter .2s ease;
}
.clients-strip .client-logo:hover { filter: grayscale(0%); opacity: 1; }
@media (max-width: 640px) {
  .clients-strip { gap: 28px 32px; }
  .clients-strip .client-logo { height: 64px; max-width: 180px; }
}

.section-head { margin-bottom: 44px; max-width: 640px; }
.section-head .tag {
  font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow-deep);
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05; margin: 10px 0 12px; text-transform: uppercase;
}
.section-head p { color: var(--grey); font-size: 16px; margin: 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.service-card .num { font-family: var(--font-display); font-size: 13px; color: var(--yellow-deep); }
.service-card h3 { font-size: 20px; margin: 14px 0 10px; }
.service-card p { color: var(--grey); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--yellow); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Portfolio ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 13.5px; cursor: pointer;
}
.filter-btn.active { background: var(--ink); color: var(--yellow); }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery figure {
  margin: 0; position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5; background: #eee;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 70%);
  color: #fff; font-size: 12.5px; font-weight: 600;
  opacity: 0; transition: opacity .25s ease;
}
.gallery figure:hover figcaption { opacity: 1; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.gallery-empty { color: var(--grey); padding: 40px 0; }
.load-more-wrap { text-align: center; margin-top: 32px; }

.ig-cta {
  margin-top: 56px; border-radius: var(--radius); background: var(--ink); color: #fff;
  padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ig-cta h3 { font-family: var(--font-display); font-size: 24px; margin: 0 0 6px; text-transform: uppercase; }
.ig-cta p { margin: 0; color: rgba(255,255,255,.7); }

/* ---------- Booking ---------- */
.booking { background: #FAF7EE; }
.booking-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.booking-card {
  border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 24px; margin-bottom: 16px;
}
.booking-card .icon { font-size: 26px; }
.booking-card h3 { margin: 12px 0 6px; font-size: 17px; }
.booking-card p { margin: 0; color: var(--grey); font-size: 14px; line-height: 1.6; }
.contact-panel {
  background: var(--yellow); border-radius: var(--radius); padding: 32px; position: sticky; top: 96px;
}
.contact-panel h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 10px; text-transform: uppercase; }
.contact-panel p { color: var(--ink-soft); margin: 0 0 22px; }
.contact-panel .btn-solid { width: 100%; justify-content: center; }
.contact-panel .note { margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 860px) { .booking-grid { grid-template-columns: 1fr; } .contact-panel { position: static; } }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 40px 0; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-row a { text-decoration: none; color: #fff; font-weight: 600; margin-left: 18px; }
.footer-brand { color: #fff; font-family: var(--font-display); font-size: 16px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,8,.94); display: none;
  align-items: center; justify-content: center; z-index: 100; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; color: #fff; font-size: 32px; background: none; border: none; cursor: pointer;
}
.lightbox-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: #fff; font-size: 14px; }
