/* BTV Event Planning — Atelier landing
   Direction E: ultra-modern editorial luxury on dark primary.
   Tokens from brand/btv.css (:root = dark). No sibling-brand hexes. */

@import url("../brand/btv.css");

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 0.2em; transition: color 0.2s ease; }
a:hover { color: var(--link-hover); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--text);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ——— Layout ——— */
.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.wrap-narrow { width: min(720px, calc(100% - 2.5rem)); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-wordmark);
  text-transform: uppercase;
  color: var(--gold-text);
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-text);
}

.lede {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 36rem;
}

.hairline {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0.55;
}

/* ——— Floating nav ——— */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1100px, calc(100% - 1.5rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  background: rgba(16, 20, 20, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(166, 125, 60, 0.35);
  border-radius: 999px;
}
.nav-mark {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-wordmark);
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-mark:hover { color: var(--gold-text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-gold) !important;
  background: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold-text) !important;
  border-color: var(--border);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(166, 125, 60, 0.45);
  color: var(--text);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .nav { border-radius: 1.25rem; flex-wrap: wrap; }
  .nav-toggle { display: grid; place-items: center; margin-left: auto; }
  .nav-links, .nav-cta { display: none; width: 100%; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.5rem 0 0.25rem;
  }
  .nav.is-open .nav-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.25rem;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 8rem 0 4.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(8, 85, 86, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(166, 125, 60, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
}
.hero-langs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-langs span {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
}
.hero-langs span.is-active {
  color: var(--teal-text);
  border-bottom-color: var(--teal-text);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.25rem);
  max-width: 11ch;
  margin-bottom: 1.75rem;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 0.5rem;
}
.hero-aside .lede { margin-bottom: 0.25rem; }
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(166, 125, 60, 0.35);
}
.hero-meta dt {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.hero-meta dd {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-gold {
  background: var(--brand-gold);
  color: var(--on-gold) !important;
  border: 1px solid var(--brand-gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold-text) !important;
}
.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid rgba(166, 125, 60, 0.45);
}
.btn-ghost:hover {
  border-color: var(--border);
  color: var(--gold-text) !important;
}

.hero-glint {
  position: absolute;
  top: 22%;
  right: 8%;
  width: 1px;
  height: 18vh;
  background: linear-gradient(to bottom, transparent, var(--gold-glint), transparent);
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-glint { display: none; }
}

/* ——— Section chrome ——— */
.section {
  padding: 6.5rem 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}
.section-head .lede { justify-self: end; }
@media (max-width: 760px) {
  .section { padding: 4.5rem 0; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .lede { justify-self: start; }
}

/* ——— Services ——— */
.services-list {
  list-style: none;
  border-top: 1px solid rgba(166, 125, 60, 0.3);
}
.service {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(166, 125, 60, 0.3);
  transition: background 0.25s ease, padding 0.25s ease;
}
.service:hover {
  background: rgba(16, 20, 20, 0.65);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-inline: -1rem;
  border-radius: 0.25rem;
}
.service-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand-teal);
  font-variant-numeric: tabular-nums;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  margin-bottom: 0.35rem;
}
.service p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 38rem;
}
.service-tag {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .service { grid-template-columns: 3rem 1fr; }
  .service-tag { grid-column: 2; }
}

/* ——— Story / founders ——— */
.story {
  background: var(--surface);
  border-block: 1px solid rgba(166, 125, 60, 0.28);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.logo-plate {
  background: #000000;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 125, 60, 0.4);
}
.logo-plate img {
  width: min(100%, 520px);
  min-width: min(100%, 280px);
}
@media (min-width: 640px) {
  .logo-plate img { min-width: 480px; width: 480px; }
}
.story-copy .eyebrow { margin-bottom: 1rem; }
.story-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}
.story-copy p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(166, 125, 60, 0.3);
}
.founder {
  padding: 0.5rem 0;
}
.founder-role {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.35rem;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text);
}
.founder-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .logo-plate { order: -1; }
}
@media (max-width: 560px) {
  .founders { grid-template-columns: 1fr; }
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 0.75rem;
}
.frame {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(166, 125, 60, 0.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.frame:first-child { grid-row: 1 / 3; }
.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(8, 85, 86, 0.35), transparent 50%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 45%);
  pointer-events: none;
}
.frame-label {
  position: relative;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.35rem;
}
.frame-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
}
.frame-aspect {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.7;
}
@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }
  .frame:first-child { grid-row: 1; grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .frame { min-height: 200px; }
  .frame:first-child { grid-column: auto; }
}

/* ——— Contact CTA ——— */
.cta {
  position: relative;
}
.cta-panel {
  background: rgba(16, 20, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(166, 125, 60, 0.4);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(8, 85, 86, 0.25), transparent 70%);
  pointer-events: none;
}
.cta-panel h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin: 0.75rem 0 1rem;
}
.cta-panel .lede { margin-bottom: 1.75rem; }
.cta-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(166, 125, 60, 0.28);
  background: rgba(0, 0, 0, 0.35);
}
.cta-details dt {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.25rem;
}
.cta-details dd {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.cta-details a { color: var(--teal-text); }
.cta-details a:hover { color: var(--link-hover); }
@media (max-width: 800px) {
  .cta-panel { grid-template-columns: 1fr; }
}

/* ——— Footer ——— */
.site-footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(166, 125, 60, 0.28);
}
.footer-logo-plate {
  background: #000000;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(166, 125, 60, 0.35);
}
.footer-logo-plate img {
  width: min(100%, 480px);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-brand {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-wordmark);
  text-transform: uppercase;
  color: var(--text);
}
.footer-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 28rem;
}
.footer-meta a { color: var(--teal-text); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--gold-text); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(166, 125, 60, 0.22);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ——— Specular accents only ——— */
.glint-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-glint), transparent);
  opacity: 0.45;
  margin-bottom: 1.25rem;
}
