/* Gültekin Prestij — components */

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(166, 124, 61, 0.55); }

.btn--ghost {
  border: 1px solid var(--ink-line);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--text-on-dark); }

.btn--on-dark {
  border: 1px solid rgba(243, 238, 225, 0.35);
  color: var(--text-on-dark);
}
.btn--on-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.btn--block { width: 100%; justify-content: center; }

/* ============ Icons ============ */
.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ============ Topbar ============ */
.topbar {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  font-size: var(--fs-small);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.65rem; }
.topbar__msg { font-family: var(--font-display); font-style: italic; color: var(--gold-light); font-size: 0.95rem; }
.topbar__right { display: flex; align-items: center; gap: 1.4rem; }
.topbar__social { display: flex; gap: 0.9rem; }
.topbar__social a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(243, 238, 225, 0.2); border-radius: 50%; transition: background 0.3s var(--ease), border-color 0.3s var(--ease); }
.topbar__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.topbar__social .icon { width: 14px; height: 14px; }
.topbar a.topbar__link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-on-dark); font-weight: 600; }
.topbar a.topbar__link:hover { color: var(--gold-light); }

@media (max-width: 640px) {
  .topbar__msg { display: none; }
  .topbar .container { justify-content: flex-end; }
}

/* ============ Navbar ============ */
.navbar {
  background: var(--cream);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 60;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.5rem; }
.navbar__logo img { height: clamp(88px, 5vw + 64px, 112px); width: auto; }
.navbar__links { display: flex; align-items: center; gap: clamp(1.2rem, 1vw + 0.8rem, 2.4rem); }
.navbar__links > li { position: relative; }
.navbar__links a.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding-block: 0.5rem;
  position: relative;
}
.navbar__links a.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold);
  transition: right 0.35s var(--ease);
}
.navbar__links a.nav-link:hover::after,
.navbar__links a.nav-link.is-active::after { right: 0; }
.navbar__links a.nav-link.is-active { color: var(--gold-deep); }

.has-dropdown { display: flex; align-items: center; gap: 0.3rem; }
.has-dropdown .icon { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }

.dropdown-menu {
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: 0.6rem;
}

@media (min-width: 992px) {
  .nav-item--dropdown:hover .has-dropdown .icon { transform: rotate(180deg); }
  .dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
    min-width: 300px;
    box-shadow: var(--shadow-soft);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav-item--dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
}

.dropdown-menu a {
  display: block; padding: 0.7rem 0.9rem; border-radius: var(--radius-s);
  font-size: 0.9rem; font-weight: 500; color: var(--text-body);
}
.dropdown-menu a:hover { background: var(--cream-dim); color: var(--gold-deep); }

.navbar__call {
  display: flex; align-items: center; gap: 0.7rem;
  padding-left: 1.4rem; border-left: 1px solid var(--color-border);
}
.navbar__call .icon-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--gold-light);
  display: grid; place-items: center; flex-shrink: 0;
}
.navbar__call span { display: block; font-size: 0.72rem; color: var(--text-muted); }
.navbar__call a { font-weight: 700; font-size: 0.95rem; color: var(--ink); }

.navbar__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-s);
  align-items: center; justify-content: center;
}
.navbar__toggle span, .navbar__toggle::before, .navbar__toggle::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  position: relative; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.navbar__toggle::before { position: absolute; transform: translateY(-6px); }
.navbar__toggle::after { position: absolute; transform: translateY(6px); }
.navbar.is-open .navbar__toggle::before { transform: rotate(45deg); }
.navbar.is-open .navbar__toggle::after { transform: rotate(-45deg); }
.navbar.is-open .navbar__toggle span { opacity: 0; }

@media (max-width: 991px) {
  .navbar__toggle { display: inline-flex; }
  .navbar__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--color-border);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  .navbar.is-open .navbar__links { max-height: 70vh; overflow-y: auto; }
  .navbar__links > li { width: 100%; padding-inline: 1.25rem; border-bottom: 1px solid var(--color-border); }
  .navbar__links a.nav-link { display: block; padding-block: 0.9rem; }
  .navbar__links a.nav-link::after { display: none; }
  .navbar__links a.nav-link.has-dropdown {
    display: flex; justify-content: space-between; align-items: center;
  }
  .dropdown-menu {
    position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto;
    max-height: 0; overflow: hidden; padding: 0; border-radius: 0;
    transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  }
  .nav-item--dropdown.is-expanded .dropdown-menu { max-height: 200px; padding: 0.4rem 0 0.8rem; }
  .nav-item--dropdown.is-expanded .has-dropdown .icon { transform: rotate(180deg); }
  .navbar__call { display: none; }
}

/* ============ Floating buttons ============ */
.float-btn {
  position: fixed; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn--whatsapp { right: 28px; bottom: 28px; background: #25d366; color: #fff; }
.float-btn--whatsapp .icon { width: 26px; height: 26px; stroke: none; fill: currentColor; }
.float-btn--top {
  left: 28px; bottom: 28px; background: var(--ink); color: var(--gold-light);
  opacity: 0; visibility: hidden; transform: translateY(8px);
}
.float-btn--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 164, 99, 0.28), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(201, 164, 99, 0.14), transparent 45%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 3vw, 4rem);
  padding-block: clamp(3.5rem, 3rem + 5vw, 8rem);
}
.hero__eyebrow { color: var(--gold-light); }
.hero__eyebrow::before { background: var(--gold-light); }
.hero h1 { color: var(--paper); }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead { color: var(--text-on-dark-muted); margin-block: 1.4rem 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__play {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-weight: 600; font-size: 0.95rem;
}
.hero__play .icon-badge {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(243, 238, 225, 0.4);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero__play:hover .icon-badge { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.hero__play .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; margin-left: 2px; }

.hero__figure {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 1.4rem; bottom: 1.4rem;
  background: rgba(21, 19, 15, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(243, 238, 225, 0.2);
  border-radius: var(--radius-m);
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); }
.hero__badge span { font-size: 0.78rem; color: var(--text-on-dark-muted); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { aspect-ratio: 16 / 10; order: -1; }
}

/* ============ Stats / counters ============ */
.stat-chip {
  display: inline-flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.2rem;
}
.stat-chip strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.4rem);
  color: var(--gold-deep);
  line-height: 1;
}
.stat-chip span { font-size: 0.82rem; color: var(--text-muted); }

/* ============ About / collage ============ */
.about-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.collage img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-m);
  aspect-ratio: 3 / 4;
}
.collage__item--offset { transform: translateY(2.2rem); }
.collage__stat {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--ink); color: var(--text-on-dark);
  border-radius: 50%;
  width: clamp(110px, 9vw + 60px, 150px); height: clamp(110px, 9vw + 60px, 150px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 6px solid var(--cream);
}
.collage__stat strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-light); line-height: 1; }
.collage__stat span { font-size: 0.68rem; color: var(--text-on-dark-muted); line-height: 1.3; }

.perk-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-block: 2rem; }
@media (max-width: 560px) { .perk-list { grid-template-columns: 1fr; } }
.perk {
  display: flex; gap: 1rem; align-items: flex-start;
}
.perk__icon {
  width: 48px; height: 48px; border-radius: var(--radius-s);
  background: var(--cream-dim); color: var(--gold-deep);
  display: grid; place-items: center; flex-shrink: 0;
}
.perk h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.perk p { font-size: 0.9rem; color: var(--text-muted); }

/* ============ Director / author cards ============ */
.directors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 1.5rem; }
@media (max-width: 560px) { .directors { grid-template-columns: 1fr; } }
.director-card {
  display: flex; gap: 1.1rem; align-items: center;
  background: var(--paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  padding: 1.2rem;
}
.director-card__photo {
  width: 68px; height: 68px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 3px solid var(--cream-dim);
}
.director-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.director-card h4 { font-size: 1rem; margin-bottom: 0.1rem; }
.director-card__role { display: block; color: var(--gold-deep); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem; }
.director-card p { font-size: 0.85rem; color: var(--text-muted); }

/* Larger variant used on Hakkımızda page */
.director-card--lg { flex-direction: column; align-items: flex-start; gap: 0.9rem; padding: 1.8rem; }
.director-card--lg .director-card__photo { width: 100%; height: 260px; border-radius: var(--radius-m); border: none; }
.director-card--lg .director-card__photo img { object-position: top center; }

/* ============ Services ============ */
.service-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 1.5rem + 1vw, 2.6rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-s);
  background: var(--cream-dim); color: var(--gold-deep);
  display: grid; place-items: center;
}
.service-card__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-border); }
.service-card h4 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  border-radius: var(--radius-l);
  overflow: hidden;
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(201, 164, 99, 0.35), transparent 55%);
  pointer-events: none;
}
.cta-band h3 { color: var(--paper); font-size: var(--fs-h2); margin-bottom: 0.9rem; max-width: 18ch; }
.cta-band p { color: var(--text-on-dark-muted); margin-bottom: 1.6rem; max-width: 48ch; }
.cta-band__figure {
  position: relative; justify-self: end;
  width: 100%; max-width: 280px; aspect-ratio: 3 / 4;
  border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(243, 238, 225, 0.15);
}
.cta-band__figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band p { margin-inline: auto; }
  .cta-band__figure { justify-self: center; order: -1; }
}

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); }
.footer-top { padding-block: clamp(3rem, 2.5rem + 2vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 90px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--ink-line);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-social .icon { width: 15px; height: 15px; }

.footer-col h3 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 1.3rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 1.1rem; align-items: flex-start; }
.footer-contact-item .icon { width: 18px; height: 18px; color: var(--gold-light); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.92rem; }

.footer-bottom { border-top: 1px solid var(--ink-line); padding-block: 1.4rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; font-size: 0.82rem; }

/* ============ Page banner (interior pages) ============ */
.page-banner {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  padding-block: clamp(3.2rem, 2.6rem + 3vw, 5.5rem) clamp(2rem, 1.6rem + 2vw, 3rem);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(201, 164, 99, 0.3), transparent 55%);
}
.page-banner .container { position: relative; text-align: center; }
.page-banner h1 { color: var(--paper); margin-bottom: 1rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; color: var(--text-on-dark-muted); }
.breadcrumb a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--text-on-dark); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .icon { width: 14px; height: 14px; }
.breadcrumb__sep { opacity: 0.5; }

/* ============ Tabs (projelerimiz) ============ */
.tabs { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 1.6rem + 1.5vw, 3rem); }
.tabs button {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
  border: 1px solid var(--color-border);
  color: var(--text-muted);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tabs button.is-active, .tabs button:hover { background: var(--ink); color: var(--text-on-dark); border-color: var(--ink); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ============ Project grid & card ============ */
.project-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project-card:hover img { transform: scale(1.07); }
.project-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(21, 19, 15, 0.88) 0%, rgba(21, 19, 15, 0.15) 55%, rgba(21, 19, 15, 0) 75%);
}
.project-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(250, 246, 238, 0.92);
  color: var(--ink);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.project-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem; }
.project-card__body h4 { color: var(--paper); margin-bottom: 0.3rem; }
.project-card__body span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--gold-light); font-weight: 600; }
.project-card__body .icon { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.project-card:hover .project-card__body .icon { transform: translateX(4px); }

/* ============ Project detail gallery ============ */
.gallery-grid {
  columns: 3 260px;
  column-gap: 1.1rem;
}
@media (max-width: 700px) { .gallery-grid { columns: 2 180px; } }
.gallery-grid figure {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-grid button { display: block; width: 100%; }
.gallery-grid img { width: 100%; height: auto; transition: transform 0.5s var(--ease), filter 0.5s var(--ease); }
.gallery-grid button:hover img { transform: scale(1.04); filter: brightness(0.92); }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 13, 10, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius-s); box-shadow: var(--shadow-soft); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(243, 238, 225, 0.1);
  color: var(--text-on-dark);
  display: grid; place-items: center;
  border: 1px solid rgba(243, 238, 225, 0.25);
  transition: background 0.3s var(--ease);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--gold); color: var(--ink); }
.lightbox__close { top: clamp(0.8rem, 2vw, 2rem); right: clamp(0.8rem, 2vw, 2rem); }
.lightbox__prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: clamp(0.8rem, 2vw, 1.6rem); left: 50%; transform: translateX(-50%);
  font-size: 0.82rem; color: var(--text-on-dark-muted);
}

/* ============ Video modal ============ */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 13, 10, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 4rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__frame { width: 100%; max-width: 960px; aspect-ratio: 16 / 9; border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-soft); }
.video-modal__frame iframe { width: 100%; height: 100%; border: 0; }

/* ============ Rich content pages ============ */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: 0.9rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; color: var(--text-body); }
.prose ul { margin: 1.1rem 0; display: grid; gap: 0.6rem; }
.prose ul li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.97rem; }
.prose ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-top: 0.55rem; flex-shrink: 0; }
.prose strong { color: var(--ink); }

.compare-table-wrap { overflow-x: auto; margin-block: 1.6rem; border-radius: var(--radius-m); border: 1px solid var(--color-border); }
.compare-table { min-width: 560px; }
.compare-table th, .compare-table td { padding: 0.9rem 1.1rem; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--color-border); }
.compare-table thead th { background: var(--ink); color: var(--text-on-dark); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--cream-dim); }
.compare-table td strong { color: var(--gold-deep); }

.callout {
  background: var(--cream-dim);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-s);
  padding: 1.3rem 1.5rem;
  margin-block: 1.6rem;
  font-size: 0.95rem;
}

/* ============ Contact page ============ */
.contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: flex-start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 1rem; padding-block: 1.1rem; border-bottom: 1px solid var(--color-border); }
.contact-info-item:first-of-type { border-top: 1px solid var(--color-border); }
.contact-info-item .icon-badge {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-dim); color: var(--gold-deep);
  display: grid; place-items: center;
}
.contact-info-item span.label { display: block; font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-info-item a, .contact-info-item p { font-weight: 600; color: var(--ink); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 1.3rem + 1.5vw, 2.6rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; margin-bottom: 1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-s);
  padding: 0.85rem 1rem;
  background: var(--cream-dim);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--paper); }
.field textarea { min-height: 130px; resize: vertical; }
.field--honeypot { position: absolute; left: -9999px; top: -9999px; }

.form-note { margin-top: 0.9rem; font-size: 0.85rem; }
.form-note--ok { color: #4d7c4d; }
.form-note--error { color: #b04a3f; }

.map-frame { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 460px; border: 0; display: block; }
