:root {
  --dark: #151313;
  --soft: #2a2422;
  --cream: #f3e8d8;
  --gold: #c9a45c;
  --rose: #b76e79;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(21, 19, 19, 0.95);
  border-bottom: 1px solid rgba(201, 164, 92, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  color: var(--cream);
  transition: 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

/* Home Hero */
.hero {
  min-height: 88vh;
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 70px 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 6px;
  color: rgba(201, 164, 92, 0.55);
  font-size: 14px;
}

.tag,
.page-hero span,
.section-title span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
}

.hero-content h1,
.page-hero h1 {
  font-size: 64px;
  max-width: 760px;
  line-height: 1.05;
  margin: 18px 0;
}

.hero-content p {
  max-width: 580px;
  color: #d8cbbb;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

.primary {
  background: var(--gold);
  color: var(--dark);
}

.secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.hero-card {
  background: var(--soft);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(201, 164, 92, 0.3);
}

.image-box {
  height: 330px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(21, 19, 19, 0.1), rgba(21, 19, 19, 0.7)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
}

/* Common Sections */
.section {
  padding: 80px 8%;
}

.section-title {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-title h2,
.about-layout h2 {
  font-size: 42px;
  margin-top: 14px;
}

.cards,
.service-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.service-card,
.about-box,
.contact-info {
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 92, 0.22);
}

.card h3,
.service-card h3,
.about-box h3,
.contact-info h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--rose);
}

/* Page Hero */
.page-hero {
  padding: 90px 8% 50px;
  background: radial-gradient(circle at top right, rgba(201, 164, 92, 0.18), transparent 35%);
}

/* Gallery */
.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.filter-btn {
  padding: 11px 22px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 30px;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.gallery-item {
  min-height: 230px;
  border-radius: 24px;
  display: flex;
  align-items: end;
  padding: 24px;
  font-weight: bold;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gallery-item:nth-child(1) {
  background-image: linear-gradient(to top, rgba(0,0,0,.75), transparent),
  url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=800&q=80");
}

.gallery-item:nth-child(2) {
  background-image: linear-gradient(to top, rgba(0,0,0,.75), transparent),
  url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=800&q=80");
}

.gallery-item:nth-child(3) {
  background-image: linear-gradient(to top, rgba(0,0,0,.75), transparent),
  url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=800&q=80");
}

.gallery-item:nth-child(4) {
  background-image: linear-gradient(to top, rgba(0,0,0,.75), transparent),
  url("https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&w=800&q=80");
}

.gallery-item:nth-child(5) {
  background-image: linear-gradient(to top, rgba(0,0,0,.75), transparent),
  url("https://images.unsplash.com/photo-1509967419530-da38b4704bc6?auto=format&fit=crop&w=800&q=80");
}

.gallery-item:nth-child(6) {
  background-image: linear-gradient(to top, rgba(0,0,0,.75), transparent),
  url("https://images.unsplash.com/photo-1519014816548-bf5fe059798b?auto=format&fit=crop&w=800&q=80");
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
}

.about-layout p {
  margin-top: 16px;
  color: #d8cbbb;
}

.about-box ul {
  padding-left: 18px;
}

.about-box li {
  margin-bottom: 12px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 35px;
}

.booking-form {
  background: var(--soft);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 92, 0.22);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  background: #1c1817;
  color: var(--cream);
  border-radius: 12px;
  outline: none;
}

.booking-form textarea {
  height: 130px;
  resize: none;
}

#formMessage {
  margin-top: 14px;
  color: var(--gold);
}

footer {
  text-align: center;
  padding: 28px;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  color: #cfc0ae;
}

/* Tablet */
@media (max-width: 1280px) {
  .hero-content h1,
  .page-hero h1 {
    font-size: 52px;
  }

  .hero {
    grid-template-columns: 45px 1fr 0.8fr;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .site-header {
    padding: 18px 6%;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    padding: 22px 8%;
    border-bottom: 1px solid rgba(201, 164, 92, 0.25);
  }

  .nav.show {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 55px 6%;
  }

  .vertical-text {
    writing-mode: horizontal-tb;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .cards,
  .service-grid,
  .gallery-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  .section-title h2 {
    font-size: 32px;
  }
}