:root {
  --bg: #111513;
  --surface: #1a201d;
  --surface-soft: #232b27;
  --text: #f2f1ec;
  --muted: #c4c1b7;
  --accent: #8fa084;
  --accent-2: #d4c8ad;
  --line: rgba(212, 200, 173, 0.2);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  --radius: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at 10% 0%, #202823 0%, var(--bg) 40%);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(17, 21, 19, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.08em;
}

.logo strong {
  font-size: 1.1rem;
}

.logo span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.92rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  transition: 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--surface-soft);
  color: var(--accent-2);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.hero {
  padding: 6.6rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.25fr 1fr;
}

.hero-panel {
  background: linear-gradient(150deg, #262e29 0%, #141916 70%);
  padding: 2.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

h1,
.h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

h2,
.h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

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

.btn-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.btn-primary {
  background: var(--accent-2);
  color: #1e1b15;
  box-shadow: 0 8px 24px rgba(212, 200, 173, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
}

.hero-image-stack .tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
}

.hero-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 4.6rem 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.story-grid,
.cards-3,
.cards-2,
.contact-grid,
.split-grid {
  display: grid;
  gap: 1.1rem;
}

.story-grid {
  grid-template-columns: 1.2fr 1fr;
}

.story-box,
.card,
.quote,
.map-box,
.form-wrap,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2,
.contact-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  transition: transform 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 160, 132, 0.75);
}

.card h3 {
  margin-bottom: 0.4rem;
  font-family: "Space Grotesk", sans-serif;
}

.price {
  color: var(--accent-2);
  font-weight: 600;
  margin-top: 0.65rem;
}

.number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  background: rgba(143, 160, 132, 0.2);
  margin-bottom: 0.7rem;
}

.gallery-grid {
  columns: 3 220px;
  column-gap: 1rem;
}

.gallery-grid figure {
  break-inside: avoid;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: auto;
}

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

.quote p {
  margin-bottom: 0.9rem;
}

.quote strong {
  font-size: 0.92rem;
  color: var(--accent-2);
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f1311;
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.form-success {
  display: none;
  margin-top: 0.8rem;
  border: 1px solid rgba(143, 160, 132, 0.5);
  background: rgba(143, 160, 132, 0.13);
  color: #d9e2d3;
  border-radius: 12px;
  padding: 0.75rem;
  font-size: 0.9rem;
}

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

.hours-list {
  list-style: none;
  margin-top: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(212, 200, 173, 0.15);
  color: var(--muted);
}

.map-box iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: #0c100e;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

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

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}

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

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

@media (max-width: 950px) {
  .hero-grid,
  .story-grid,
  .cards-3,
  .cards-2,
  .contact-grid,
  .split-grid,
  .testimonials,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-stack {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 4vw;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    background: #121815;
    border: 1px solid var(--line);
    border-radius: 14px;
    min-width: 220px;
    padding: 0.65rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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