:root {
  --bg: #0f0f0f;
  --surface: #171717;
  --surface-2: #1f1f1f;
  --text: #f5efe8;
  --muted: #b8b0a6;
  --accent: #e0b97a;
  --accent-strong: #c8862f;
  --accent-soft: #7c5e3d;
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #050505 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.6) 100%),
    url('hero.jpg') center/cover;
  background-color: #111;
  padding: 24px 24px 60px;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 8px 0 24px;
}

.brand {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.tagline {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #140e08;
  box-shadow: 0 10px 28px rgba(200, 134, 47, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(200, 134, 47, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(224, 185, 122, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
}

.about p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.service-card--warm {
  background: linear-gradient(135deg, rgba(224, 185, 122, 0.18), rgba(255, 255, 255, 0.04));
}

.service-card--copper {
  background: linear-gradient(135deg, rgba(200, 134, 47, 0.2), rgba(255, 255, 255, 0.04));
}

.service-card--deep {
  background: linear-gradient(135deg, rgba(84, 63, 44, 0.28), rgba(255, 255, 255, 0.04));
}

.service-card--sage {
  background: linear-gradient(135deg, rgba(111, 132, 111, 0.24), rgba(255, 255, 255, 0.04));
}

.service-card--amber {
  background: linear-gradient(135deg, rgba(221, 161, 70, 0.2), rgba(255, 255, 255, 0.04));
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: 1.18rem;
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.booking-cta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: radial-gradient(circle at top, rgba(224, 185, 122, 0.15), transparent 60%);
}

.booking-cta p {
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.footer p,
.map-link {
  color: var(--muted);
}

.map-link {
  display: inline-block;
  margin-top: 8px;
}

.map-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 840px) {
  .service-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 20px 18px 48px;
  }

  .section {
    padding: 72px 18px;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 48px 0 24px;
  }
}
