/* ════════════════════════════════════════════════════════════
   Resul Bulguroğlu — Drone Photo & Video
   Consolidated Stylesheet
   ════════════════════════════════════════════════════════════ */


/* ─── 1. RESET & BASE ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --black:    #000;
  --white:    #fff;
  --ocean:    #0d7eaf;
  --ocean-lt: #29b6e8;
  --wa:       #25d366;
  --ts: 0 1px 6px rgba(0,0,0,.8),
        0 2px 20px rgba(0,0,0,.7),
        0 0 60px rgba(0,0,0,.6);
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Barlow', sans-serif;
}

html, body {
  width:100%;
  background:var(--black);
  color:var(--white);
  font-family:var(--fb);
  overflow-x:hidden;
  scroll-behavior:smooth;
}

img { max-width:100%; height:auto; }


/* ─── 2. SCROLLBAR ─── */
::-webkit-scrollbar       { width:3px; }
::-webkit-scrollbar-track { background:#000; }
::-webkit-scrollbar-thumb { background:var(--ocean); }


/* ─── 3. HEADER — default (opaque, inner pages) ─── */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:18px 36px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  background:rgba(0,0,0,0.92);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.site-header__logo {
  font-family:var(--fb); font-size:0.68rem; font-weight:400;
  letter-spacing:0.24em; text-transform:uppercase;
  color:rgba(255,255,255,0.9); text-decoration:none; flex-shrink:0;
}

/* Nav links (new — missing from original) */
.site-nav {
  display:flex; align-items:center; gap:6px;
}
.nav__link {
  font-family:var(--fb); font-size:0.6rem; font-weight:300;
  letter-spacing:0.18em; text-transform:uppercase;
  text-decoration:none;
  color:rgba(255,255,255,0.5);
  padding:6px 12px;
  border-radius:2px;
  transition:color .25s;
}
.nav__link:hover,
.nav__link--active { color:rgba(255,255,255,0.92); }

/* WhatsApp button */
.header__wa {
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--fb); font-size:0.62rem; font-weight:400;
  letter-spacing:0.18em; text-transform:uppercase;
  text-decoration:none; color:rgba(255,255,255,0.88);
  padding:8px 16px;
  border:1px solid rgba(37,211,102,0.4); border-radius:2px;
  background:rgba(37,211,102,0.08);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  transition:border-color .28s, color .28s, background .28s, transform .22s;
  flex-shrink:0;
}
.header__wa svg { width:14px; height:14px; fill:var(--wa); flex-shrink:0; }
.header__wa:hover {
  border-color:var(--wa); color:#fff;
  background:rgba(37,211,102,0.18);
  transform:translateY(-1px);
}
.header__wa-label { display:inline; }

/* Home page variant — transparent header */
.site-header--home {
  background:linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  border-bottom:none;
}
.site-header--home .site-header__logo { font-size:0.9rem; }

@media (max-width:400px) {
  .site-header { padding:14px 16px; }
  .site-header__logo { font-size:0.6rem; letter-spacing:0.16em; }
  .header__wa { padding:7px 11px; font-size:0.58rem; }
  .header__wa-label { display:none; }
  .site-nav { display:none; }
}
@media (min-width:401px) and (max-width:600px) {
  .site-header { padding:16px 20px; }
  .header__wa { padding:8px 13px; font-size:0.6rem; }
  .site-nav { gap:2px; }
  .nav__link { font-size:0.52rem; padding:5px 6px; }
}
@media (min-width:601px) and (max-width:800px) {
  .nav__link { font-size:0.55rem; padding:5px 8px; }
}


/* ─── 4. FOOTER ─── */
.site-footer {
  background:#000;
  border-top:1px solid rgba(255,255,255,0.07);
  padding:48px 24px 36px; text-align:center;
}
.footer__social {
  display:flex; align-items:center; justify-content:center;
  gap:14px; margin-bottom:32px;
}
.footer__social a {
  display:flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.6); text-decoration:none;
  background:rgba(255,255,255,0.02);
  transition:border-color .3s, color .3s, background .3s, transform .3s;
}
.footer__social a svg { width:17px; height:17px; fill:currentColor; }
.footer__social a:hover {
  border-color:var(--ocean-lt); color:#fff;
  background:rgba(13,126,175,0.18); transform:translateY(-3px);
}
.footer__social a.yt:hover { border-color:#ff4040; background:rgba(255,40,40,0.12); }
.footer__social a.ig:hover { border-color:#e1306c; background:rgba(225,48,108,0.12); }
.footer__social a.wa:hover { border-color:var(--wa); background:rgba(37,211,102,0.12); }

.footer__divider {
  width:28px; height:1px;
  background:rgba(255,255,255,0.08);
  margin:0 auto 24px;
}
.footer__copy {
  font-size:0.7rem; font-weight:300; letter-spacing:0.06em;
  color:rgba(255,255,255,0.9); line-height:2;
}
.footer__copy a {
  color:#fff; text-decoration:underline; text-underline-offset:3px;
  text-decoration-color:rgba(41,182,232,0.4);
  transition:text-decoration-color .25s;
}
.footer__copy a:hover { text-decoration-color:var(--ocean-lt); }


/* ─── 5. SHARED COMPONENTS ─── */

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--fb); font-size:0.63rem; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase;
  text-decoration:none; padding:12px 24px; border-radius:2px;
  transition:border-color .28s, color .28s, background .28s, transform .22s;
}
.btn svg { width:13px; height:13px; fill:currentColor; }
.btn--primary {
  color:#fff; background:var(--ocean);
  border:1px solid var(--ocean);
}
.btn--primary:hover {
  background:var(--ocean-lt); border-color:var(--ocean-lt);
  transform:translateY(-2px);
}
.btn--ghost {
  color:rgba(255,255,255,0.8);
  border:1px solid rgba(255,255,255,0.2);
  background:transparent;
}
.btn--ghost:hover {
  border-color:var(--white); color:#fff;
  transform:translateY(-2px);
}

/* Back link */
.back-link a {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--fb); font-size:0.6rem; font-weight:300;
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(255,255,255,0.3); text-decoration:none;
  transition:color .25s;
}
.back-link a svg { width:14px; height:14px; fill:currentColor; transition:transform .25s; }
.back-link a:hover { color:rgba(255,255,255,0.65); }
.back-link a:hover svg { transform:translateX(-3px); }

/* CTA strip (gallery, about) */
.cta-strip {
  max-width:1400px; margin:0 auto;
  padding:80px 60px 100px;
  display:flex; align-items:center; justify-content:space-between;
  gap:32px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,0.07);
}
.cta-strip__sup {
  font-family:var(--fb); font-size:0.58rem; font-weight:300;
  letter-spacing:0.36em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:10px;
}
.cta-strip__heading {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing:0.02em; line-height:1.2; color:#fff;
}
.cta-strip__heading em { font-style:italic; }
.cta-strip__btns { display:flex; gap:12px; flex-wrap:wrap; }

@media (max-width:640px) {
  .cta-strip {
    flex-direction:column; align-items:flex-start;
    padding:60px 24px 80px;
  }
}

/* Scroll indicator */
.hero__scroll {
  position:absolute; bottom:22px; left:50%;
  transform:translateX(-50%); z-index:10;
  opacity:0; animation:fadeIn 1s 2.2s ease both;
}
.hero__scroll-line {
  width:1px; height:38px; margin:0 auto;
  background:linear-gradient(to bottom, var(--ocean-lt), transparent);
  animation:scrollLine 2s infinite;
}

/* Scroll reveal utility */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.22s; }
.reveal-delay-3 { transition-delay:.34s; }
.reveal-delay-4 { transition-delay:.46s; }


/* ─── 6. KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.3; transform:scale(0.55); }
}
@keyframes scrollLine {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}


/* ════════════════════════════════════════════════════════════
   PAGE: HOME
   ════════════════════════════════════════════════════════════ */

.page-home { height:100%; }

/* Hero */
.hero {
  position:relative; width:100%; height:100dvh; min-height:600px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  overflow:hidden; text-align:center;
}

/* Video BG */
.hero__video-wrap {
  position:absolute; inset:0; z-index:0;
  background:#04111c;
}
.hero__video-wrap video {
  width:100%; height:100%;
  object-fit:cover; display:block;
}

.hero__overlay {
  position:absolute; inset:0; z-index:1;
  background:rgba(0,0,0,0.40);
}

.hero__content {
  position:relative; z-index:10;
  padding:0 24px;
  display:flex; flex-direction:column; align-items:center;
  width:100%; max-width:900px;
}

.hero__rule {
  width:32px; height:1px;
  background:var(--ocean-lt);
  margin-bottom:22px;
  opacity:0; animation:fadeIn 1s 0.5s ease both;
}

.hero__name {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(2.6rem, 8.5vw, 7rem);
  letter-spacing:0.03em; line-height:1.06;
  color:#fff;
  text-shadow:var(--ts);
  white-space:nowrap;
  opacity:0; animation:fadeUp 1s 0.6s cubic-bezier(.22,.6,.36,1) both;
}
.hero__name em { font-style:italic; }

@media (max-width:560px) {
  .hero__name { white-space:normal; font-size:clamp(2.2rem, 10vw, 3rem); }
}

/* Cycling badge */
.hero__badge {
  margin-top:18px;
  display:inline-flex; align-items:center; gap:14px;
  opacity:0; animation:fadeUp 1s 0.9s cubic-bezier(.22,.6,.36,1) both;
}
.hero__badge-dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--ocean-lt); flex-shrink:0;
  animation:pulse 2.2s infinite;
}
.hero__cycle-wrap {
  font-family:var(--fd);
  font-size:clamp(1.2rem, 2.8vw, 2rem);
  font-weight:300;
  letter-spacing:0.32em;
  text-transform:uppercase;
  white-space:nowrap;
  color:#fff;
  text-shadow:var(--ts);
  position:relative;
  height:1.6em;
  overflow:hidden;
  width:clamp(260px, 36vw, 460px);
}
.hero__cycle-wrap .word {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .65s ease, transform .65s cubic-bezier(.22,.6,.36,1);
}
.word.active  { opacity:1; transform:translateY(0); }
.word.out-up  { opacity:0; transform:translateY(-120%); }
.word.in-down { opacity:0; transform:translateY(120%); }

/* Tagline */
.hero__tagline {
  margin-top:14px;
  font-family:var(--fb); font-size:clamp(0.58rem, 1.3vw, 0.76rem);
  font-weight:300; letter-spacing:0.38em; text-transform:uppercase;
  color:rgba(255,255,255,0.88);
  text-shadow:0 1px 8px rgba(0,0,0,.85), 0 3px 24px rgba(0,0,0,.75);
  opacity:0; animation:fadeUp 1s 1.15s ease both;
}
.hero__tagline .sep { color:var(--ocean-lt); margin:0 8px; opacity:0.7; }

/* Hero nav buttons */
.hero__nav {
  margin-top:36px;
  display:flex; flex-wrap:wrap;
  align-items:center; justify-content:center;
  gap:8px;
  opacity:0; animation:fadeUp 1s 1.4s ease both;
}
.hero__nav a {
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--fb); font-size:0.63rem; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase;
  text-decoration:none; color:rgba(255,255,255,0.88);
  padding:10px 18px;
  border:1px solid rgba(255,255,255,0.22);
  border-radius:2px;
  background:rgba(0,0,0,0.38);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  transition:border-color .26s, color .26s, background .26s, transform .2s;
  text-shadow:0 1px 6px rgba(0,0,0,0.9);
}
.hero__nav a svg { width:12px; height:12px; fill:currentColor; flex-shrink:0; }
.hero__nav a:hover {
  border-color:var(--ocean-lt); color:#fff;
  background:rgba(13,126,175,0.22);
  transform:translateY(-2px);
}
.hero__nav a.btn-yt:hover { border-color:#ff4040; background:rgba(255,40,40,0.16); }
.hero__nav a.btn-ig:hover { border-color:#e1306c; background:rgba(225,48,108,0.16); }

@media (max-width:480px) {
  .hero__nav { gap:7px; margin-top:24px; }
  .hero__nav a { font-size:0.58rem; padding:9px 13px; letter-spacing:0.15em; }
}
@media (max-width:360px) {
  .hero__nav a { font-size:0.55rem; padding:8px 11px; }
}


/* ════════════════════════════════════════════════════════════
   PAGE: GALLERY
   ════════════════════════════════════════════════════════════ */

/* Gallery hero band */
.gallery-hero {
  padding:130px 60px 60px;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
  max-width:1400px; margin:0 auto;
}
.gallery-hero__eyebrow {
  font-family:var(--fb); font-size:0.58rem; font-weight:300;
  letter-spacing:0.38em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:14px;
  opacity:0; animation:fadeUp .8s .2s ease both;
}
.gallery-hero__title {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(2.8rem, 7vw, 5.5rem);
  line-height:1.05; letter-spacing:0.02em; color:#fff;
  opacity:0; animation:fadeUp .8s .35s ease both;
}
.gallery-hero__title em { font-style:italic; color:rgba(255,255,255,0.75); }

/* Filter buttons */
.gallery-filters {
  display:flex; flex-wrap:wrap; gap:8px; align-items:center;
  opacity:0; animation:fadeUp .8s .5s ease both;
}
.filter-btn {
  font-family:var(--fb); font-size:0.6rem; font-weight:300;
  letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.5); background:none;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:2px; padding:8px 16px; cursor:pointer;
  transition:border-color .25s, color .25s, background .25s;
}
.filter-btn:hover { border-color:rgba(255,255,255,0.3); color:rgba(255,255,255,0.8); }
.filter-btn.active {
  border-color:var(--ocean-lt); color:#fff;
  background:rgba(41,182,232,0.1);
}

@media (max-width:640px) {
  .gallery-hero { padding:110px 24px 40px; flex-direction:column; align-items:flex-start; }
}

/* Masonry grid */
.gallery-section {
  max-width:1400px; margin:0 auto;
  padding:0 60px 120px;
}
.gallery-grid {
  columns:3; column-gap:10px;
}
.gallery-grid.cols-2 { columns:2; }
.gallery-grid.cols-4 { columns:4; }

.g-item {
  break-inside:avoid;
  margin-bottom:10px;
  position:relative; overflow:hidden;
  border-radius:2px; cursor:pointer;
  display:block;
  opacity:0; transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
}
.g-item.visible { opacity:1; transform:translateY(0); }

.g-item img {
  width:100%; display:block;
  transition:transform .7s ease, filter .4s;
  filter:brightness(0.9) saturate(0.85);
}
.g-item:hover img {
  transform:scale(1.05);
  filter:brightness(1.05) saturate(1.1);
}

.g-item__overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,0);
  display:flex; align-items:flex-end;
  padding:20px;
  transition:background .35s;
}
.g-item:hover .g-item__overlay { background:rgba(0,0,0,0.42); }

.g-item__info {
  transform:translateY(6px); opacity:0;
  transition:opacity .3s, transform .3s;
}
.g-item:hover .g-item__info { opacity:1; transform:translateY(0); }

.g-item__cat {
  font-family:var(--fb); font-size:0.52rem; font-weight:300;
  letter-spacing:0.26em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:4px;
}
.g-item__title {
  font-family:var(--fd); font-size:1.05rem; font-weight:300;
  color:#fff; letter-spacing:0.02em;
}

.g-item__expand {
  position:absolute; top:14px; right:14px;
  width:28px; height:28px; border-radius:50%;
  background:rgba(0,0,0,0.5);
  border:1px solid rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.g-item:hover .g-item__expand { opacity:1; }
.g-item__expand svg { width:12px; height:12px; fill:#fff; }

@media (max-width:900px) {
  .gallery-section { padding:0 24px 80px; }
  .gallery-grid { columns:2; }
}
@media (max-width:480px) {
  .gallery-grid { columns:1; }
}

/* Lightbox */
.lightbox {
  position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,0.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity .35s ease;
}
.lightbox.open { opacity:1; pointer-events:all; }

.lightbox__img-wrap {
  position:relative;
  max-width:90vw; max-height:88dvh;
  display:flex; align-items:center; justify-content:center;
}
.lightbox__img {
  max-width:90vw; max-height:85dvh;
  object-fit:contain; display:block;
  border-radius:2px;
  transform:scale(0.96); opacity:0;
  transition:transform .35s ease, opacity .35s ease;
}
.lightbox.open .lightbox__img { transform:scale(1); opacity:1; }

.lightbox__close {
  position:fixed; top:20px; right:24px;
  width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(0,0,0,0.5);
  color:#fff; font-size:1.2rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .25s, background .25s;
}
.lightbox__close:hover { border-color:var(--ocean-lt); background:rgba(13,126,175,0.3); }

.lightbox__nav {
  position:fixed; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(0,0,0,0.55);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:border-color .25s, background .25s, transform .25s;
}
.lightbox__nav:hover { border-color:var(--ocean-lt); background:rgba(13,126,175,0.2); }
.lightbox__prev { left:20px; }
.lightbox__next { right:20px; }
.lightbox__prev:hover { transform:translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform:translateY(-50%) translateX(2px); }
.lightbox__nav svg { width:16px; height:16px; fill:#fff; }

.lightbox__caption {
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%);
  text-align:center;
  font-family:var(--fb); font-size:0.62rem; font-weight:300;
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(255,255,255,0.4);
}
.lightbox__caption span { color:var(--ocean-lt); margin:0 6px; }

/* Gallery back link & CTA positioning */
.page-gallery .back-link {
  max-width:1400px; margin:0 auto;
  padding:0 60px 40px;
}
@media (max-width:640px) {
  .page-gallery .back-link { padding:0 24px 28px; }
}


/* ════════════════════════════════════════════════════════════
   PAGE: ABOUT
   ════════════════════════════════════════════════════════════ */

/* About hero */
.about-hero {
  position:relative;
  height:92dvh; min-height:520px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.about-hero__img {
  position:absolute; inset:0; overflow:hidden;
}
.about-hero__img video {
  width:100%; height:100%;
  object-fit:cover; display:block;
}
.about-hero__overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.1)  40%,
    rgba(0,0,0,0.75) 80%,
    rgba(0,0,0,1)    100%
  );
}
.about-hero__content {
  position:relative; z-index:2;
  padding:0 60px 72px;
  max-width:900px;
}
.about-hero__eyebrow {
  font-family:var(--fb); font-size:0.6rem; font-weight:300;
  letter-spacing:0.38em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:14px;
  opacity:0; animation:fadeUp .9s .3s ease both;
}
.about-hero__title {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(3rem, 8vw, 6.5rem);
  line-height:1.04; letter-spacing:0.02em;
  color:#fff; text-shadow:0 2px 30px rgba(0,0,0,0.8);
  opacity:0; animation:fadeUp .9s .45s ease both;
}
.about-hero__title em { font-style:italic; color:rgba(255,255,255,0.82); }

@media (max-width:640px) {
  .about-hero__content { padding:0 24px 56px; }
  .about-hero { height:80dvh; }
}

/* Intro section */
.intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  max-width:1200px; margin:0 auto;
  padding:100px 60px;
}
.intro__text { padding-right:80px; }
.intro__label {
  font-family:var(--fb); font-size:0.58rem; font-weight:300;
  letter-spacing:0.36em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:24px;
}
.intro__lead {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(1.5rem, 2.8vw, 2.2rem);
  line-height:1.5; letter-spacing:0.01em;
  color:#fff; margin-bottom:32px;
}
.intro__lead em { font-style:italic; color:rgba(255,255,255,0.75); }
.intro__body {
  font-family:var(--fb); font-size:0.88rem; font-weight:300;
  line-height:1.9; letter-spacing:0.03em;
  color:rgba(255,255,255,0.5);
}
.intro__body p + p { margin-top:20px; }

.intro__visual {
  display:grid;
  grid-template-rows:auto auto;
  gap:12px; position:relative;
}
.intro__img {
  width:100%; border-radius:2px;
  overflow:hidden; position:relative;
}
.intro__img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .8s ease;
}
.intro__img:hover img { transform:scale(1.04); }
.intro__img--tall  { height:320px; }
.intro__img--short { height:200px; }

.intro__img-tag {
  position:absolute; bottom:14px; left:14px;
  font-family:var(--fb); font-size:0.55rem; font-weight:300;
  letter-spacing:0.28em; text-transform:uppercase;
  color:rgba(255,255,255,0.7);
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(8px);
  padding:6px 12px; border-radius:1px;
  border-left:2px solid var(--ocean-lt);
}

@media (max-width:900px) {
  .intro { grid-template-columns:1fr; padding:60px 24px; }
  .intro__text { padding-right:0; margin-bottom:48px; }
  .intro__img--tall  { height:240px; }
  .intro__img--short { height:160px; }
}

/* Expertise */
.expertise { padding:0 0 100px; overflow:hidden; }
.expertise__inner { max-width:1200px; margin:0 auto; padding:0 60px; }
.expertise__label {
  font-family:var(--fb); font-size:0.58rem; font-weight:300;
  letter-spacing:0.36em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:40px;
}
.expertise__grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.exp-card {
  position:relative; overflow:hidden;
  border-radius:2px; cursor:default;
}
.exp-card__img {
  width:100%; height:280px;
  object-fit:cover; display:block;
  transition:transform .7s ease;
}
.exp-card:hover .exp-card__img { transform:scale(1.06); }
.exp-card__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  transition:background .4s;
}
.exp-card:hover .exp-card__overlay {
  background:linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%);
}
.exp-card__content {
  position:absolute; bottom:0; left:0; right:0;
  padding:20px 18px;
}
.exp-card__num {
  font-family:var(--fd); font-size:0.8rem; font-weight:300;
  letter-spacing:0.1em; color:var(--ocean-lt);
  margin-bottom:6px;
}
.exp-card__title {
  font-family:var(--fd); font-size:1.25rem; font-weight:300;
  letter-spacing:0.04em; color:#fff; line-height:1.2;
}
.exp-card__line {
  width:0; height:1px; background:var(--ocean-lt);
  margin-top:10px; transition:width .4s ease;
}
.exp-card:hover .exp-card__line { width:32px; }

@media (max-width:900px) {
  .expertise__inner { padding:0 24px; }
  .expertise__grid { grid-template-columns:repeat(2, 1fr); }
  .exp-card__img { height:200px; }
}
@media (max-width:480px) {
  .expertise__grid { grid-template-columns:1fr 1fr; gap:8px; }
  .exp-card__img { height:160px; }
  .exp-card__title { font-size:1rem; }
}

/* Quote band */
.quote-band {
  position:relative;
  padding:120px 60px;
  text-align:center;
  overflow:hidden;
}
.quote-band::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(13,126,175,0.12) 0%, transparent 65%),
    #000;
}
.quote-band::after {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(41,182,232,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,232,0.035) 1px, transparent 1px);
  background-size:70px 70px;
}
.quote-band__inner {
  position:relative; z-index:1;
  max-width:760px; margin:0 auto;
}
.quote-band__mark {
  font-family:var(--fd); font-size:5rem; font-weight:300;
  line-height:.6; color:var(--ocean-lt); opacity:0.4;
  margin-bottom:8px; display:block;
}
.quote-band__text {
  font-family:var(--fd); font-style:italic;
  font-size:clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight:300; line-height:1.55; letter-spacing:0.02em;
  color:rgba(255,255,255,0.88);
}
.quote-band__rule {
  width:36px; height:1px; background:var(--ocean-lt);
  margin:32px auto 20px;
}
.quote-band__author {
  font-family:var(--fb); font-size:0.62rem; font-weight:300;
  letter-spacing:0.28em; text-transform:uppercase;
  color:rgba(255,255,255,0.35);
}

@media (max-width:600px) {
  .quote-band { padding:80px 24px; }
}

/* Gallery strip (about page) */
.gallery-strip { padding:0 0 100px; overflow:hidden; }
.gallery-strip__inner { max-width:1200px; margin:0 auto; padding:0 60px; }
.gallery-strip__label {
  font-family:var(--fb); font-size:0.58rem; font-weight:300;
  letter-spacing:0.36em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:28px;
}
.gallery-strip__header {
  display:flex; align-items:baseline; justify-content:space-between;
  margin-bottom:28px;
}
.gallery-strip__title {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(1.8rem, 4vw, 3rem);
  letter-spacing:0.02em; color:#fff;
}
.gallery-strip__title em { font-style:italic; }
.gallery-strip__link {
  font-family:var(--fb); font-size:0.6rem; font-weight:300;
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); text-decoration:none;
  transition:color .25s;
}
.gallery-strip__link:hover { color:var(--ocean-lt); }

.gallery-row {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:240px 200px;
  gap:8px;
}
.gallery-item {
  overflow:hidden; border-radius:2px; position:relative;
}
.gallery-item:first-child { grid-row:1 / 3; }
.gallery-item img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .7s ease, filter .4s;
  filter:brightness(0.88) saturate(0.9);
}
.gallery-item:hover img {
  transform:scale(1.06);
  filter:brightness(1) saturate(1.1);
}

@media (max-width:900px) {
  .gallery-strip__inner { padding:0 24px; }
  .gallery-row { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .gallery-item:first-child { grid-row:auto; }
  .gallery-item { height:200px; }
}
@media (max-width:480px) {
  .gallery-row { grid-template-columns:1fr; }
  .gallery-item { height:220px; }
}

/* About CTA override */
.page-about .cta-strip {
  max-width:1200px;
  padding:80px 60px 120px;
}
@media (max-width:780px) {
  .page-about .cta-strip {
    flex-direction:column; align-items:flex-start;
    padding:60px 24px 80px;
  }
  .page-about .cta-strip__btns { margin-top:8px; }
}

/* FAQ */
.faq {
  max-width:860px; margin:0 auto;
  padding:0 60px 100px;
}
.faq__header { margin-bottom:48px; }
.faq__label {
  font-family:var(--fb); font-size:0.58rem; font-weight:300;
  letter-spacing:0.36em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:14px;
}
.faq__title {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(1.8rem, 4vw, 3rem);
  letter-spacing:0.02em; color:#fff;
}
.faq__title em { font-style:italic; }

.faq__item {
  border-top:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
}
.faq__item:last-child { border-bottom:1px solid rgba(255,255,255,0.08); }

.faq__question {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:22px 0; text-align:left;
  transition:color .25s;
}
.faq__question:hover { color:var(--ocean-lt); }
.faq__q-text {
  font-family:var(--fd); font-size:clamp(1rem, 2vw, 1.35rem);
  font-weight:300; letter-spacing:0.02em;
  color:rgba(255,255,255,0.9); line-height:1.3;
  transition:color .25s;
}
.faq__question:hover .faq__q-text { color:var(--white); }
.faq__icon {
  width:20px; height:20px; flex-shrink:0;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .25s, background .25s, transform .35s;
}
.faq__icon svg {
  width:10px; height:10px;
  fill:rgba(255,255,255,0.6);
  transition:transform .35s, fill .25s;
}
.faq__item.open .faq__icon {
  border-color:var(--ocean-lt);
  background:rgba(41,182,232,0.1);
}
.faq__item.open .faq__icon svg {
  transform:rotate(45deg);
  fill:var(--ocean-lt);
}

.faq__answer {
  max-height:0; overflow:hidden;
  transition:max-height .45s cubic-bezier(.22,.6,.36,1);
}
.faq__item.open .faq__answer { max-height:500px; }
.faq__a-inner {
  padding:0 0 24px;
  font-family:var(--fb); font-size:0.85rem; font-weight:300;
  line-height:1.9; letter-spacing:0.03em;
  color:rgba(255,255,255,0.48);
}

/* About back link */
.page-about .back-link {
  max-width:1200px; margin:0 auto;
  padding:0 60px 32px;
}

@media (max-width:640px) {
  .faq { padding:0 24px 80px; }
  .faq__title { font-size:clamp(1.6rem, 6vw, 2.2rem); }
  .page-about .back-link { padding:0 24px 28px; }
}


/* ════════════════════════════════════════════════════════════
   PAGE: CONTACT
   ════════════════════════════════════════════════════════════ */

.page-contact { min-height:100dvh; display:flex; flex-direction:column; }

/* Contact hero */
.contact-hero {
  position:relative;
  padding:160px 24px 80px;
  text-align:center;
  overflow:hidden;
}
.contact-hero::before {
  content:'';
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(13,126,175,0.18) 0%, transparent 65%),
    linear-gradient(to bottom, #000 0%, #050e15 100%);
}
.contact-hero::after {
  content:'';
  position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(rgba(41,182,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,232,0.04) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at 50% 0%, black 20%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 0%, black 20%, transparent 75%);
}
.contact-hero__inner {
  position:relative; z-index:1;
  max-width:600px; margin:0 auto;
}
.contact-hero__eyebrow {
  font-family:var(--fb); font-size:0.62rem; font-weight:300;
  letter-spacing:0.38em; text-transform:uppercase;
  color:var(--ocean-lt); margin-bottom:18px;
  opacity:0; animation:fadeUp .9s .2s ease both;
}
.contact-hero__title {
  font-family:var(--fd); font-weight:300;
  font-size:clamp(3rem, 9vw, 6rem);
  letter-spacing:0.04em; line-height:1.05;
  color:var(--white);
  opacity:0; animation:fadeUp .9s .35s ease both;
}
.contact-hero__title em { font-style:italic; color:rgba(255,255,255,0.8); }
.contact-hero__rule {
  width:40px; height:1px; background:var(--ocean-lt);
  margin:28px auto 24px;
  opacity:0; animation:fadeIn .9s .5s ease both;
}

/* Contact cards */
.contact-section {
  flex:1;
  padding:0 24px 100px;
}
.contact-section .back-link {
  display:block;
  max-width:860px; margin:0 auto 64px;
  padding:0 0 0 2px;
}
.contact-grid {
  max-width:860px; margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
}

.contact-card {
  display:flex; flex-direction:column;
  align-items:flex-start;
  padding:32px 28px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:4px;
  background:rgba(255,255,255,0.02);
  text-decoration:none; color:inherit;
  transition:border-color .3s, background .3s, transform .3s;
  opacity:0; animation:fadeUp .8s ease both;
  position:relative; overflow:hidden;
}
.contact-card::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  opacity:0; transition:opacity .3s;
}
.contact-card:hover {
  border-color:var(--ocean-lt);
  background:rgba(13,126,175,0.08);
  transform:translateY(-4px);
}
.contact-card:hover::before { opacity:1; }

.contact-card.wa:hover   { border-color:var(--wa); background:rgba(37,211,102,0.07); }
.contact-card.ig:hover   { border-color:#e1306c; background:rgba(225,48,108,0.07); }
.contact-card.yt:hover   { border-color:#ff4040; background:rgba(255,40,40,0.07); }
.contact-card.fb:hover   { border-color:#1877f2; background:rgba(24,119,242,0.07); }
.contact-card.mail:hover { border-color:var(--ocean-lt); background:rgba(13,126,175,0.07); }

.contact-card:nth-child(1) { animation-delay:.1s; }
.contact-card:nth-child(2) { animation-delay:.2s; }
.contact-card:nth-child(3) { animation-delay:.3s; }
.contact-card:nth-child(4) { animation-delay:.4s; }
.contact-card:nth-child(5) { animation-delay:.5s; }
.contact-card:nth-child(6) { animation-delay:.6s; }

.card__icon {
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  margin-bottom:20px;
  transition:border-color .3s, background .3s;
}
.contact-card:hover .card__icon { border-color:currentColor; }
.card__icon svg { width:20px; height:20px; fill:currentColor; }

.contact-card.wa   .card__icon { color:var(--wa); }
.contact-card.ig   .card__icon { color:#e1306c; }
.contact-card.yt   .card__icon { color:#ff4040; }
.contact-card.fb   .card__icon { color:#1877f2; }
.contact-card.mail .card__icon { color:var(--ocean-lt); }

.card__platform {
  font-family:var(--fb); font-size:0.58rem; font-weight:400;
  letter-spacing:0.28em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); margin-bottom:6px;
}
.card__label {
  font-family:var(--fd); font-size:clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight:300; letter-spacing:0.02em;
  color:var(--white); margin-bottom:8px; line-height:1.2;
}
.card__detail {
  font-family:var(--fb); font-size:0.72rem; font-weight:300;
  letter-spacing:0.04em; color:rgba(255,255,255,0.4);
  margin-top:auto; padding-top:14px;
}
.card__arrow {
  position:absolute; right:22px; bottom:22px;
  width:18px; height:18px;
  opacity:0.2; transition:opacity .3s, transform .3s;
}
.contact-card:hover .card__arrow { opacity:0.7; transform:translate(2px,-2px); }
.card__arrow svg { width:100%; height:100%; fill:var(--white); }
