/* ============================================================
   FLOTE MEDIA — blue-hour dark cinematic
   Palette:
     --ink        #0B0F14  deep blue-black base
     --panel      #121820  dark glass panels
     --bluehour   #22334A  twilight blue
     --gold       #D4B36A  champagne gold accent
     --paper      #F2EEE6  warm white text
     --muted      #8A93A0  secondary text
   Type: Gloock (display serif) / Figtree (body)
   Signature: the gold horizon line + balloon mark
   ============================================================ */

:root {
  --ink: #0B0F14;
  --panel: #121820;
  --panel-edge: rgba(212, 179, 106, 0.14);
  --bluehour: #22334A;
  --gold: #D4B36A;
  --gold-dim: rgba(212, 179, 106, 0.55);
  --paper: #F2EEE6;
  --muted: #8A93A0;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- type roles ---------- */
h1, h2, h3, .display {
  font-family: "Gloock", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.lede { color: var(--muted); max-width: 58ch; }

/* ---------- signature: gold horizon line ---------- */
.horizon {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 18%, var(--gold-dim) 82%, transparent);
}

/* ---------- nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(11, 15, 20, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 238, 230, 0.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: "Gloock", serif; font-size: 20px; color: var(--paper);
  letter-spacing: 0.04em;
}
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: auto; }
.brand span span { color: var(--gold); }
nav.links { display: flex; gap: 26px; flex-wrap: wrap; }
nav.links a {
  color: var(--muted); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
nav.links a:hover { color: var(--paper); text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(34, 51, 74, 0.55), transparent 60%),
    linear-gradient(180deg, #16202e 0%, #101722 38%, var(--ink) 78%);
  overflow: hidden;
}
.hero::after {           /* the horizon */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 118px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.7;
}
.hero-mark {
  position: absolute; right: 6vw; bottom: 96px;
  height: 200px; width: auto; opacity: 0.9;
  pointer-events: none;
}
.hero-inner { position: relative; padding: 140px 24px 180px; max-width: var(--max); margin: 0 auto; width: 100%; }
.hero h1 {
  font-size: clamp(52px, 9vw, 116px);
  line-height: 1.02;
  margin: 18px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede { font-size: 19px; }
.hero-ctas { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 14px 28px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--gold); border-radius: 2px;
  color: var(--ink); background: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: var(--gold); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--paper); border-color: rgba(242,238,230,0.3); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- sections ---------- */
section { padding: 96px 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 52px); margin: 14px 0 16px; }

/* ---------- wings overview ---------- */
.wings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wing {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 4px;
  padding: 34px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.wing h3 { font-size: 24px; }
.wing p { color: var(--muted); font-size: 15.5px; flex: 1; }
.wing a { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.wing .tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold); padding: 3px 10px; border-radius: 2px; color: var(--ink);
}

/* ---------- galleries ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.gallery figure {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 6s ease;
}
.gallery.tall img { aspect-ratio: 4 / 5; }
.gallery figure:hover img { transform: scale(1.045); }

/* ---------- service lists ---------- */
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px; }
.svc h4 { font-family: "Figtree"; font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.svc ul { list-style: none; }
.svc li { padding: 10px 0; border-bottom: 1px solid rgba(242,238,230,0.07); color: var(--muted); font-size: 15.5px; }
.svc li strong { color: var(--paper); font-weight: 600; }

.note {
  margin-top: 28px; padding: 18px 22px;
  background: rgba(34, 51, 74, 0.28);
  border-left: 2px solid var(--gold);
  color: var(--muted); font-size: 14.5px; border-radius: 0 4px 4px 0;
}

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: 4px;
  padding: 34px 28px; display: flex; flex-direction: column;
}
.tier.featured { border-color: var(--gold-dim); position: relative; }
.tier.featured::before {
  content: "Most booked"; position: absolute; top: -11px; left: 28px;
  background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px;
}
.tier h3 { font-size: 22px; margin-bottom: 4px; }
.tier .price { font-family: "Gloock", serif; font-size: 42px; color: var(--gold); margin: 10px 0 18px; }
.tier .price small { font-size: 15px; color: var(--muted); font-family: "Figtree"; }
.tier ul { list-style: none; flex: 1; }
.tier li { padding: 8px 0; border-bottom: 1px solid rgba(242,238,230,0.07); color: var(--muted); font-size: 15px; }
.tier .btn { margin-top: 24px; text-align: center; }

.pricing-sub { margin-top: 56px; }
.pricing-sub h3 { font-size: 26px; margin-bottom: 18px; }
.mini-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: 4px; padding: 24px;
}
.mini h4 { font-family: "Figtree"; font-size: 16px; font-weight: 700; }
.mini .price { font-family: "Gloock", serif; font-size: 28px; color: var(--gold); margin: 6px 0 8px; }
.mini p { color: var(--muted); font-size: 14.5px; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.about-grid .portrait-slot {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: 4px;
  aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
form .field { margin-bottom: 18px; }
label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 13px 14px;
  background: var(--panel); border: 1px solid rgba(242,238,230,0.12); border-radius: 3px;
  color: var(--paper); font-family: "Figtree"; font-size: 15.5px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 130px; resize: vertical; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 15, 20, 0.94);
  display: none; align-items: center; justify-content: center; padding: 32px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border: 1px solid var(--panel-edge); border-radius: 4px; }

/* ---------- footer ---------- */
footer { padding: 56px 0 72px; color: var(--muted); font-size: 14px; }
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { height: 30px; width: auto; opacity: 0.85; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery img { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .wings, .tiers, .mini-tiers { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .svc-cols, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  nav.links { display: none; }
  section { padding: 68px 0; }
  .hero-mark { height: 130px; right: 4vw; opacity: 0.5; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-inner { padding-bottom: 150px; }
  .hero-mark { display: none; }
}
