@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg: #0b0b0b;
  --bg-alt: #141414;
  --fg: #f4f2ee;
  --muted: #a39c92;
  --line: #2a2a2a;
  --line-light: #e7e3db;
  --sky: #8FC7E8;
  --sky-deep: #4E92B8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

html, body { overflow-x: hidden; max-width: 100%; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { transition: opacity .2s; }
.nav-logo:hover { opacity: .7; }
.nav-logo img { height: 72px; width: auto; display: block; filter: invert(1); }
.nav-right { display: flex; align-items: center; gap: 44px; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a { border-bottom: 1px solid transparent; padding-bottom: 4px; transition: border-color .2s; }
.nav-links a:hover { border-color: var(--sky-deep); }
.nav-links a.current { border-color: var(--sky-deep); }
.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--fg);
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover { background: var(--sky-deep); border-color: var(--sky-deep); color: var(--fg); }
.nav-toggle { display: none; }

.nav-menu-btn {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--fg);
  background: none;
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 85px; left: 0; right: 0;
  z-index: 49;
  background: #000;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--sky); }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.75;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.25) 40%, rgba(11,11,11,0.95) 92%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 90px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 7.4rem);
  line-height: 0.92;
  margin: 16px 0 22px;
}
.hero .subtitle {
  font-size: 1.05rem;
  color: var(--line-light);
  margin-bottom: 34px;
  max-width: 460px;
}
.hero-ctas { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.text-link {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 5px;
  transition: border-color .2s, color .2s;
}
.text-link:hover { border-color: var(--fg); color: var(--fg); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  transition: background .2s, color .2s;
}
.btn-solid { background: var(--fg); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--fg); }
.btn-outline { background: transparent; color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--bg); }

/* STATS */
.stats {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.stats-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-inner > div { transition: transform .25s; }
.stats-inner > div:hover { transform: translateY(-6px); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* SECTIONS */
section { padding: 100px 0; }
.section-tight { padding: 70px 0; }

.bio {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 0;
  align-items: stretch;
}
.bio-media { position: relative; overflow: hidden; background: #000; min-height: 560px; }
.bio-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: transform .7s ease; }
.bio-media:hover img { transform: scale(1.045); }
.bio-copy { padding: 0 0 0 72px; display: flex; flex-direction: column; justify-content: center; }
.bio-copy .pull {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 18px 0 28px;
  max-width: 460px;
}
.bio-copy p { color: var(--muted); margin: 0 0 16px; font-weight: 300; font-size: 0.95rem; max-width: 440px; }
.bio-copy p:last-child { margin-bottom: 0; }

/* INDEX OFFER LIST (home teaser) */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 20px 32px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.index-row:hover { background: var(--bg-alt); }
.index-row.featured { background: var(--bg-alt); scroll-margin-top: 140px; }
.index-icon {
  flex: none;
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-icon svg { width: 24px; height: 24px; stroke: var(--fg); fill: none; stroke-width: 1.4; }
.index-body { flex: 1 1 auto; min-width: 0; }
.index-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.02em; margin-bottom: 6px; }
.index-body p { color: var(--muted); font-size: 0.9rem; max-width: 520px; margin: 0; }
.index-tag { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.index-arrow {
  flex: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.index-row:hover .index-arrow { background: var(--fg); color: var(--bg); border-color: var(--fg); transform: translateX(4px); }
.index-row.travel:hover .index-arrow { background: var(--sky-deep); border-color: var(--sky-deep); color: var(--fg); }
.index-row.travel:hover .index-icon { border-color: var(--sky-deep); }
.index-row.travel:hover .index-icon svg { stroke: var(--sky); }

/* FULL-BLEED BREAK */
.break-photo { position: relative; height: 62vh; min-height: 420px; overflow: hidden; }
.break-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.break-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.1) 45%); }
.break-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.break-caption .kicker { display: block; margin-bottom: 10px; }
.break-caption h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 640px; }

.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: 2.6rem; margin: 10px 0 16px; }
.section-head p { color: var(--muted); }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--bg);
  padding: 40px 28px;
  transition: background .2s;
}
.card:hover { background: var(--bg-alt); }
.card.featured { background: var(--fg); color: var(--bg); }
.card.featured .card-tag { color: var(--bg); opacity: .6; }
.card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { font-size: 0.92rem; color: var(--muted); margin: 0 0 18px; }
.card.featured p { color: var(--bg); opacity: .75; }
.card a { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

/* INSTAGRAM STRIP */
.insta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 32px 32px;
}
.insta-strip .kicker { margin-bottom: 8px; }
.insta-strip a.handle { display: inline-flex; align-items: center; gap: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.06em; border-bottom: 1px solid var(--fg); }
.insta-strip a.handle svg { width: 20px; height: 20px; stroke: var(--fg); fill: none; stroke-width: 1.6; }

/* PAGE HEADER (inner pages) */
.page-header {
  padding: 168px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin: 12px 0 14px; }
.page-header p { color: var(--muted); max-width: 560px; }

.split-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  padding-top: 101px;
}
.split-header .page-header-copy { padding: 40px 56px 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.split-header .page-header-copy h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); margin: 12px 0 14px; }
.split-header .page-header-copy p { color: var(--muted); max-width: 480px; }
.page-header-media { position: relative; overflow: hidden; background: #000; }
.page-header-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .7s ease; }
.page-header-media:hover img { transform: scale(1.045); }

/* OFFER LIST */
.offer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 44px 24px;
  margin: 0 -24px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .25s;
  scroll-margin-top: 120px;
}
.offer:hover { background: var(--bg-alt); }
.offer:last-child { border-bottom: none; }
.offer h3 { font-size: 1.9rem; margin-bottom: 12px; }
.offer p { color: var(--line-light); font-weight: 300; }
.offer .tags { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.offer .tags span {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 6px 12px; color: var(--muted);
}
.price-box { border: 1px solid var(--line); padding: 26px 28px; background: var(--bg-alt); }
.price-box .amount { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; }
.price-box .unit { font-size: 0.8rem; color: var(--muted); }
.price-box .note { font-size: 0.8rem; color: var(--muted); margin-top: 10px; }

.price-tiles { display: flex; flex-direction: column; gap: 10px; }
.price-tile {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 14px 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  transition: border-color .2s, transform .2s, background .2s;
}
.price-tile:hover { border-color: var(--sky-deep); background: #1c1c1c; transform: translateX(5px); }
.price-tile .loc { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.price-tile .amt { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; white-space: nowrap; }
.price-tile .amt small { font-family: 'Jost', sans-serif; font-size: 0.7rem; color: var(--muted); letter-spacing: 0; text-transform: none; }
.price-note { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.disclaimer {
  font-size: 0.78rem; color: var(--muted);
  border-left: 2px solid var(--line);
  padding: 12px 18px;
  margin: 8px 0 40px;
}

/* STAGES MODES */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mode { background: var(--bg); padding: 48px 40px; border-top: 2px solid var(--sky-deep); transition: background .25s, border-color .25s; }
.mode:hover { background: var(--bg-alt); border-top-color: var(--sky); }
.mode h3 { font-size: 2rem; margin-bottom: 16px; }
.mode p { color: var(--line-light); font-weight: 300; }

.btn-sky { border-color: var(--sky-deep); }
.btn-sky:hover { background: var(--sky-deep); color: var(--fg); border-color: var(--sky-deep); }
.sky-text { color: var(--sky); }
.sky-link { border-bottom-color: var(--sky-deep) !important; }
.sky-link:hover { color: var(--sky) !important; border-bottom-color: var(--sky) !important; }

.detail-list { list-style: none; margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.detail-list li { border-top: 1px solid var(--line); padding-top: 16px; }
.detail-list .d-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.detail-list .d-value { font-size: 1.05rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.contact-block h3 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.contact-block .big-link { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; border-bottom: 1px solid var(--fg); display: inline-block; transition: padding-left .2s, opacity .2s; }
.contact-block .big-link:hover { padding-left: 8px; opacity: .8; }
.contact-note { color: var(--muted); font-size: 0.9rem; margin-top: 14px; max-width: 380px; }

/* MOSAIC GALLERY */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 6px;
}
.mosaic-tile { position: relative; overflow: hidden; background: #000; }
.mosaic-tile img, .mosaic-tile video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transition: filter .6s ease, transform .6s ease;
}
.mosaic-tile:hover img, .mosaic-tile:hover video { filter: grayscale(0); transform: scale(1.04); }
.mosaic-tile { transition: box-shadow .3s; }
.mosaic-tile:hover { box-shadow: inset 0 0 0 2px var(--sky-deep); }
.mosaic-tile .play-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(11,11,11,0.55); border: 1px solid rgba(244,242,238,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--fg); pointer-events: none;
}
.mosaic-tile.big { grid-column: span 2; grid-row: span 2; }
.mosaic-tile.tall { grid-row: span 2; }
.mosaic-tile.wide { grid-column: span 2; }

@media (max-width: 860px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .mosaic-tile.big { grid-column: span 2; grid-row: span 2; }
  .mosaic-tile.wide { grid-column: span 2; }
  .mosaic-tile.tall { grid-row: span 1; }
}

.video-feature { width: 100%; background: #000; border: 1px solid var(--line); }
.video-feature video { width: 100%; max-height: 68vh; display: block; object-fit: contain; background: #000; }

/* CONTACT FORM */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-alt); border: 1px solid var(--line); color: var(--fg);
  padding: 13px 16px; font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 300;
  transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky-deep);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.sidebar-contact { border: 1px solid var(--line); padding: 32px; background: var(--bg-alt); }
.sidebar-contact h3 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.sidebar-row { padding: 16px 0; border-top: 1px solid var(--line); }
.sidebar-row:first-of-type { border-top: none; padding-top: 0; }
.sidebar-row .label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.sidebar-row .label.mixed { text-transform: none; letter-spacing: 0.02em; }
.sidebar-row a { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; border-bottom: 1px solid transparent; transition: border-color .2s; }
.sidebar-row a:hover { border-color: var(--fg); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* CTA BAND */
.cta-band {
  text-align: center;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-size: 2.4rem; margin-bottom: 26px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 20px;
  background: #000;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.footer-top img { height: 34px; filter: invert(1); }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-meta { color: var(--muted); font-size: 0.76rem; line-height: 1.4; }
.footer-nav { display: flex; flex-wrap: wrap; row-gap: 12px; column-gap: 24px; list-style: none; padding: 0; margin: 0; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: inline-block; }
  .nav-logo img { height: 56px; }
  .nav-right { gap: 12px; }
  .nav-cta, .nav-menu-btn { padding: 10px 16px; font-size: 0.68rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .bio { grid-template-columns: 1fr; }
  .bio-media { min-height: 340px; }
  .bio-copy { padding: 48px 0 0; }
  .cards { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .detail-list { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .index-icon { width: 44px; height: 44px; }
  .index-icon svg { width: 20px; height: 20px; }
  .index-arrow { width: 36px; height: 36px; }
  .split-header { grid-template-columns: 1fr; padding-top: 85px; }
  .split-header .page-header-media { height: 260px; order: -1; }
  .split-header .page-header-copy { padding: 28px 24px 36px; }
  section { padding: 56px 0; }
  .section-tight { padding: 34px 0; }
  .disclaimer { margin: 0 0 20px; }
  .cta-band { padding: 56px 0; }
  .contact-layout { gap: 8px; }
  .sidebar-contact { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
