:root {
  --navy: #0b1c2c;
  --navy-mid: #132a3f;
  --gold: #c9a962;
  --gold-soft: #e0c989;
  --cream: #f4f1ea;
  --ink: #1c2430;
  --muted: #5c6673;
  --line: rgba(201, 169, 98, 0.28);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 28, 44, 0.18);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 28, 44, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.brand:hover {
  color: var(--gold-soft);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  margin: 4px auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.45rem 0.9rem;
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--navy-mid);
  color: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--navy) center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 28, 44, 0.25) 0%, rgba(11, 28, 44, 0.78) 70%, rgba(11, 28, 44, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 28, 44, 0.55) 0%, rgba(11, 28, 44, 0.15) 55%, transparent 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 640px;
  animation: rise 0.9s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--cream);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--gold-soft);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.hero p {
  color: rgba(244, 241, 234, 0.88);
  font-size: 1.05rem;
  max-width: 34ch;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
  color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

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

.section-dark .lead {
  color: rgba(244, 241, 234, 0.75);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
  border: 0;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 16 / 11;
  animation: fade-in 0.8s ease both;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item figcaption,
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(11, 28, 44, 0.85));
  color: var(--cream);
  font-size: 0.85rem;
  text-align: left;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Info grid / contacts */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.info-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.info-block p,
.info-block a,
.info-block li {
  color: var(--muted);
}

.section-dark .info-block p,
.section-dark .info-block a,
.section-dark .info-block li {
  color: rgba(244, 241, 234, 0.8);
}

.section-dark .info-block a:hover {
  color: var(--gold);
}

.address-list {
  list-style: none;
  padding: 0;
}

.address-list li {
  margin-bottom: 0.85rem;
  padding-left: 0;
}

.address-list strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.section-dark .address-list strong {
  color: var(--gold-soft);
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.1rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
}

.section-dark .accordion-btn {
  color: var(--cream);
}

.accordion-btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.accordion-btn[aria-expanded="true"]::after {
  content: "−";
}

.accordion-panel {
  display: none;
  padding: 0 0 1.15rem;
  color: var(--muted);
}

.accordion-panel.open {
  display: block;
  animation: rise 0.35s ease both;
}

.section-dark .accordion-panel {
  color: rgba(244, 241, 234, 0.78);
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(11, 28, 44, 0.18);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 1rem;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 98, 0.12);
  color: var(--navy);
}

.form-success.show {
  display: block;
}

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  padding: 3.5rem 0 2.75rem;
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.page-hero p {
  max-width: 54ch;
  color: rgba(244, 241, 234, 0.8);
  margin: 0;
}

/* Content prose */
.prose {
  max-width: 720px;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.prose h3 {
  margin-top: 1.4rem;
  font-size: 1.15rem;
}

.job-list {
  display: grid;
  gap: 1rem;
}

.job {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.job h3 {
  margin-bottom: 0.35rem;
}

.job-meta {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

/* Footer */
.site-footer {
  background: #07131d;
  color: rgba(244, 241, 234, 0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(244, 241, 234, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.18);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Overlays / modals */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 29, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.overlay.open {
  display: flex;
}

.modal {
  width: min(100%, 440px);
  background: var(--cream);
  color: var(--ink);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  animation: rise 0.35s ease both;
}

.modal h2 {
  font-size: 1.5rem;
}

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

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.lightbox .modal {
  width: min(100%, 900px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--gold);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.25rem;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: none;
  background: var(--navy);
  color: var(--cream);
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-inline: auto;
}

.cookie-bar.open {
  display: block;
  animation: rise 0.4s ease both;
}

.cookie-bar p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: rgba(244, 241, 234, 0.85);
}

.cookie-bar a {
  color: var(--gold);
}

body.age-locked {
  overflow: hidden;
}

body.age-locked #age-gate {
  display: flex;
}

/* Utility */
.mt-2 {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(201, 169, 98, 0.12);
  }

  .nav-cta {
    margin: 0.5rem 1rem 0.85rem;
    text-align: center;
  }

  .hero {
    min-height: min(88vh, 680px);
    align-items: flex-end;
  }

  .brand-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 3rem 0 2.5rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .btn-row {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
