:root {
  --bg: #080808;
  --bg-soft: #101010;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --surface-3: #202020;
  --text: #f5f1e8;
  --muted: #b7b0a4;
  --accent: #b08d57;
  --accent-soft: rgba(176, 141, 87, 0.18);
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 1.35rem;
  --radius-sm: 1rem;
  --container: min(1160px, 92%);
}

* {
  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 top right, rgba(176, 141, 87, 0.16), transparent 28%),
    linear-gradient(180deg, #090909 0%, #070707 100%);
  color: var(--text);
  line-height: 1.6;
}

body::selection {
  background: rgba(176, 141, 87, 0.35);
  color: #fff;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2.2rem;
}

.section-head.narrow {
  max-width: 44rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 9vw, 5.75rem);
  max-width: 11ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  margin-bottom: 0.85rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.28), rgba(176, 141, 87, 0.08));
  border: 1px solid rgba(176, 141, 87, 0.25);
  color: var(--text);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.9rem;
  width: 46px;
  height: 46px;
  display: grid;
  gap: 4px;
  place-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav-list {
  list-style: none;
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 4%;
  background: rgba(11, 11, 11, 0.98);
  border-bottom: 1px solid var(--border);
}

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

.nav-list a {
  text-decoration: none;
  color: var(--text);
  padding: 0.65rem 0;
}

.nav-cta {
  color: var(--accent) !important;
}

.hero {
  position: relative;
  min-height: min(100vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.35);
}

.hero-overlay {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3rem;
}

.hero-text {
  max-width: 38rem;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ebe5da;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(176, 141, 87, 0.65);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-list a:focus-visible,
.map-link:focus-visible {
  outline: 2px solid rgba(176, 141, 87, 0.9);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #c4a067, #9e7a48);
  color: #121212;
  border-color: transparent;
  font-weight: 800;
}

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

.intro-section {
  padding-top: 6rem;
}

.story-grid,
.cards-grid,
.pricing-layout,
.location-grid,
.footer-grid {
  display: grid;
  gap: 1.1rem;
}

.feature-panel,
.card,
.pricing-card,
.location-card,
.map-wrap,
.instagram-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel,
.card,
.location-card,
.map-wrap,
.instagram-shell {
  padding: 1.5rem;
}

.highlight-panel {
  background:
    linear-gradient(180deg, rgba(176, 141, 87, 0.12), rgba(255, 255, 255, 0.02)),
    #121212;
}

.card {
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 141, 87, 0.38);
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.06), rgba(255, 255, 255, 0.02));
}

.pricing-card {
  overflow: hidden;
}

.pricing-card-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0.03));
}

.pricing-card-head span {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.price-list {
  padding: 0.35rem 0;
}

.price-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: #ebe5da;
}

.price-row strong {
  min-width: 4rem;
  text-align: right;
  color: #fff;
  font-size: 1.04rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.9);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1);
}

.location-card {
  display: grid;
  gap: 1.6rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.instagram-shell {
  display: grid;
  gap: 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.insta-tile {
  min-height: 130px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.22), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 42%),
    #151515;
}

.insta-large {
  min-height: 220px;
  grid-column: span 2;
}

.site-footer {
  padding-top: 4rem;
  border-top: 1px solid var(--border);
  background: rgba(4, 4, 4, 0.85);
}

.footer-grid {
  padding-bottom: 2rem;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #938a7d;
  padding: 0 0 2rem;
}

@media (min-width: 720px) {
  .hero-actions,
  .location-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .story-grid,
  .pricing-layout,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .location-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (min-width: 980px) {
  .section {
    padding: 7rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.35rem;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .nav-list a {
    position: relative;
    padding: 0;
    color: rgba(245, 241, 232, 0.88);
  }

  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .nav-list a:hover::after,
  .nav-list a:focus-visible::after {
    transform: scaleX(1);
  }

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

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

  .gallery-card img {
    height: 320px;
  }

  .instagram-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

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

  .insta-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 300px;
  }
}
