/* Event Studio — public site (premium) */
:root {
  --bg: #f6f8fa;
  --bg-elevated: #ffffff;
  --bg-muted: #eef1f5;
  --text: #0c1222;
  --text-soft: #3d4a5c;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: #e2e8f0;
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-soft: rgba(13, 148, 136, 0.12);
  --accent: #b45309;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.15);
  --navy: #0c1222;
  --navy-soft: #1e293b;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 8px 32px rgba(13, 148, 136, 0.22);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-hover);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--primary); text-decoration: underline; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* —— Header —— */
.header-top {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-top .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.header-top a {
  color: #94d8d0;
}
.header-top a:hover { color: #fff; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { text-decoration: none; color: var(--text); }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary) 0%, #0f766e 50%, #115e59 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.15rem;
}

.main-nav > a:not(.btn) {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s;
}
.main-nav > a:not(.btn):hover {
  background: var(--primary-soft);
  color: var(--primary-hover);
  text-decoration: none;
}

.nav-highlight {
  color: var(--primary-hover) !important;
  background: var(--primary-soft) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.35rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border-strong);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
}
.nav-toggle::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.4rem auto;
  background: var(--text);
  box-shadow: 0 7px 0 var(--text), 0 14px 0 var(--text);
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
    gap: 0.15rem;
  }
  .main-nav .nav-actions {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    flex-direction: column;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-strong);
  }
  body.nav-open .main-nav { display: flex; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff !important;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { color: #fff !important; filter: brightness(1.05); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--border-strong);
  color: var(--text) !important;
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-hover) !important;
  background: var(--primary-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--text-soft) !important;
  box-shadow: none;
}
.btn-ghost:hover { color: var(--primary-hover) !important; }

/* —— Hero (home) —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(4rem, 12vw, 8rem);
  background: var(--navy);
  color: #f8fafc;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(13, 148, 136, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #0c1222 0%, #134e4a 42%, #0d4f4a 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='0.04' d='M0 0h36v36H0V0zm36 36h36v36H36V36z'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 1rem;
}
.hero-copy .eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: #99f6e4;
}

.hero p.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.88);
  max-width: 48ch;
  margin: 0 0 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero .btn-primary {
  background: #fff;
  color: var(--navy) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.hero .btn-primary:hover { filter: brightness(1.03); color: var(--navy) !important; }
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.75);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust svg {
  width: 1rem;
  height: 1rem;
  color: #5eead4;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  min-height: 280px;
}
.hero-card {
  position: absolute;
  inset: auto 0 0 auto;
  max-width: 340px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero-card strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1.2;
}
.hero-card span {
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.75);
}
.hero-blob {
  position: absolute;
  width: min(100%, 380px);
  aspect-ratio: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(201, 162, 39, 0.15), transparent 50%);
  border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%;
  filter: blur(0);
  opacity: 0.9;
}
@media (max-width: 900px) {
  .hero-visual { min-height: 200px; }
  .hero-card { position: relative; inset: auto; margin: 0; max-width: none; }
  .hero-blob { width: 280px; opacity: 0.6; right: -40px; }
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat strong {
  display: block;
  font-size: 1.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.stat span {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.7);
  letter-spacing: 0.02em;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.page-hero .lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
}

/* —— Sections —— */
.section {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
}
.section--muted { background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%); }
.section--white { background: var(--bg-elevated); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.section-header.text-left { text-align: left; margin-left: 0; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-hover);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}

.card--category {
  position: relative;
  padding-top: 0.5rem;
}
.card--category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0.85;
}

.card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }

.card-body {
  padding: 1.35rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.card-body p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.6;
}

.price-tag {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-hover);
  letter-spacing: -0.02em;
}

.badge {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--primary-soft);
  color: var(--primary-hover);
}

/* Gallery home */
.gallery-grid--home .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow);
}
.gallery-grid--home .gallery-item img {
  transition: transform 0.5s var(--ease);
}
.gallery-grid--home .gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-grid--home figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(12, 18, 34, 0.85));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
  position: relative;
  padding-top: 1.5rem;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -0.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-soft);
  opacity: 0.9;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* CTA panel */
.cta-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a3a 50%, #134e4a 100%);
  color: #f8fafc;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(94, 234, 212, 0.15) 0%, transparent 55%);
  pointer-events: none;
}
.cta-panel .section-title { color: #fff; position: relative; }
.cta-panel .section-intro { color: rgba(248, 250, 252, 0.82); margin: 0 auto 1.5rem; position: relative; max-width: 46ch; }
.cta-panel .btn-primary {
  position: relative;
  background: #fff;
  color: var(--navy) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Prose */
.prose {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose p { margin: 0 0 1.15rem; }
.prose a { font-weight: 600; }

/* Forms */
.form-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-elevated);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 1.15rem; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-actions { margin-top: 1.35rem; }

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  font-size: 0.92rem;
}
.data-table th,
.data-table td {
  padding: 0.85rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  background: var(--bg-muted);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.data-table tbody tr:hover td { background: rgba(13, 148, 136, 0.04); }
.data-table tr:last-child td { border-bottom: none; }

/* Footer */
.site-footer {
  margin-top: 0;
  background: var(--navy);
  color: #cbd5e1;
  padding: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer .logo-text { color: #fff; background: none; -webkit-text-fill-color: #fff; }
.site-footer a {
  color: #99f6e4;
  text-decoration: none;
}
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-weight: 800;
}
.logo-footer {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.muted { color: #94a3b8; font-size: 0.95rem; line-height: 1.65; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.15rem 0;
  font-size: 0.82rem;
  color: #64748b;
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
  align-items: flex-end;
  padding: 1.25rem 1.35rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.filters .form-row { margin: 0; min-width: 140px; }

.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--muted);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
}

.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li {
  display: flex;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list strong {
  min-width: 150px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
}
.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 18, 34, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow-lg); }

.link-arrow::after {
  content: " →";
  font-weight: 700;
}

@media (max-width: 768px) {
  .detail-grid { grid-template-columns: 1fr !important; }
}

/* Flash messages */
.flash-wrap { padding-top: 1rem; }

/* Auth pages */
.auth-section {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(4rem, 10vw, 6rem);
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 50%);
}
.auth-wrap {
  max-width: 440px;
  margin: 0 auto;
}
.auth-wrap--wide { max-width: 520px; }
.auth-wrap .form-card { max-width: none; }
.auth-wrap h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.35rem;
  color: var(--navy);
}
.auth-wrap .sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}

/* Split contact / wide content */
.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .page-split { grid-template-columns: 1fr; }
}
.contact-aside {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-aside h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: var(--navy);
}
.contact-aside p { margin: 0 0 0.75rem; font-size: 0.98rem; }
.contact-aside a { font-weight: 600; }

