
:root {
  --cream: #fdf6f8; --cream-soft: #f8e8ee; --dark: #4a1f2e; --mid: #6b3045; --light: #9b5a72;
  --gold: #d4a574; --gold-soft: #e8c4a0; --text: #3d1f2a; --danger: #b91c1c;
  --white: #fff; --shadow: 0 12px 32px rgba(74, 31, 46, 0.14);
  --radius: 0.65rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Montserrat, sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; }
h1, h2, h3, .logo { font-family: "Cormorant Garamond", serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 90px; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--dark); color: var(--white); padding: 0.65rem 1rem; }
.skip-link:focus { left: 1rem; }
.navbar { position: fixed; inset: 0 0 auto 0; z-index: 1000; background: rgba(74, 31, 46, 0.92); border-bottom: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(6px); transition: 0.3s; }
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-content { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: relative; }
.logo { display: inline-flex; align-items: center; gap: 0.45rem; color: #fdf6f8; font-weight: 700; font-size: 1.05rem; }
.logo-mark { font-size: 1.25rem; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; }
.nav-links a { color: #fdf6f8; font-weight: 600; }
.nav-links a:hover { color: var(--gold-soft); }
.menu-toggle { display: none; border: 1px solid rgba(128,128,128,0.35); background: transparent; padding: 0.4rem; border-radius: 6px; cursor: pointer; }
.menu-toggle span { display: block; width: 1.2rem; height: 2px; background: #fdf6f8; margin: 0.2rem 0; }
.hero { min-height: 90vh; display: grid; align-items: center; padding: 6.5rem 0 4rem; color: var(--white); background-size: cover; background-position: center; }
.hero-content { max-width: 640px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 700; color: var(--gold-soft); margin-bottom: 0.75rem; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.12; margin: 0; }
.hero p { font-size: 1.05rem; margin: 1rem 0 1.5rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn { display: inline-flex; padding: 0.72rem 1.25rem; font-weight: 700; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; transition: 0.2s; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.75); color: #fff; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--cream-soft); }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 { margin: 0; color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.left-align { text-align: left; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.25s; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { height: 200px; object-fit: cover; width: 100%; }
.product-copy { padding: 1rem; }
.product-copy h3 { margin: 0; color: var(--dark); font-size: 1.05rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.service-card { background: var(--white); padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.about-image-wrap img { border-radius: var(--radius); min-height: 300px; object-fit: cover; box-shadow: var(--shadow); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 1.5rem; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 0.5rem; color: var(--mid); }
.map-wrap { margin-top: 1rem; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-card { background: var(--white); padding: 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { display: grid; gap: 0.35rem; margin-bottom: 0.85rem; }
input, textarea { width: 100%; padding: 0.65rem; border: 1px solid rgba(0,0,0,0.2); border-radius: calc(var(--radius) * 0.7); font: inherit; }
input.invalid, textarea.invalid { border-color: var(--danger); }
.form-feedback { min-height: 1.2rem; font-weight: 600; margin-top: 0.5rem; }
.form-feedback.error { color: var(--danger); }
.site-footer { background: var(--dark); color: var(--cream); padding: 2rem 0 1rem; }
.footer-content { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.social-links { list-style: none; padding: 0; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.copyright { text-align: center; margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem; }

.demo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  padding: 0.55rem 1rem;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.82rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}
.demo-bar p { margin: 0; }
.demo-bar a {
  color: #38bdf8;
  font-weight: 700;
  text-decoration: underline;
}
body { padding-bottom: 3.1rem; }


.hero-editorial { min-height: 88vh; background-size: cover; background-position: center; display: grid; align-items: end; padding: 6rem 0 4rem; color: #fff; }
.hero-editorial-inner { max-width: 720px; }
.hero-editorial h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 600; }
.navbar { background: transparent; position: absolute; }
.navbar.scrolled { background: rgba(15,15,15,0.85); }

@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .nav-links { display: none; position: absolute; top: 100%; right: 0; background: var(--dark); flex-direction: column; padding: 1rem; border-radius: 0.5rem; min-width: 200px; }
  .nav-links.open { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
