:root {
  --bg-dark: #111217;
  --bg-light: #f7f4ef;
  --accent-gold: #d4a85f;
  --accent-gold-soft: #f0d7a0;
  --text-main: #222222;
  --text-muted: #777777;
  --white: #ffffff;
  --nav-height: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: var(--bg-dark);
  color: var(--accent-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

section {
  padding: 4rem 0;
}

h1, h2, h3 {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 18, 23, 0.96);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 52px;
  width: auto;
  margin-top: 4px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
}

nav a:hover {
  color: var(--accent-gold);
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #2a2b35 0, #111217 55%, #050609 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-logo {
  height: 210px;
  width: auto;
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5dfd3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

/* Packages */
.packages {
  background: #f0ebe2;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* Testimonials */
.testimonials {
  background: var(--bg-dark);
  color: var(--white);
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 800px) {
  .hero-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  header {
    position: static;
  }

  nav ul {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

.cookie-consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 999;
  background: rgba(17, 18, 23, 0.96);
  border: 1px solid rgba(212, 168, 95, 0.45);
  border-radius: 14px;
  color: var(--white);
  padding: 12px 14px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
}

.cookie-consent-banner p {
  margin: 0;
  line-height: 1.4;
  color: inherit;
  flex: 1;
}

.cookie-consent-banner a.cookie-consent-settings {
  color: var(--accent-gold-soft);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  border: 1px solid rgba(212, 168, 95, 0.6);
  background: rgba(17, 18, 23, 0.85);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-consent-btn:hover {
  background: rgba(212, 168, 95, 0.16);
}

.cookie-consent-hidden {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

@media (max-width: 800px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
