:root {
  --plum: #4A3350;
  --plum-dark: #322038;
  --gold: #BE9574;
  --gold-light: #E7D2BE;
  --cream: #FBF6F2;
  --white: #FFFFFF;
  --ink: #33272E;
  --radius: 10px;
  --shadow: 0 20px 40px -20px rgba(50, 32, 56, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--plum-dark);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--plum);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: var(--plum);
  color: var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
}
.btn-lg { padding: 16px 42px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 51, 80, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { height: 46px; width: auto; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum-dark);
  white-space: nowrap;
}
.brand-text em {
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gold);
  margin-left: 4px;
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum-dark);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--plum-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(50,32,56,0.55) 0%, rgba(50,32,56,0.72) 55%, rgba(50,32,56,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 780px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--plum-dark);
}

/* USP strip */
.usp-strip {
  background: var(--plum);
  color: var(--white);
  padding: 22px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.usp-icon {
  color: var(--gold-light);
  font-weight: 600;
}

/* Sections */
.section { padding: 100px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section-lead {
  max-width: 620px;
  color: #6b5a63;
}

/* Services */
.services { text-align: center; }
.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: #6b5a63; margin-bottom: 0; }
.pricing-note {
  margin-top: 40px;
  font-style: italic;
  color: #8a7a82;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text p { color: #5b4b53; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p {
  max-width: 480px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.85);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid rgba(74,51,80,0.1);
  padding-bottom: 14px;
}
.contact-details strong {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.contact-details a:hover { color: var(--plum); text-decoration: underline; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum-dark);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #ddd0d6;
  border-radius: 6px;
  background: var(--cream);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button { margin-top: 24px; }
.form-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--plum);
}

/* Footer */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-footer a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { justify-content: flex-start; }
  .hero h1 { font-size: 2.1rem; }
  .hero-tagline { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .contact-form { padding: 24px; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  flex-direction: column;
  padding: 20px 24px;
  gap: 18px;
  box-shadow: var(--shadow);
}
