/* ==========================================================================
   BlissHub Events — luxury midnight-navy site styles
   Inspired by the brand business card: deep navy velvet, silky cobalt
   highlights, champagne gold ornaments, invitation-style typography.
   ========================================================================== */

:root {
  /* Palette */
  --navy: #061a34;
  --navy-deep: #030f22;
  --navy-ink: #020912;
  --navy-2: #08264a;
  --cobalt: #0b4ea2;
  --sapphire: #1b75d0;
  --gold: #d8a84f;
  --gold-light: #f6d27a;
  --gold-deep: #9b6827;
  --ivory: #f7f4ea;
  --white: #ffffff;
  --aqua: #bdebea;

  /* Functional */
  --bg: var(--navy-deep);
  --text: var(--ivory);
  --text-muted: rgba(247, 244, 234, 0.7);
  --line: rgba(216, 168, 79, 0.4);
  --line-soft: rgba(216, 168, 79, 0.18);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Allura", "Brush Script MT", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 9vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Subtle satin texture across the whole page */
  background-image:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(11, 78, 162, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(27, 117, 208, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(11, 78, 162, 0.05), transparent 60%);
  background-attachment: fixed;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ivory);
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 1.1rem;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0;
  line-height: 1;
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
.section__title .script {
  font-size: 1.28em;
  padding: 0 0.05em;
  transform: translateY(0.08em);
  display: inline-block;
}

.section__lede {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__lede a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease);
}
.section__lede a:hover { color: var(--gold); }

.link-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Gold ornament dividers (between sections) ---------- */
.orn {
  display: flex;
  justify-content: center;
  color: var(--gold);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}
.orn svg {
  width: 240px;
  max-width: 60vw;
  height: 18px;
  opacity: 0.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  text-indent: 0.1em;
}

.btn--gold {
  background: linear-gradient(180deg, #e2b760 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(216, 168, 79, 0.18);
}
.btn--gold:hover {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 8px 26px rgba(246, 210, 122, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: rgba(216, 168, 79, 0.08);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 1.4rem 0;
}

.nav.is-scrolled {
  background: rgba(3, 15, 34, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(216, 168, 79, 0.18);
  padding: 0.75rem 0;
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(216, 168, 79, 0.55),
    0 0 0 4px rgba(216, 168, 79, 0.08);
}

.nav__brand-text {
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.nav__brand-script {
  font-family: var(--script);
  font-size: 1.85rem;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.nav__brand-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__menu a {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.25s var(--ease);
  font-weight: 400;
}

.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__menu a:not(.nav__cta):hover { color: var(--gold-light); }
.nav__menu a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  border: 1px solid var(--gold);
  padding: 0.7rem 1.15rem !important;
  color: var(--gold);
  transition: all 0.25s var(--ease);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(3, 15, 34, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.25rem var(--pad) 1.75rem;
    border-top: 1px solid rgba(216, 168, 79, 0.25);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__menu a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(247, 244, 234, 0.08);
  }
  .nav__menu a:last-child {
    border-bottom: 0;
    margin-top: 0.6rem;
  }
}

/* ==========================================================================
   HERO — invitation / business-card composition
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 9rem 1rem 5rem;
  text-align: center;

  background:
    /* Soft top vignette */
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(11, 78, 162, 0.22), transparent 60%),
    /* Center spotlight */
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(27, 117, 208, 0.12), transparent 65%),
    /* Bottom dark vignette */
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(2, 9, 18, 0.85), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, #051529 50%, var(--navy-deep) 100%);
}

/* Silk SVG sits behind everything */
.hero__silk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

/* Circular emblem */
.hero__emblem {
  position: relative;
  width: clamp(120px, 18vw, 180px);
  aspect-ratio: 1;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: visible;
}
.hero__emblem img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(216, 168, 79, 0.4),
    0 0 0 6px rgba(216, 168, 79, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 2;
}
.hero__ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.hero__ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(216, 168, 79, 0.08);
}

/* Brand wordmark (Cormorant, very wide tracking, gold) */
.hero__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
}
.hero__brand-text {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  background: linear-gradient(180deg, #f3d693 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}

/* Ornament under brand */
.hero__ornament {
  margin: 1.5rem auto 1.25rem;
  color: var(--gold);
}
.hero__ornament svg {
  width: 240px;
  max-width: 70vw;
  height: 18px;
  opacity: 0.9;
}

.hero__services {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 2.5rem;
}
.hero__services .dot { color: var(--gold); margin: 0 0.4em; }

.hero__tag {
  font-family: var(--script);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--gold-light);
  margin: 0 0 2.5rem;
}
.hero__tag .script { display: block; }

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(247, 244, 234, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 1px;
  margin-top: 6px;
  animation: scrollDown 1.8s var(--ease) infinite;
}

@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* Gold double-framed photo */
.frame {
  position: relative;
  margin: 0;
  padding: 14px;
  background: linear-gradient(135deg, rgba(216, 168, 79, 0.22), rgba(216, 168, 79, 0.05) 60%);
  border-radius: 2px;
  isolation: isolate;
}
.frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(216, 168, 79, 0.55);
  pointer-events: none;
  z-index: 2;
}
.frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) brightness(0.95);
}

.frame__cap {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  background: rgba(3, 15, 34, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 0.7rem 1.1rem;
  border-radius: 2px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.frame__cap .script { font-size: 1.75rem; color: var(--gold-light); }
.frame__cap span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
}

.about__copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.about__copy strong {
  color: var(--ivory);
  font-weight: 500;
}

.about__points {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.about__points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ivory);
  font-size: 0.95rem;
}
.bullet {
  width: 10px;
  height: 10px;
  color: var(--gold);
  flex: 0 0 auto;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(11, 78, 162, 0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-ink) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 920px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.service {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 78, 162, 0.10) 0%, rgba(8, 38, 74, 0.18) 100%);
  border: 1px solid rgba(216, 168, 79, 0.16);
  padding: 2.25rem 1.85rem;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27, 117, 208, 0.05), transparent 50%);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 168, 79, 0.5);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(216, 168, 79, 0.15);
}

.service__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(11, 78, 162, 0.35) 0%, rgba(3, 15, 34, 0.7) 70%);
  margin-bottom: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, 0.1);
}
.service__icon svg { width: 28px; height: 28px; }

.service h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
  font-weight: 500;
}
.service p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   BAND
   ========================================================================== */
.band {
  background: var(--navy-ink);
  border-block: 1px solid var(--line-soft);
  padding: 1.7rem 0;
  overflow: hidden;
}
.band__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--ivory);
}
.band .dot {
  color: var(--gold);
  font-style: normal;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background:
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(11, 78, 162, 0.14), transparent 60%),
    var(--navy-deep);
}

.gallery__grid {
  column-count: 3;
  column-gap: 14px;
}

@media (max-width: 820px) { .gallery__grid { column-count: 2; } }
@media (max-width: 520px) { .gallery__grid { column-count: 1; } }

.gallery__item {
  appearance: none;
  background: none;
  border: 0;
  display: block;
  width: 100%;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: zoom-in;
  break-inside: avoid;
  background-color: var(--navy-2);
  padding: 6px;
  transform: translateZ(0);
}
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 168, 79, 0.18);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.35s var(--ease);
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92) brightness(0.95);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 15, 34, 0) 60%, rgba(3, 15, 34, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}
.gallery__item:hover::before { border-color: var(--gold); }
.gallery__item:hover::after { opacity: 1; }

.gallery__more {
  text-align: center;
  margin-top: 3.5rem;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(27, 117, 208, 0.12), transparent 60%),
    var(--navy-deep);
}

.process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 920px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__steps { grid-template-columns: 1fr; } }

.process__steps li {
  padding: 1.75rem 1.6rem;
  position: relative;
}
.process__steps li + li {
  border-left: 1px solid var(--line-soft);
}
@media (max-width: 920px) {
  .process__steps li + li {
    border-left: 0;
  }
  .process__steps li {
    border-top: 1px solid var(--line-soft);
  }
}

.process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.65rem;
}

.process__steps h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.process__steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(11, 78, 162, 0.18), transparent 55%),
    radial-gradient(50% 60% at 0% 100%, rgba(27, 117, 208, 0.12), transparent 60%),
    var(--navy-deep);
}

.contact__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 820px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.contact__copy p { color: var(--text-muted); }

.contact__details {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  gap: 0;
}
.contact__details li {
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.contact__details li:last-child { border-bottom: 1px solid var(--line-soft); }

.contact__label {
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__details a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
}
.contact__details a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.contact__details li > span:not(.contact__label) {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
}

/* Form */
.contact__form {
  background:
    linear-gradient(180deg, rgba(11, 78, 162, 0.08), rgba(3, 15, 34, 0.4));
  border: 1px solid rgba(216, 168, 79, 0.22);
  border-radius: 2px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  gap: 1rem;
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(216, 168, 79, 0.1);
  pointer-events: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

.field label {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(3, 15, 34, 0.7);
  border: 1px solid rgba(247, 244, 234, 0.16);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  resize: vertical;
  width: 100%;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(3, 15, 34, 0.9);
  box-shadow: 0 0 0 1px rgba(216, 168, 79, 0.4);
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.form__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gold-light);
  min-height: 1.2em;
  position: relative;
  z-index: 1;
}
.form__note.is-error { color: var(--rose, #c75d6c); }

/* Honeypot spam trap — hidden from real users */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-ink);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__emblem img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(216, 168, 79, 0.45),
    0 0 0 4px rgba(216, 168, 79, 0.08);
}

.footer__brand {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 1rem;
  color: var(--gold);
  margin: 1rem 0 0;
  font-weight: 500;
}

.footer__orn {
  padding: 0.75rem 0 0.5rem;
}

.footer__services {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 2rem;
}
.footer__services .dot { color: var(--gold); margin: 0 0.4em; }

.footer__nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer__nav a {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.footer__nav a:hover { color: var(--gold-light); }

.footer__legal {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 234, 0.45);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 9, 18, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.is-open {
  display: flex;
  animation: fadeIn 0.25s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(216, 168, 79, 0.55);
  padding: 6px;
  background: var(--navy-2);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(216, 168, 79, 0.45);
  color: var(--ivory);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  display: grid;
  place-items: center;
  line-height: 1;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__nav--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 560px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}
