:root {
  --bg: #0b0b0b;
  --surface: #131313;
  --muted: #1b1b1b;
  --text: #f4f4f4;
  --text-soft: #cfcfcf;
  --accent: #d71f1f;
  --line: #2b2b2b;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  color: var(--text);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

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

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

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

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--text) !important;
  padding: 0.45rem 0.8rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 32px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1504198453319-5ce911bafcde?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 84px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.hero-text {
  color: var(--text-soft);
  max-width: 55ch;
  margin: 1.2rem 0 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

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

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

.btn-ghost {
  border: 1px solid #fff;
  color: #fff;
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 2rem;
}

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

.card {
  border: 1px solid var(--line);
  background: #0e0e0e;
}

.card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.card:hover img {
  filter: grayscale(20%);
  transform: scale(1.02);
}

.card-meta {
  padding: 0.9rem;
}

.card-meta span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
}

.card-meta strong {
  display: block;
  margin-top: 0.2rem;
}

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

.section-muted {
  background: var(--muted);
}

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

.directions-grid article,
.price-card,
.reviews-grid blockquote {
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.01);
}

.directions-grid h3,
.price-card h3 {
  margin-bottom: 0.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
  filter: grayscale(100%);
}

.price-card .price {
  font-size: 1.8rem;
  margin: 0.3rem 0 0.8rem;
  font-family: "Playfair Display", serif;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  margin: 0.4rem 0;
  color: var(--text-soft);
}

.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.badge {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  margin: 0 0 0.35rem;
}

.reviews-grid blockquote {
  margin: 0;
  color: var(--text-soft);
}

.reviews-grid cite {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-style: normal;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  background: #0a0a0a;
  border: 1px solid #323232;
  color: #fff;
  padding: 0.75rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.form-note {
  font-size: 0.78rem;
  color: #9e9e9e;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wrap a {
  color: var(--text-soft);
  text-decoration: none;
}

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

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

@media (max-width: 980px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directions-grid,
  .pricing-grid,
  .reviews-grid,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav.open {
    max-height: 320px;
  }

  .nav a {
    padding: 0.85rem 4%;
    border-top: 1px solid #1d1d1d;
  }

  .section {
    padding: 72px 0;
  }

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

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }
}
