:root {
  --bg: #f3f5f4;
  --bg-alt: #e8ecea;
  --surface: #ffffff;
  --ink: #161a19;
  --ink-soft: #4a5552;
  --brand: #0b3d3a;
  --brand-deep: #072926;
  --accent: #b8956c;
  --accent-soft: #d4bc9a;
  --line: #d5ddd9;
  --danger: #8b2e2e;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(7, 41, 38, 0.08);
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brand-deep);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 245, 244, 0.92);
  backdrop-filter: blur(10px);
  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: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--brand-deep);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand);
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.55rem;
  white-space: nowrap;
}

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

.nav-cta {
  margin-left: 0.25rem;
  background: var(--brand);
  color: #fff !important;
  padding: 0.55rem 0.85rem !important;
}

.nav-cta:hover {
  background: var(--brand-deep);
  color: var(--accent-soft) !important;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-deep);
  color: var(--accent-soft);
}

.btn-secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
}

.btn-gold {
  background: var(--accent);
  color: var(--brand-deep);
}

.btn-gold:hover {
  background: var(--accent-soft);
  color: var(--brand-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--accent-soft);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--brand-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media picture,
.hero-media source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 14s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 41, 38, 0.35) 0%, rgba(7, 41, 38, 0.72) 55%, rgba(7, 41, 38, 0.92) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(184, 149, 108, 0.18), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--accent-soft);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

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

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

.section-dark {
  background: var(--brand-deep);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--brand-deep);
  aspect-ratio: 16 / 10;
}

.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.85rem 1rem;
  background: linear-gradient(transparent, rgba(7, 41, 38, 0.85));
  color: #fff;
  font-size: 0.9rem;
  text-align: left;
}

/* Info grids */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.info-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.info-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-deep);
  margin-bottom: 0.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.contact-block h3 {
  margin-bottom: 0.4rem;
}

.contact-block a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.contact-block a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.hours-table th {
  color: var(--brand-deep);
  font-weight: 600;
  width: 45%;
}

.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tab-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  min-height: 42px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.tab-btn[aria-selected="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.tab-panel[hidden] {
  display: none;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 0.65rem;
}

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

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

.accordion-trigger::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

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

.accordion-panel {
  display: none;
  padding: 0 0 1.1rem;
}

.accordion-panel.is-open {
  display: block;
  animation: fadeUp 0.35s ease;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    linear-gradient(135deg, rgba(11, 61, 58, 0.06), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 40rem;
  margin: 0;
}

.prose {
  max-width: 760px;
}

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

.prose ul,
.prose ol {
  color: var(--ink-soft);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

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

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

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

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

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

.form label {
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--brand-deep);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

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

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

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(11, 61, 58, 0.08);
  border-left: 3px solid var(--brand);
  color: var(--brand-deep);
}

.form-success.is-visible {
  display: block;
  animation: fadeUp 0.35s ease;
}

/* Footer */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
}

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

.site-footer h3 {
  color: #fff;
  font-size: 1.15rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

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

/* Overlays / popups */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 41, 38, 0.72);
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(100%, 460px);
  background: var(--surface);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  animation: fadeUp 0.35s ease;
}

.modal h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.modal p {
  margin-bottom: 1.25rem;
}

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

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

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

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: var(--surface);
  color: var(--ink);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.4rem;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: min(calc(100% - 2rem), 720px);
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: none;
}

.cookie-bar.is-open {
  display: block;
  animation: fadeUp 0.35s ease;
}

.cookie-bar p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
}

body.modal-open {
  overflow: hidden;
}

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

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-cta {
    margin: 0.35rem 0.5rem 0.75rem;
    text-align: center;
  }

  .hero {
    min-height: 78vh;
  }
}

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