:root {
  --bg: #0f1113;
  --bg-soft: #171a1f;
  --text: #ffffff;
  --muted: #ced3da;
  --accent: #c9a66b;
  --accent-2: #7b9d8a;
  --line: rgba(255, 255, 255, 0.16);
  --radius: 16px;
  --container: 1200px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  background: #fff;
  color: #20252d;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.has-hero .site-header {
  position: fixed;
  width: 100%;
}

body.has-hero .site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: rgba(15, 17, 19, 0.95);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent);
  border-radius: 9px;
  position: relative;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid var(--accent-2);
  border-top: none;
  border-radius: 3px;
}

.logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.menu-toggle {
  border: 1px solid var(--line);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: 10px 12px;
}

.site-nav {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  background: rgba(15, 17, 19, 0.98);
  border-top: 1px solid var(--line);
  display: none;
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  margin: 0;
  padding: 16px 4%;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-nav a {
  color: #fff;
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(201, 166, 107, 0.2);
}

.hero {
  min-height: 84vh;
  color: #fff;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px 0 70px;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
}

.hero-content {
  position: relative;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  max-width: 12ch;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #14171c;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

section {
  padding: 72px 0;
}

.section-dark {
  background: var(--bg);
  color: #fff;
}

.section-divider {
  border-top: 1px solid #eceef2;
}

.cards,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.card {
  border: 1px solid #e8eaee;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}

.card-body {
  padding: 22px;
}

.image-cover {
  overflow: hidden;
  position: relative;
}

.image-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-cover:hover img {
  transform: scale(1.08);
}

.overlay-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 17, 19, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
}

.stats {
  display: grid;
  gap: 12px;
}

.stat-item {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: var(--radius);
  padding: 20px;
  color: #20252d;
}

.masonry {
  columns: 1;
  column-gap: 16px;
}

.masonry .tile {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.masonry .tile .tile-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
}

.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 19, 0.58);
}

.parallax .container {
  position: relative;
  color: #fff;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d6dae3;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  font-size: 0.93rem;
  color: #2f6c49;
  min-height: 1.3em;
}

.reviews .review {
  border-bottom: 1px solid #eceef2;
  padding: 14px 0;
}

.stars {
  color: #deab3b;
  letter-spacing: 2px;
}

.site-footer {
  background: #0f1113;
  color: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding: 44px 0 26px;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  max-width: 700px;
}

.footer-brand h3 {
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 0;
  color: #c7ced8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.footer-links a:hover {
  border-color: rgba(201, 166, 107, 0.75);
  background: rgba(201, 166, 107, 0.15);
}

.footer-note {
  color: #9da9b8;
  font-size: 0.92rem;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #15181d;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 50;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry {
    columns: 2;
  }
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    background: transparent;
    border: 0;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 8px;
  }

  .hero {
    min-height: 92vh;
  }

  .masonry {
    columns: 3;
  }
}
