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

:root {
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --text: #f2f0eb;
  --text-muted: #9a9690;
  --accent: #c41e1e;
  --accent-hover: #e02424;
  --gold: #c9a227;
  --border: rgba(255, 255, 255, 0.08);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1120px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

address {
  font-style: normal;
}

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

.section {
  padding: 5rem 0;
}

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

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-header {
  max-width: 34rem;
  margin-bottom: 3rem;
}

.section-header h2,
.split-text h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max-width));
  height: 100%;
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--text) !important;
  background: rgba(196, 30, 30, 0.12);
}

.nav-cta:hover {
  background: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 1rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.92) 75%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.35) 55%, rgba(8, 8, 8, 0.75) 100%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 1.25rem;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 36rem;
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

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

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

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-large {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

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

.split-text p + p {
  margin-top: 1rem;
}

.pull-quote {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

.split-visual {
  display: grid;
  gap: 1rem;
}

.about-gallery {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-photo:hover img {
  transform: scale(1.03);
}

.about-photo-main {
  grid-column: 1 / -1;
  min-height: 280px;
}

.about-photo-main img {
  min-height: 280px;
}

.about-highlights {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about-highlights li {
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(196, 30, 30, 0.1);
}

.feature-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.feature-icon {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.card {
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.card-photo .card-body {
  padding: 1.5rem 2rem 2rem;
}

.card-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card:not(.card-photo) {
  padding: 2rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

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

/* Gallery */
.section-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.photo-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

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

.review {
  margin: 0;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.stars {
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.review blockquote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.review figcaption {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Visit */
address {
  margin: 1.5rem 0;
  line-height: 1.8;
}

.visit-note {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.map-wrap {
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.85) contrast(1.1) brightness(0.75);
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(196, 30, 30, 0.12), rgba(201, 162, 39, 0.06));
  border: 1px solid var(--border);
  border-radius: 6px;
}

.contact-copy p:last-of-type {
  color: var(--text-muted);
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-fine {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted);
}

.contact-fine a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner p {
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .split,
  .cards,
  .review-grid,
  .contact-inner,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-wide {
    grid-column: span 1;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .contact-inner {
    padding: 1.5rem;
  }
}
