:root {
  --cream: #f8f3e9;
  --cream-2: #efe4cf;
  --gold: #c8a24a;
  --gold-dark: #a27e2d;
  --text: #1a1712;
  --muted: #5e5446;
  --white: #ffffff;
  --card: rgba(255,255,255,0.75);
  --border: rgba(200,162,74,0.28);
  --shadow: 0 18px 45px rgba(26, 23, 18, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--cream) 0%, #fcfaf4 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(248,243,233,0.88);
  border-bottom: 1px solid rgba(26,23,18,0.06);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 72px;
  height: auto;
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 0.98rem;
  font-weight: 500;
}

.site-nav a:hover { color: var(--gold-dark); }

.hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(200,162,74,0.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  margin: 0 0 16px;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.55rem; }

.hero-text,
.section p,
.service-card p,
.step p,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-actions,
.quick-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d8b86f 100%);
  color: #111;
  box-shadow: 0 10px 24px rgba(200,162,74,0.25);
}

.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-card,
.info-card,
.service-card,
.step,
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 32px;
  overflow: hidden;
}

.hero-card-inner {
  padding: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(239,228,207,0.86));
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 2;
}

.section { padding: 80px 0; }
.section.alt { background: rgba(239,228,207,0.32); }
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.info-card {
  border-radius: 28px;
  padding: 28px;
}

.detail-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li,
.footer-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,23,18,0.08);
}

.service-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  border-radius: 26px;
  padding: 28px;
}

.steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  border-radius: 26px;
  padding: 28px;
}

.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(200,162,74,0.18);
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.booking-form {
  border-radius: 30px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(26,23,18,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255,255,255,0.92);
}

textarea { resize: vertical; }
.full-width { width: 100%; margin-top: 18px; }
.hidden-field { display: none; }

.site-footer {
  background: #17120c;
  color: #f7f0df;
  padding: 58px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

.footer-copy,
.footer-list li,
.footer-list a { color: rgba(247,240,223,0.82); }
.footer-list li { border-color: rgba(247,240,223,0.1); }

@media (max-width: 920px) {
  .site-nav { display: none; }
  .hero-grid,
  .two-col,
  .form-wrap,
  .service-grid,
  .steps,
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand-logo { width: 58px; }
  .brand-text { font-size: 1.45rem; }
  .hero { padding-top: 40px; }
  .container { width: min(100% - 24px, 1120px); }
  .hero-actions,
  .quick-links,
  .hero-contact { flex-direction: column; align-items: stretch; }
}
