@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #0e0c0a;
  --bg-card:    #181410;
  --bg-input:   #1e1a14;
  --bg-hover:   #252018;
  --gold:       #c9a84c;
  --gold-dim:   rgba(201, 168, 76, 0.18);
  --text:       #f0e8d8;
  --text-muted: #8a7d65;
  --border:     rgba(201, 168, 76, 0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600&h=900&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.3) 50%, var(--bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  max-width: 420px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.15s;
}

.btn:hover {
  background: rgba(201, 168, 76, 0.82);
}

.btn:active {
  transform: scale(0.98);
}

.services {
  padding: 6rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.card {
  background: var(--bg-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s;
}

.card:hover {
  background: var(--bg-hover);
}

.card:nth-child(1)::before { content: '01'; }
.card:nth-child(2)::before { content: '02'; }
.card:nth-child(3)::before { content: '03'; }

.card::before {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.35);
  font-family: monospace;
}

.card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.card span {
  display: block;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  color: var(--gold);
}

.booking {
  background: var(--bg-card);
  padding: 6rem 4rem;
}

.booking h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 3rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}

form input,
form select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

form input::placeholder {
  color: rgba(138, 125, 101, 0.5);
}

form input:focus,
form select:focus {
  border-color: var(--gold);
}

form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7d65' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

form select option {
  background: var(--bg-card);
  color: var(--text);
}

form button[type="submit"] {
  grid-column: span 2;
  padding: 1rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.15s;
  margin-top: 0.5rem;
}

form button[type="submit"]:hover {
  background: rgba(201, 168, 76, 0.82);
}

form button[type="submit"]:active {
  transform: scale(0.99);
}

footer {
  padding: 4rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

footer h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-line {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

@media (max-width: 900px) {
  header {
    padding: 1.1rem 1.5rem;
  }

  nav {
    gap: 1.25rem;
  }

  .services {
    padding: 5rem 1.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .booking {
    padding: 5rem 1.5rem;
  }

  form {
    grid-template-columns: 1fr;
  }

  form button[type="submit"] {
    grid-column: span 1;
  }

  footer {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1rem 1.25rem;
  }

  nav {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.65rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}