:root{
  --bg: #fbf7f0;
  --text: #111111;
  --muted: #6a6a6a;
  --card: #ffffff;
  --border: #e7ddd0;
  --brand: #111111;
  --brand-dark:#000000;
  --accent: #d8c3a5; /* beige */
  --accent-2: #efe6da;
  --shadow: 0 18px 55px rgba(17,17,17,0.08);
  --shadow-sm: 0 10px 30px rgba(17,17,17,0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1200px;
  --pad: 2rem;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter', -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
.section{padding:3rem 0}
.section.alt{background:var(--accent-2)}
.section-header{text-align:center;margin-bottom:3rem}
.section-header h2{font-size:2.5rem;margin-bottom:0.9rem}
.section-header p{font-size:1.1rem;color:var(--muted);max-width:700px;margin:0 auto}

/* Header */
header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 18px rgba(17,17,17,0.06);
  backdrop-filter:saturate(160%) blur(10px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.2rem 0;
  gap:1rem;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .logo{
  font-size:1.95rem;
  font-weight:600;
  font-family: 'Playfair Display', Georgia, serif;"
  color:var(--brand);
  letter-spacing:-0.2px;
}
.brand .subtitle{
  font-size:1.1rem;
  color:var(--muted);
  font-family: "Brush Script MT", "Brush Script Std", "Segoe Script", "Snell Roundhand", cursive;
  font-style:italic;
  margin-top:0.15rem;
}
.nav-links{
  display:flex;
  gap:1.7rem;
  list-style:none;
  align-items:center;
}
.nav-links a{
  text-decoration:none;
  font-weight:600;
  color:var(--text);
  opacity:0.92;
  transition:opacity .2s,color .2s;
}
.nav-links a:hover{color:var(--brand);opacity:1}
.nav-links a.active{color:var(--brand);opacity:1}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--brand);
  color:#fff;
  padding:0.78rem 1.1rem;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:0.2px;
  transition:transform .2s, background .2s, box-shadow .2s;
  box-shadow:0 14px 30px rgba(17,17,17,0.16);
}
.cta:hover{background:var(--brand-dark);transform:translateY(-1px)}

/* Mobile */
.hamburger{
  display:none;
  background:transparent;
  border:0;
  padding:0.5rem;
  border-radius:10px;
}
.hamburger:focus{outline:2px solid rgba(124,82,149,0.35); outline-offset:3px}
.hamburger svg{width:26px;height:26px}

.mobile-panel{
  display:none;
  padding:0 0 1.1rem 0;
}
.mobile-panel.open{display:block}
.mobile-panel a{
  display:block;
  padding:0.8rem 0;
  text-decoration:none;
  font-weight:700;
  color:var(--text);
  border-top:1px solid var(--border);
}
.mobile-panel a:last-child{border-bottom:1px solid var(--border)}
.mobile-panel a:hover{color:var(--brand)}

/* Hero */
.hero{
  padding:6.2rem 0 2.5rem;
  color:var(--text);
  background:linear-gradient(180deg, #ffffff 0%, var(--accent-2) 100%);
}
.hero .inner{max-width:920px;margin:0 auto;text-align:center}
.hero h1{
  font-size:3.05rem;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-0.8px;
  margin-bottom:1.05rem;
}
.hero p{font-size:1.18rem;color:var(--muted);margin-bottom:2rem}
.hero .actions{
  display:flex;
  gap:0.9rem;
  justify-content:center;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  padding:0.98rem 1.45rem;
  transition:transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  letter-spacing:0.2px;
}
.btn.primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 18px 40px rgba(17,17,17,0.16);
}
.btn.primary:hover{transform:translateY(-2px);background:#000}
.btn.secondary{
  background:transparent;
  color:var(--brand);
  border:1.5px solid rgba(17,17,17,0.55);
}
.btn.secondary:hover{
  background:rgba(17,17,17,0.04);
  border-color:rgba(17,17,17,0.75);
}

/* Grids / cards */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow-sm);
  transition:transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:rgba(17,17,17,0.10)}
.card h3{font-size:1.35rem;margin-bottom:0.8rem}
.card p{color:var(--muted);margin-bottom:1rem}
.card .icon{font-size:2.4rem;margin-bottom:0.6rem}
.checklist{list-style:none}
.checklist li{
  color:var(--muted);
  padding:0.45rem 0 0.45rem 1.5rem;
  position:relative;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--brand);
  font-weight:900;
}

/* Process */
.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:1.5rem;
  max-width:1050px;
  margin:0 auto;
}
.step{
  text-align:center;
  padding:1.2rem 1rem;
}
.bubble{
  width:58px;height:58px;
  margin:0 auto 1rem;
  background:var(--accent);
  border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  color:var(--brand);
  font-weight:900;font-size:1.25rem;
  box-shadow:0 16px 36px rgba(17,17,17,0.10);
}
.step h3{margin-bottom:0.45rem}
.step p{color:var(--muted)}

/* Testimonials */
.quote{font-style:italic;color:var(--muted);line-height:1.8;margin:0.85rem 0 1.2rem}
.stars{color:#111;letter-spacing:2px;opacity:0.9}
.person{font-weight:800}
.small{color:var(--muted);font-size:0.95rem}

/* Pricing */
.price{font-size:2.3rem;font-weight:900;color:var(--brand);margin:0.2rem 0 0.2rem}
.badge{
  position:absolute;top:-12px;left:50%;
  transform:translateX(-50%);
  background:var(--accent);
  color:#111;
  padding:0.35rem 1.1rem;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:900;
  border:1px solid rgba(17,17,17,0.08);
}
.pricing-card{position:relative}
.pricing-card.featured{border-color:rgba(124,82,149,0.6); box-shadow:0 10px 28px rgba(124,82,149,0.16)}

/* CTA band */
.band{
  background:#111;
  color:#fff;
  text-align:center;
}
.band h2{font-size:2.35rem;margin-bottom:0.8rem;letter-spacing:-0.5px}
.band p{font-size:1.12rem;opacity:0.90;margin-bottom:1.6rem;color:rgba(255,255,255,0.85)}

/* Contact */
.contact-wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:1.5rem;
  align-items:start;
}
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow-sm);
}
.field{margin-bottom:1rem}
label{display:block;font-weight:800;margin-bottom:0.35rem}
input, select, textarea{
  width:100%;
  padding:0.85rem 0.9rem;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:1rem;
  font-family:inherit;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(124,82,149,0.55);
  box-shadow:0 0 0 4px rgba(124,82,149,0.12);
}
textarea{min-height:130px;resize:vertical}
.form-actions{
  display:flex;
  gap:0.8rem;
  align-items:center;
  flex-wrap:wrap;
}
button{
  border:0;
  cursor:pointer;
  font-family:inherit;
}
.btn-submit{
  background:var(--brand);
  color:#fff;
  padding:0.95rem 1.2rem;
  border-radius:12px;
  font-weight:900;
  transition:transform .2s, background .2s;
}
.btn-submit:hover{background:var(--brand-dark);transform:translateY(-1px)}
.note{
  color:var(--muted);
  font-size:0.95rem;
}
.status{
  margin-top:0.9rem;
  padding:0.9rem 1rem;
  border-radius:12px;
  border:1px solid var(--border);
  background:#f8f9fa;
  color:var(--text);
  display:none;
}
.status.show{display:block}
.status.ok{border-color:rgba(46, 204, 113, 0.35); background:rgba(46, 204, 113, 0.08)}
.status.bad{border-color:rgba(231, 76, 60, 0.35); background:rgba(231, 76, 60, 0.08)}
.card-lite{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.6rem;
  box-shadow:var(--shadow-sm);
}
.kv{display:grid;gap:0.55rem}
.kv div{display:flex;gap:0.6rem;align-items:flex-start}
.kv span{opacity:0.9}
.kv strong{min-width:1.4rem}

/* Footer */
footer{
  background:#0f0f10;
  color:#fff;
}
.footer{
  padding:3rem 0 1.5rem;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}
.footer h3{color:var(--accent);margin-bottom:0.8rem}
.footer a{color:#ecf0f1;text-decoration:none;display:block;margin-bottom:0.5rem}
.footer a:hover{color:var(--accent)}
.footer p{color:#ecf0f1;margin-bottom:0.5rem}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  padding:1.2rem 0;
  text-align:center;
  color:rgba(255,255,255,0.7);
  font-size:0.95rem;
}

/* Utility */
.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  left:1rem;top:1rem;width:auto;height:auto;z-index:9999;
  background:#fff;padding:0.8rem 1rem;border-radius:12px;
  box-shadow:var(--shadow);
}

/* Responsive tweaks */
@media (max-width: 920px){
  .contact-wrap{grid-template-columns:1fr}
}
@media (max-width: 820px){
  :root{--pad:1.25rem}
  .nav-links{display:none}
  .hamburger{display:inline-flex}
  .hero h1{font-size:2.15rem}
  .hero p{font-size:1.1rem}
  .section-header h2{font-size:2rem}
}
/* Gallery */
.gallery-controls{
  display:flex;
  gap:0.75rem;
  justify-content:center;
  flex-wrap:wrap;
  margin:1.2rem 0 2rem;
}
.pill{
  border:1px solid var(--border);
  background:#fff;
  padding:0.62rem 1rem;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:transform .15s, border-color .15s, color .15s, background .15s;
}
.pill:hover{transform:translateY(-1px)}
.pill.active{
  border-color:rgba(17,17,17,0.28);
  color:var(--brand);
  background:rgba(216,195,165,0.35);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.gallery-item{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform .2s, box-shadow .2s;
  background:#fff;
  text-decoration:none;
}
.gallery-item:hover{transform:translateY(-3px); box-shadow:var(--shadow)}
.gallery-item img{width:100%;height:220px;object-fit:cover;display:block}
.gallery-caption{
  padding:0.85rem 0.95rem;
  color:var(--muted);
  font-size:0.95rem;
}
.tag{
  display:inline-block;
  font-size:0.8rem;
  font-weight:900;
  padding:0.2rem 0.6rem;
  border-radius:999px;
  border:1px solid var(--border);
  margin-right:0.5rem;
  color:var(--text);
  opacity:0.9;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:1.5rem;
  z-index:9999;
}
.lightbox.open{display:flex}
.lightbox-inner{
  max-width:min(1100px, 96vw);
  max-height:86vh;
  position:relative;
}
.lightbox img{
  max-width:100%;
  max-height:86vh;
  display:block;
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,0.35);
}
.lightbox-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:42px;
  height:42px;
  border-radius:999px;
  background:#fff;
  border:0;
  font-weight:900;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.lightbox-close:focus{outline:2px solid rgba(255,255,255,0.5); outline-offset:3px}

/* Hero media */
.hero .container{position:relative}
.hero-media{margin-top:2.25rem;display:flex;justify-content:center}
.hero-media img{
  width:min(980px,100%);
  border-radius:24px;
  box-shadow:0 26px 70px rgba(17,17,17,0.20);
  border:1px solid rgba(17,17,17,0.08);
}

/* Media cards */
.card-media{padding:0;overflow:hidden}
.card-media .card-img{display:block;width:100%;height:220px;object-fit:cover}
.card-media h3{padding:1rem 1.25rem 0;margin:0}
.card-media p{padding:0.6rem 1.25rem 1.25rem;margin:0}

/* Spaces section spacing */
#spaces .cards{
  gap: 0.9rem;
  align-items: stretch;
}
#spaces .card-media{
  height: 100%;
}
#spaces .card-media .card-img{
  height: 210px;
}


h1,h2{font-family:'Playfair Display', Georgia, serif;}

/* Minimal inline icons (replaces emojis) */
.mi{
  display:inline-flex;
  width:1.05em;
  height:1.05em;
  vertical-align:-0.15em;
  margin-right:0.45rem;
  color:var(--brand);
  opacity:0.95;
}
.mi svg{width:100%;height:100%}

}

/* Brand logo image */
.logo-img{
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo{
  height: 34px;
  margin-bottom: 0.35rem;
}
@media (min-width: 900px){
  .logo-img{height: 44px;}
  .footer-logo{height: 38px;}
}


/* Brand mark (Brush Script MT) */
.brand-mark{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--brand);
  display: inline-block;
}
.footer-mark{
  color: #fff;
}
@media (min-width: 900px){
  .brand-mark{font-size: 2.2rem;}
}

/* Hero brand mark sizing */
.hero-mark{
  font-size: 1.15em;
  vertical-align: baseline;
  color: var(--brand);
  font-weight: 500;
}
@media (min-width: 900px){
  .hero-mark{font-size: 1.25em;}
}
