@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/cormorant-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
}

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-muted: #eef0f3;
  --ink: #15181e;
  --ink-soft: #2c323c;
  --muted: #5d6672;
  --accent: #8b6f3a;
  --accent-deep: #6e562c;
  --accent-soft: #f3eee4;
  --line: #e3e6eb;
  --line-strong: #cfd4dc;
  --shadow: 0 12px 40px rgba(21, 24, 30, 0.08);
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::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:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(139, 111, 58, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(21, 24, 30, 0.03), transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, var(--bg) 28%, var(--bg) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

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

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

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.55rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  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(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

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

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

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 0.15rem;
}

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

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--bg-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

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

.btn:active { transform: translateY(1px); }

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

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

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg-soft);
}

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

.btn-accent:hover {
  background: var(--accent-deep);
  color: #fff;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroRise 1.4s var(--ease) both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 22, 0.28) 0%, rgba(15, 17, 22, 0.55) 45%, rgba(15, 17, 22, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vh, 5.5rem) 0;
  max-width: 38rem;
  animation: fadeUp 0.9s 0.15s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 0.98;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-family: var(--font-body);
  font-weight: 450;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  max-width: 28rem;
}

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

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

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

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-head p { margin-bottom: 0; }

.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: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 520px;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-muted);
}

.gallery figure:first-child {
  grid-row: 1 / -1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(15, 17, 22, 0.72));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Visit / CTA band */
.cta-band {
  background:
    linear-gradient(135deg, var(--ink) 0%, #2a3140 55%, #3d3426 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 34rem; }

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

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

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

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

.info-block a {
  color: var(--accent-deep);
  text-decoration: none;
}

.info-block a:hover { text-decoration: underline; }

.info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-block li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}

.info-block li:last-child { border-bottom: 0; }

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

.address-item strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Link row */
.link-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.link-tile {
  display: block;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.link-tile:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
  color: inherit;
}

.link-tile h3 {
  margin-bottom: 0.4rem;
}

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

.link-tile .arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--bg-soft), transparent);
}

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

/* Prose */
.prose {
  max-width: 44rem;
}

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

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

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

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

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

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

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 560;
  color: var(--ink);
  text-align: left;
}

.accordion-btn::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-btn::after {
  content: "–";
}

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

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

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

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

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 111, 58, 0.15);
}

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

.form-success {
  display: none;
  padding: 1rem 1.1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(139, 111, 58, 0.25);
  color: var(--accent-deep);
}

.form-success.is-visible { display: block; }

/* Careers list */
.role-list {
  display: grid;
  gap: 0;
}

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

.role:first-child { border-top: 1px solid var(--line); }

.role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.role h3 { margin-bottom: 0.35rem; }
.role p { margin-bottom: 1rem; }

/* Locations map-like list */
.locations {
  display: grid;
  gap: 1.25rem;
}

.location {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.location-pin {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

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

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--ink);
}

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

.footer-col li { margin-bottom: 0.55rem; }

.footer-col a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border: 1.5px solid var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

/* Modals / overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 22, 0.62);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.overlay.is-open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

html.age-ok #age-gate {
  display: none !important;
}

html.age-ok.modal-open,
html.age-ok body.modal-open {
  overflow: auto;
}

.modal {
  background: #fff;
  width: min(100%, 440px);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: fadeUp 0.35s var(--ease);
}

.modal h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal p {
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

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

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.25rem;
  display: none;
  max-width: 520px;
  margin-inline: auto;
}

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

.cookie-bar p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

body.modal-open { overflow: hidden; }

/* Hours dropdown trigger on mobile info */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 560;
  color: var(--ink);
  text-align: left;
}

.dropdown-menu {
  display: none;
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
  padding: 0.5rem 1rem 0.85rem;
}

.dropdown.is-open .dropdown-menu { display: block; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-media {
  overflow: hidden;
  background: var(--bg-muted);
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroRise {
  from { transform: scale(1.06); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

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

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

  .nav a {
    padding: 0.85rem 1rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .gallery figure {
    min-height: 220px;
  }

  .gallery figure:first-child {
    grid-row: auto;
    min-height: 280px;
  }

  .info-grid,
  .footer-grid,
  .split,
  .link-row,
  .form-row.two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container { width: min(100% - 1.5rem, var(--max)); }

  .brand-tag { display: none; }

  .btn-group { width: 100%; }
  .btn-group .btn { flex: 1 1 100%; }

  .modal { padding: 1.5rem 1.25rem; }
}

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

  html { scroll-behavior: auto; }
}
