:root {
  --bg: #0e1a24;
  --bg-soft: #142330;
  --surface: #182a38;
  --line: rgba(255,255,255,0.10);
  --text: #eaf2f6;
  --text-soft: #a9bbc8;
  --primary: #3e6e8e;
  --primary-strong: #274b63;
  --secondary: #8fafc0;
  --shadow-soft: 0 14px 34px rgba(0,0,0,0.18);
  --shadow-medium: 0 20px 50px rgba(0,0,0,0.24);
  --shadow-strong: 0 28px 80px rgba(0,0,0,0.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(143,175,192,.10), transparent 22%),
    linear-gradient(180deg, #0b151d 0%, #0f1c27 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 18, 25, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 82px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.26));
}
.brand-logo-wide {
  height: 72px;
  max-width: min(46vw, 460px);
  width: auto;
}
.brand-logo-horizontal {
  height: 68px;
  max-width: min(52vw, 620px);
  width: auto;
}
.brand-logo-transparent-v2 {
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 0 .6px rgba(255,255,255,.82))
    drop-shadow(0 0 3px rgba(255,255,255,.12))
    drop-shadow(0 8px 16px rgba(0,0,0,.20));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #dce8ef;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { transform: scaleX(1); }
.header-badges {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #f3f8fb;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: var(--shadow-soft);
}
.header-badge-rich {
  min-height: auto;
  min-width: 176px;
  padding: 12px 16px;
  border-radius: 20px;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  backdrop-filter: blur(10px);
}
.header-badge-rich strong {
  font-size: 15px;
  line-height: 1.1;
}
.header-badge-rich span {
  color: #c6d6e0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 220px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: center;
}
.hero-slides,
.hero-slide,
.hero-dim {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  animation: heroFade 18s infinite;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide-1 { animation-delay: 0s; }
.hero-slide-2 { animation-delay: 6s; }
.hero-slide-3 { animation-delay: 12s; }
.hero-dim {
  background:
    linear-gradient(96deg, rgba(7,15,22,.86) 14%, rgba(7,15,22,.72) 44%, rgba(7,15,22,.22) 72%, rgba(7,15,22,.70) 100%),
    linear-gradient(180deg, rgba(7,15,22,.12), rgba(7,15,22,.30));
}
.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  padding: 76px 0 56px;
}
.hero-layout-open {
  align-items: start;
  min-height: calc(100vh - 106px);
  padding-top: 92px;
  padding-bottom: 164px;
}
.hero-copy-free {
  max-width: 620px;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  color: #b9cfdb;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1,
.section h2,
.feature-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
}
.hero h1,
.section h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero h1 {
  font-size: clamp(44px, 5.8vw, 72px);
  margin-top: 14px;
  max-width: 600px;
  text-shadow: 0 6px 28px rgba(0,0,0,.34);
}
.hero-lead {
  margin: 16px 0 0;
  max-width: 500px;
  color: #edf5f9;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
  font-weight: 600;
  text-shadow: 0 4px 22px rgba(0,0,0,.30);
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #edf5f9;
}
.hero-info-strip-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 2;
}
.hero-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(11, 22, 31, 0.54);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-medium);
}
.hero-info-item {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 10px;
}
.hero-info-item span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.hero-info-item strong {
  font-size: 17px;
  line-height: 1.4;
}
.hero-info-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.social-pill {
  width: 54px;
  min-width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  position: relative;
}
.social-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 8%, #fd5949 40%, #d6249f 65%, #285AEB 100%);
}
.social-instagram::after {
  content: '';
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
}
.social-instagram::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
}
.social-facebook {
  background: #1877f2;
}
.social-facebook::after {
  content: 'f';
  color: white;
  font-weight: 800;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.section { padding: 88px 0; }
.section-heading,
.gallery-head {
  margin-bottom: 24px;
}
.section h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  max-width: 720px;
  margin-top: 12px;
}
.story-layout,
.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: center;
}
.story-copy,
.contact-copy {
  max-width: 620px;
}
.story-text,
.contact-copy p,
.feature-card p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}
.story-text { margin: 16px 0 0; }
.story-visuals {
  position: relative;
  min-height: 520px;
}
.story-shot,
.gallery-card,
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-medium);
}
.story-shot,
.gallery-card {
  margin: 0;
  overflow: hidden;
}
.story-shot img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.story-shot:hover img,
.gallery-card:hover img {
  transform: scale(1.03);
}
.story-shot-large {
  width: min(100%, 420px);
  height: 500px;
  border-radius: 30px;
}
.story-shot-small {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 230px;
  height: 280px;
  border-radius: 24px;
  border: 8px solid rgba(24,42,56,.95);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  border-radius: 24px;
  padding: 24px;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}
.feature-card p { margin: 0; }
.gallery-grid {
  display: grid;
  gap: 16px;
}
.gallery-grid-balanced {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-card {
  border-radius: 24px;
  aspect-ratio: 1 / 1;
}
.gallery-grid-balanced .gallery-card img {
  object-fit: cover;
  object-position: center;
}
.gallery-grid-balanced .gallery-card:nth-child(1) img {
  object-position: center 42%;
}
.gallery-grid-balanced .gallery-card:nth-child(2) img {
  object-position: center 38%;
}
.gallery-grid-balanced .gallery-card:nth-child(3) img {
  object-position: center 46%;
}
.gallery-grid-balanced .gallery-card:nth-child(4) img {
  object-position: center 34%;
}
.gallery-grid-balanced .gallery-card:nth-child(5) img {
  object-position: center 36%;
}
.gallery-grid-balanced .gallery-card:nth-child(6) img {
  object-position: center 40%;
}
.contact-box {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(24,42,56,.94), rgba(32,54,70,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-strong);
}

@keyframes heroFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  28% { opacity: 1; }
  34% { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 1100px) {
  .story-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-visuals {
    min-height: auto;
    padding-bottom: 100px;
  }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .nav {
    min-height: auto;
    padding: 14px 0 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .brand {
    width: 100%;
    justify-content: center;
  }
  .brand-logo { height: 72px; }
  .brand-logo-wide {
    height: 56px;
    max-width: 72vw;
  }
  .brand-logo-horizontal {
    height: 48px;
    max-width: min(88vw, 360px);
  }
  .nav-links { display: none; }
  .header-badges {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .header-badge-rich {
    width: auto;
    min-width: 0;
    border-radius: 14px;
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .header-badge-rich strong {
    font-size: 13px;
  }
  .header-badge-rich span {
    display: none;
  }
  .hero {
    min-height: 620px;
    align-items: flex-end;
  }
  .hero-slide img {
    object-position: center;
  }
  .hero-layout {
    padding: 0;
  }
  .hero-layout-open {
    min-height: 620px;
    padding-top: 0;
    padding-bottom: 76px;
  }
  .hero-copy-free {
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .hero-lead,
  .story-text,
  .contact-copy p,
  .feature-card p {
    font-size: 16px;
  }
  .hero-info-strip-wrap {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .hero-info-strip {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 8px 8px 7px;
    border-radius: 16px;
    background: rgba(11, 22, 31, 0.34);
    backdrop-filter: blur(5px);
  }
  .hero-info-item {
    min-height: auto;
    padding: 1px 3px;
  }
  .hero-info-item span {
    font-size: 8px;
    margin-bottom: 1px;
  }
  .hero-info-item strong {
    font-size: 12px;
    line-height: 1.18;
  }
  .hero-info-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 38px 38px;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
  }
  .hero-info-actions .btn {
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
  .hero-info-actions .social-pill {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    height: 38px;
    padding: 0;
  }
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-card {
    aspect-ratio: 4 / 5;
  }
  .gallery-card img {
    aspect-ratio: 4 / 5;
  }
  .story-visuals {
    padding-bottom: 0;
  }
  .story-shot-large {
    width: 100%;
    height: 420px;
  }
  .story-shot-small {
    position: static;
    width: 72%;
    height: 230px;
    margin: -48px 0 0 auto;
  }
  .contact-box {
    padding: 24px;
  }
  .btn {
    width: 100%;
  }
}
