:root {
  --black: #111111;
  --white: #ffffff;
  --ivory: #fbf8f2;
  --beige: #f3e9dc;
  --taupe: #bbafa3;
  --gold: #c8a86a;
  --dark-gold: #a98943;
  --muted: #5f5952;
  --border: rgba(200, 168, 106, 0.35);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 5vw;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(187, 175, 163, 0.3);
  backdrop-filter: blur(16px);
}
.brand, .footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  white-space: nowrap;
}
.brand em, .footer-brand em, h1 em { color: var(--dark-gold); font-style: italic; font-weight: 500; margin: 0 0.18em; }
.nav { display: flex; gap: 26px; align-items: center; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; }
.nav a { transition: color 0.2s ease; }
.nav a:hover { color: var(--dark-gold); }
.header-button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 12px 22px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  cursor: pointer;
}
.header-button { color: var(--dark-gold); }
.button.primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.button.secondary { background: transparent; color: var(--dark-gold); }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 1.6rem; }

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 5vw;
  gap: 5vw;
  overflow: hidden;
}
.eyebrow {
  color: var(--dark-gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  font-size: 0.72rem;
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.06;
  margin: 0;
}
h1 { font-size: clamp(4rem, 9vw, 9rem); font-weight: 500; letter-spacing: -0.05em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.4rem); font-weight: 500; letter-spacing: -0.04em; }
h3 { font-size: 1.55rem; font-weight: 500; }
.divider { width: min(430px, 100%); height: 1px; background: var(--gold); margin: 32px 0 22px; position: relative; }
.divider span, .small-divider::after { content: ''; position: absolute; width: 10px; height: 10px; background: var(--gold); border-radius: 999px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.tagline { font-size: clamp(1rem, 1.5vw, 1.35rem); letter-spacing: 0.22em; }
.hero-text { max-width: 620px; color: var(--muted); font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-image { border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--white); padding: 14px; transform: rotate(1deg); }

.section { padding: 90px 5vw; }
.split { display: grid; grid-template-columns: 0.9fr 1fr; gap: 6vw; align-items: center; }
.section-copy p { color: var(--muted); max-width: 670px; }
.small-divider { width: 160px; height: 1px; background: var(--gold); margin: 24px 0; position: relative; }
.image-card { background: var(--white); padding: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.centered { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.centered-line { margin-left: auto; margin-right: auto; }
.centered p { color: var(--muted); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-card {
  min-height: 270px;
  background: linear-gradient(135deg, var(--beige), var(--white));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(17,17,17,0.04);
}
.placeholder {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--dark-gold);
}
.service-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card, .price-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--border);
  padding: 34px;
  box-shadow: 0 12px 30px rgba(17,17,17,0.04);
}
.service-icon { color: var(--gold); letter-spacing: 0.2em; font-weight: 600; }
.service-card p, .price-card p { color: var(--muted); }
.price { font-family: 'Playfair Display', Georgia, serif; font-size: 2.5rem; color: var(--dark-gold) !important; margin: 18px 0 10px; }
.featured { background: var(--white); box-shadow: var(--shadow); transform: translateY(-10px); }

.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(28px, 5vw, 70px);
  box-shadow: var(--shadow);
}
.contact-card p, .contact-list { color: var(--muted); }
.contact-list { list-style: none; padding: 0; }
.booking-form { display: grid; gap: 16px; }
label { display: grid; gap: 6px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dark-gold); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(187, 175, 163, 0.55);
  background: var(--ivory);
  padding: 14px 16px;
  font: inherit;
  color: var(--black);
  outline-color: var(--gold);
}
textarea { resize: vertical; }
.footer { text-align: center; padding: 52px 5vw; border-top: 1px solid rgba(187, 175, 163, 0.3); color: var(--muted); }
.footer-brand { color: var(--black); }

@media (max-width: 950px) {
  .nav, .header-button { display: none; }
  .nav-toggle { display: block; }
  .nav.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: flex-start; padding: 24px 5vw; background: var(--ivory); border-bottom: 1px solid var(--border); }
  .hero, .split, .contact-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 70px; }
  .service-grid, .pricing-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .site-header { padding: 18px 5vw; }
  .service-grid, .pricing-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .tagline { letter-spacing: 0.12em; }
  .hero-actions .button { width: 100%; }
}
