:root {
  --ink: #10231f;
  --ink-soft: #243b35;
  --paper: #fbf8f2;
  --surface: #ffffff;
  --sage: #d7e2d2;
  --mint: #8bb6a0;
  --tomato: #c84f3c;
  --gold: #d7a84e;
  --line: rgba(16, 35, 31, 0.16);
  --shadow: 0 18px 60px rgba(16, 35, 31, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(139, 182, 160, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 42%);
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: rgba(16, 35, 31, 0.68);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-links a,
.lang-toggle {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.lang-toggle:hover {
  background: var(--sage);
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.86fr);
  grid-template-rows: auto 1fr;
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 4vw, 56px);
}

.hero-media {
  grid-row: span 2;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.hero-copy {
  align-self: center;
  padding: clamp(12px, 2vw, 24px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(16, 35, 31, 0.76);
  font-size: clamp(1.04rem, 1.8vw, 1.26rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
.contact-actions a,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: white;
  background: var(--tomato);
}

.button.secondary {
  color: white;
  background: var(--ink);
}

.button.ghost {
  border: 1px solid var(--line);
  background: var(--surface);
}

.button:hover,
.contact-actions a:hover,
.mobile-cta a:hover {
  transform: translateY(-1px);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 10px 34px rgba(16, 35, 31, 0.08);
}

.hero-panel div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(16, 35, 31, 0.64);
  font-size: 0.82rem;
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1rem, 1.3vw, 1.34rem);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.quick-strip div {
  padding: 22px;
  background: var(--ink);
  color: white;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.trust p {
  color: rgba(16, 35, 31, 0.74);
  font-size: 1.05rem;
  line-height: 1.68;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(16, 35, 31, 0.08);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 900;
}

.info-card p {
  margin: 0;
  color: rgba(16, 35, 31, 0.68);
  line-height: 1.55;
}

.gallery-section {
  background: var(--ink);
  color: white;
}

.gallery-section .eyebrow {
  color: var(--gold);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.72fr));
  gap: 14px;
}

.photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #0a1613;
  color: white;
  cursor: zoom-in;
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo:hover img {
  transform: scale(1.035);
}

.photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent);
}

.photo span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-weight: 800;
  text-align: left;
}

.hours-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.hours,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(16, 35, 31, 0.08);
}

.hours {
  padding: clamp(22px, 4vw, 38px);
}

.compact h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
}

.hours-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--paper);
}

.source-note {
  margin: 18px 0 0;
  color: rgba(16, 35, 31, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
}

.contact-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 35, 31, 0.86), rgba(16, 35, 31, 0.08));
}

.contact-content {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 42px);
  color: white;
}

.contact-content .eyebrow {
  color: var(--gold);
}

.contact-content h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.contact-actions a {
  color: var(--ink);
  background: white;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-top: 40px;
}

.trust h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 56px) 96px;
  background: #091511;
  color: white;
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 14px;
  background: rgba(16, 35, 31, 0.82);
  backdrop-filter: blur(10px);
}

.mobile-cta a {
  min-height: 46px;
  background: white;
  color: var(--ink);
}

.lightbox {
  width: min(980px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050807;
}

.lightbox::backdrop {
  background: rgba(4, 8, 7, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .hours-contact,
  .trust {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-row: auto;
    min-height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .hero-panel,
  .visit-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.7rem);
  }

  .hero-panel,
  .quick-strip,
  .visit-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .photo,
  .photo img {
    min-height: 340px;
  }

  .hours-list li {
    align-items: baseline;
  }

  .contact-panel {
    min-height: 500px;
  }

  .footer {
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }
}
