:root {
  --black:#0E0E0E;
  --white:#FFFFFF;
  --dove:#D6D6D6;
  --sepia:#C6A78B;
  --champagne:#EAD9B0;
  --ink:#2B2B2B;
  --bg:#FAF9F6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.6;
}

h1,h2,h3,.display {
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing:.2px
}
h1 { font-size:clamp(40px,6vw,64px);margin:0 0 .25rem }
h2 { font-size:clamp(28px,3.6vw,40px);margin:0 0 .75rem }
h3 { font-size:clamp(20px,2.5vw,24px);margin:.25rem 0 .5rem }

a { color: var(--black); text-decoration: none; }

/* Buttons */
.btn {
  display:inline-block;
  padding:14px 22px;
  border-radius:999px;
  font-weight:600;
  text-align:center;
  cursor:pointer;
  border:none;
  transition:background .25s ease, color .25s ease;
  min-width:170px;
}

/* Primary (dark) */
.btn-primary {
  background:#303030;
  color:#fff;
}
.btn-primary:hover { background:#505050; }

/* Secondary (light) */
.btn-secondary {
  background:#f5f5f5;
  color:#303030;
  border:1px solid #d6d6d6;
}
.btn-secondary:hover { background:#e0e0e0; }

/* Ghost (outline) */
.btn-ghost {
  background:transparent;
  border:1px solid currentColor;
  color:inherit;
}
.hero .btn-ghost {
  color:#fff;
  border-color:rgba(255,255,255,.92);
}
.hero .btn-ghost:hover {
  background:rgba(255,255,255,.12);
}

/* Layout */
.container { width:min(1120px,92%); margin-inline:auto; }

header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,249,246,.9);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid #eee;
}
.nav { display:flex;align-items:center;justify-content:space-between;padding:12px 0; }

.brand { display:flex;align-items:center;gap:14px; }
.brand .mark {
  width:36px;height:36px;
  border:2px solid var(--black);
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:700;
}
.brand .name {
  font-family:"Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:20px;
  letter-spacing:.5px;
}

nav a { margin-left:18px;font-weight:600; }

/* Hero */
.hero {
  position:relative;
  min-height:70vh;
  display:grid;
  place-items:center;
  color:var(--white);
}
.hero .inner {
  position:relative;
  text-align:center;
  padding:8vh 2rem;
}
.hero .cta-row {
  margin-top:24px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Sections */
.section { padding:72px 0; }
.card {
  background:var(--white);
  border:1px solid #eee;
  border-radius:20px;
  padding:24px;
  box-shadow:0 8px 30px rgba(0,0,0,.04);
}
.grid { display:grid; gap:24px; }
.band {
  background:var(--black);
  color:var(--white);
  border-radius:20px;
  padding:36px;
}

/* Footer */
footer { padding:36px 0;border-top:1px solid #eee;color:#5A5A5A; }
.footer-grid {
  display:grid;
  gap:16px;
  grid-template-columns:1fr;
}
@media(min-width:760px){
  .footer-grid { grid-template-columns:1fr auto; }
}

/* Gallery */
.gallery {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:12px;
}
.gallery img {
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:14px;
  transition: transform .3s ease;
}
.gallery img:hover { transform:scale(1.03); }

/* Hero fallback */
.hero-fallback {
  background:linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.35)), url('assets/hero-staircase.jpg') center/cover no-repeat;
}

/* Typography helpers */
.kicker { letter-spacing:.22em;font-size:.85rem;opacity:.9; }
.note { font-size:.9rem;color:#666; }

/* Forms */
input,textarea,select {
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #dcdcdc;
  background:#fff;
  font:inherit;
  margin-bottom:16px;
}
textarea{ min-height:120px; }

/* Responsive adjustments */
@media(max-width:600px){
  .hero .cta-row { flex-direction:column; }
  .hero .cta-row .btn { width:100%; }
}