/* ============================================================
   Özün Holding — Kurumsal Tema
   Palet: Deep Ink Navy + Warm Gold + Warm Neutral
   ============================================================ */

:root {
  --ink:        #0f1c2e;
  --ink-2:      #16273d;
  --ink-3:      #1d3350;
  --gold:       #c8a45c;
  --gold-2:     #e0c485;
  --gold-deep:  #a9863f;
  --cream:      #f7f4ee;
  --cream-2:    #efe9df;
  --paper:      #ffffff;
  --muted:      #5d6b7d;
  --line:       rgba(15, 28, 46, 0.10);
  --shadow-sm:  0 6px 24px rgba(15, 28, 46, 0.06);
  --shadow-md:  0 18px 50px rgba(15, 28, 46, 0.12);
  --shadow-lg:  0 30px 80px rgba(15, 28, 46, 0.18);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
}

* { scroll-behavior: smooth; }
html { scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 600; letter-spacing: -0.01em; }
a { text-decoration: none; }
img { max-width: 100%; }
.text-gold { color: var(--gold-deep); }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-body); font-weight: 600; border-radius: 2px; letter-spacing: 0.02em; transition: all .3s ease; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink); border: none;
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 164, 92, 0.45);
}
.btn-outline-light:hover { color: var(--ink); }
.btn-ink { background: var(--ink); color:#fff; border:none; }
.btn-ink:hover { background: var(--ink-3); color:#fff; transform: translateY(-2px); }

/* ============================================================
   HEADER (two-tier: topbar + main nav)
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; transition: background .4s ease, box-shadow .4s ease; background: transparent; }
.site-header.solid, .site-header.scrolled { background: rgba(13, 24, 40, 0.97); backdrop-filter: blur(12px); box-shadow: 0 8px 34px rgba(0,0,0,0.3); }
.site-header::after { content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background: linear-gradient(90deg, transparent, rgba(200,164,92,0.5), transparent); opacity:0; transition: opacity .4s ease; }
.site-header.solid::after, .site-header.scrolled::after { opacity:1; }

/* Top utility bar */
.topbar { max-height: 52px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.1); transition: max-height .4s ease, opacity .35s ease, border-color .4s ease; }
.site-header.scrolled .topbar { max-height: 0; opacity: 0; border-color: transparent; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.topbar-contact { display: flex; align-items: center; gap: 1.6rem; }
.topbar-contact a, .topbar-contact span { color: rgba(255,255,255,0.72); font-size: 0.82rem; font-weight: 400; display: inline-flex; align-items: center; gap: 0.45rem; transition: color .25s ease; }
.topbar-contact a:hover { color: var(--gold-2); }
.topbar-contact i { color: var(--gold); font-size: 0.9rem; }
.topbar-right { display: flex; align-items: center; gap: 1.1rem; }
.topbar-socials { display: flex; gap: 0.85rem; }
.topbar-socials a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color .25s ease, transform .25s ease; }
.topbar-socials a:hover { color: var(--gold-2); transform: translateY(-2px); }
.topbar-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.18); }

/* Main navbar */
.site-nav { padding: 0.9rem 0; transition: padding .4s ease; }
.site-header.scrolled .site-nav { padding: 0.5rem 0; }
.brand-logo { height: 62px; width: auto; filter: brightness(0) invert(1); transition: height .4s ease; }
.site-header.scrolled .brand-logo { height: 46px; }

.site-nav .nav-link {
  color: rgba(255,255,255,0.86); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.5rem 0.95rem !important; position: relative; transition: color .25s ease;
}
.site-nav .nav-link::after {
  content: ''; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.28rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: #fff; }
.site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { transform: scaleX(1); }
.site-nav .dropdown-menu { background: var(--ink-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; margin-top: 0.6rem; box-shadow: var(--shadow-md); }
.site-nav .dropdown-item { color: rgba(255,255,255,0.8); font-size: 0.88rem; padding: 0.55rem 1.2rem; transition: all .2s ease; }
.site-nav .dropdown-item:hover { background: rgba(200,164,92,0.14); color: var(--gold-2); }
.site-nav .btn-gold { text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; }

.navbar-toggler { border: none; padding: 0.4rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: all .3s ease; }

/* Language switch */
.lang-switch { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.28); border-radius: 40px; overflow: hidden; }
.lang-switch button {
  background: transparent; border: none; color: rgba(255,255,255,0.7);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.28rem 0.66rem; cursor: pointer; transition: all .25s ease;
}
.lang-switch button.active { background: var(--gold); color: var(--ink); }

/* ============================================================
   HERO (home) & PAGE-HERO (subpages)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media, .page-hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-media { background-image: linear-gradient(180deg, rgba(10,18,32,.55), rgba(10,18,32,.78)), image-set(url("../assets/img/hero.webp") type("image/webp"), url("../assets/img/hero.jpg") type("image/jpeg")); }
.hero-media { background-image: linear-gradient(115deg, rgba(9,16,28,.9) 0%, rgba(12,22,38,.72) 45%, rgba(15,28,46,.6) 100%), url("../assets/img/hero.jpg"); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 78% 20%, rgba(200,164,92,0.18), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding: 7rem 0 5rem; }

.hero-eyebrow { display:inline-block; color: var(--gold-2); letter-spacing: 0.5em; font-size: 0.78rem; font-weight: 600; margin-bottom: 1.5rem; padding-left: 0.5em; }
.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.5rem); font-weight: 600; line-height: 1.08; margin-bottom: 1.4rem; }
.hero-lead { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 2.3rem; font-weight: 300; }
.hero-actions .btn { margin: 0.3rem 0.4rem 0.3rem 0; }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.35); border-radius: 20px; z-index: 3; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--gold-2); border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(16px)} 100%{opacity:0} }

/* Subpage banner */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,18,32,.7) 0%, rgba(10,18,32,.55) 40%, rgba(10,18,32,.82) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 9.5rem 0 3.4rem; }
.page-hero .breadcrumb-mini { color: rgba(255,255,255,0.65); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; }
.page-hero .breadcrumb-mini a { color: var(--gold-2); }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; font-weight: 300; }

/* ============================================================
   STATS
   ============================================================ */
.stats-band { background: var(--ink); color: #fff; padding: 3.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold-2); line-height: 1; }
.stat-label { margin-top: 0.6rem; font-size: 0.86rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); text-transform: uppercase; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 6.5rem 0; }
.section-sm { padding: 4.5rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); }

.section-eyebrow { display:inline-block; color: var(--gold-deep); letter-spacing: 0.3em; font-size: 0.76rem; font-weight: 700; margin-bottom: 1rem; }
.section-eyebrow--light { color: var(--gold-2); }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.15; margin-bottom: 1.2rem; }
.section-sub { color: var(--muted); max-width: 640px; font-weight: 300; }
.lead-muted { font-size: 1.12rem; color: var(--ink-3); font-weight: 400; }
.section-dark .section-title, .section-dark p { color: #fff; }

/* ---------- About / image-text ---------- */
.media-wrap { position: relative; }
.media-frame { position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-badge { position: absolute; right: -14px; bottom: -22px; background: var(--gold); color: var(--ink); padding: 1rem 1.4rem; border-radius: 4px; box-shadow: var(--shadow-md); max-width: 230px; }
.media-badge b { display:block; font-family: var(--font-head); font-size: 1.4rem; line-height: 1; }
.media-badge span { display:block; font-size: 0.8rem; font-weight: 500; margin-top: 0.35rem; }

.about-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.about-list li { padding: 0.4rem 0; font-weight: 500; color: var(--ink-2); }
.about-list i { color: var(--gold-deep); margin-right: 0.6rem; font-size: 1.1rem; }

/* ---------- Company cards (home) ---------- */
.company-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; height: 100%; transition: transform .4s ease, box-shadow .4s ease; display:flex; flex-direction: column; }
.company-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.company-card__img { aspect-ratio: 3/2; overflow: hidden; }
.company-card__img img { width:100%; height:100%; object-fit: cover; transition: transform .6s ease; }
.company-card:hover .company-card__img img { transform: scale(1.06); }
.company-card__body { padding: 1.8rem 1.7rem; display:flex; flex-direction: column; flex:1; }
.company-card__icon { width: 48px; height: 48px; border-radius: 50%; display:flex; align-items:center; justify-content:center; background: rgba(200,164,92,0.14); color: var(--gold-deep); font-size: 1.3rem; margin-bottom: 1rem; margin-top: -3.4rem; position: relative; z-index: 2; background-color:#fff; box-shadow: var(--shadow-sm); }
.company-name { font-size: 1.4rem; margin-bottom: 0.25rem; }
.company-tag { display:block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.9rem; }
.company-card p { color: var(--muted); font-size: 0.95rem; }
.company-more { margin-top: auto; font-weight: 600; color: var(--ink); display:inline-flex; align-items:center; gap:0.4rem; }
.company-more i { transition: transform .3s ease; }
.company-card:hover .company-more i { transform: translateX(4px); }
.company-more:hover { color: var(--gold-deep); }

/* Value chain */
.chain-flow { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0.5rem; margin-top: 3.6rem; }
.chain-step { display:flex; flex-direction:column; align-items:center; gap:0.5rem; min-width:92px; }
.chain-step i { width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; background: var(--paper); border:1px solid var(--line); color: var(--ink); font-size:1.35rem; box-shadow: var(--shadow-sm); }
.chain-step span { font-size:0.82rem; font-weight:600; letter-spacing:0.05em; color: var(--muted); }
.chain-step--end i { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.chain-line { width:40px; height:2px; background: linear-gradient(90deg, var(--gold-deep), var(--line)); }

/* ---------- Parallax detail band ---------- */
.detail-band { position: relative; padding: 8rem 0; color: #fff; background-size: cover; background-position: center; background-attachment: fixed; }
.detail-band::before { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(9,16,28,.9), rgba(9,16,28,.55)); }
.detail-band .container { position: relative; z-index: 2; }
.detail-quote { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.35; font-style: italic; max-width: 820px; }
.detail-quote .text-gold { font-style: normal; }

/* ---------- Company detail rows ---------- */
.co-row { padding: 5rem 0; border-bottom: 1px solid var(--line); }
.co-row:nth-child(even) { background: var(--cream); }
.co-media { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.co-media img { width:100%; height:100%; object-fit: cover; }
.co-badge { display:inline-flex; align-items:center; gap:0.5rem; background: rgba(200,164,92,0.14); color: var(--gold-deep); font-weight:600; font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; padding:0.4rem 0.9rem; border-radius:40px; margin-bottom:1rem; }
.co-points { list-style:none; padding:0; margin:1.4rem 0 0; }
.co-points li { position: relative; padding-left: 1.8rem; margin-bottom: 0.7rem; color: var(--ink-2); }
.co-points li i { position:absolute; left:0; top:0.28rem; color: var(--gold-deep); }

/* ---------- Values ---------- */
.vm-block { margin-top: 1.8rem; padding-left: 1.2rem; border-left: 3px solid var(--gold); }
.vm-block h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.vm-block h4 i { color: var(--gold-deep); margin-right: 0.5rem; }
.vm-block p { color: var(--muted); margin: 0; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 2rem 1.7rem; height: 100%; transition: transform .35s ease, box-shadow .35s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card i { font-size: 1.9rem; color: var(--gold-deep); display: block; margin-bottom: 0.9rem; }
.value-card h5 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Why (dark) ---------- */
.why-item { padding: 2rem 1.6rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; height: 100%; transition: background .35s ease, border-color .35s ease, transform .35s ease; }
.why-item:hover { background: rgba(255,255,255,0.03); border-color: rgba(200,164,92,0.4); transform: translateY(-6px); }
.why-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold-2); display: block; margin-bottom: 0.8rem; }
.why-item h5 { color: #fff; font-size: 1.15rem; margin-bottom: 0.6rem; }
.why-item p { color: rgba(255,255,255,0.62) !important; font-size: 0.92rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.gallery-grid a { display:block; overflow:hidden; border-radius:6px; position:relative; }
.gallery-grid img { width:100%; height:100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after { content:'\F4FE'; font-family:'bootstrap-icons'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.6rem; background: rgba(15,28,46,0.35); opacity:0; transition: opacity .3s ease; }
.gallery-grid a:hover::after { opacity:1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%); color:#fff; padding: 4.6rem 0; position: relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 24px); }
.cta-band .container { position: relative; z-index:2; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,0.75); }

/* ---------- Contact ---------- */
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact-ic { flex:0 0 auto; width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; background: rgba(200,164,92,0.14); color: var(--gold-deep); font-size:1.2rem; }
.contact-lbl { display:block; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em; color: var(--muted); margin-bottom:0.15rem; }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--gold-deep); }
.contact-socials { margin-top: 2rem; display: flex; gap: 0.7rem; }
.contact-socials a { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; font-size: 1.1rem; transition: background .3s ease, transform .3s ease; }
.contact-socials a:hover { background: var(--gold-deep); transform: translateY(-3px); }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 2.4rem; box-shadow: var(--shadow-md); height: 100%; }
.contact-card .form-label { font-size: 0.84rem; font-weight: 600; color: var(--ink-2); margin-bottom: 0.3rem; }
.contact-card .form-control, .contact-card .form-select { border-radius: 3px; border: 1px solid var(--line); padding: 0.7rem 0.9rem; font-size: 0.95rem; }
.contact-card .form-control:focus, .contact-card .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,92,0.18); }
.form-note { font-size: 0.78rem; color: var(--muted); margin: 0.7rem 0 0; text-align: center; }
.cf-turnstile { display: flex; justify-content: center; }
.form-status { display: none; margin-top: 0.9rem; padding: 0.8rem 1rem; border-radius: 4px; font-size: 0.92rem; font-weight: 500; text-align: center; }
.form-status.show { display: block; }
.form-status.pending { background: rgba(200,164,92,0.14); color: var(--gold-deep); }
.form-status.success { background: rgba(31,140,90,0.12); color: #1f8c5a; border: 1px solid rgba(31,140,90,0.3); }
.form-status.error { background: rgba(198,52,52,0.1); color: #c63434; border: 1px solid rgba(198,52,52,0.28); }
.map-frame { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a1524; color: rgba(255,255,255,0.6); padding: 4.5rem 0 1.8rem; }
.footer-logo { height: 52px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-about { font-size: 0.92rem; max-width: 320px; }
.site-footer h6 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.6); transition: color .25s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-2); }
.footer-contact i { color: var(--gold); margin-right: 0.5rem; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2.6rem 0 1.4rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.84rem; }
.footer-made { color: var(--gold); letter-spacing: 0.15em; font-size: 0.78rem; }

/* Back to top */
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s ease; }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold-deep); color: #fff; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal{opacity:1;transform:none;transition:none} .hero-scroll span{animation:none} .detail-band{background-attachment:scroll} }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,14,24,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 92%; max-height: 90%; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 28px; color: #fff; font-size: 2rem; background: none; border: none; cursor: pointer; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .site-header { background: rgba(13,24,40,0.97); backdrop-filter: blur(12px); }
  .site-nav { padding: 0.6rem 0; }
  .brand-logo { height: 50px; }
  .site-header.scrolled .brand-logo { height: 44px; }
  .site-nav .navbar-collapse { background: rgba(13,24,40,0.99); margin-top: 0.7rem; border-radius: 6px; padding: 0.8rem 1rem 1.2rem; }
  .site-nav .nav-link { text-transform: none; font-size: 0.98rem; }
  .site-nav .nav-link::after { display: none; }
  .site-nav .dropdown-menu { background: transparent; border: none; box-shadow: none; padding-left: 0.8rem; }
  .lang-switch { margin-top: 0.7rem; }
  .detail-band { background-attachment: scroll; }
  .media-badge { position: static; margin-top: 1.2rem; display:inline-block; max-width:none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 767.98px) {
  /* Hide utility topbar on phones for a cleaner header */
  .topbar { display: none; }
}
@media (max-width: 575.98px) {
  .section { padding: 4.5rem 0; }
  .chain-line { width: 22px; }
  .contact-card { padding: 1.6rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-content { padding-top: 6rem; }
}
