/* Base */
:root {
  --brand: #d86b82;     /* Sweet Rose */
  --brand-2: #f6b7c4;   /* Blush Pink */
  --accent: #7a3044;    /* Deep Rosewood */
  --ink: rgba(40, 25, 28, 0.92);
  --bg: #fff9f9;
  --bg-alt: #fef3f5;
  --ring: rgba(216, 107, 130, 0.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fffaf6, #fff7f0 30%, #fff3ea 70%);
  line-height:1.65;
}

/* Header & Nav */
.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(1.2) blur(6px);
  background:rgba(255,250,246,.75);
  border-bottom:1px solid #f0e4dc;
  display:flex; align-items:center; justify-content:space-between;
  padding:.6rem 1rem;
}
.brand{display:flex; gap:.6rem; align-items:center; text-decoration:none; color:var(--accent); font-weight:700}
.brand img{width:36px; height:36px; border-radius:8px; object-fit:cover}

.nav{display:flex; gap:1rem}
.nav a{color:var(--accent); text-decoration:none; font-weight:600}
.nav a:hover{opacity:.8}

/* Hamburger */
.hamburger{display:none; background:none; border:0; width:44px; height:38px; position:relative}
.hamburger span{position:absolute; left:8px; right:8px; height:2px; background:var(--accent); transform-origin: left center}
.hamburger span:nth-child(1){top:10px}
.hamburger span:nth-child(2){top:18px}
.hamburger span:nth-child(3){top:26px}

@media (max-width: 900px){
  .nav{position:fixed; inset:56px 0 auto 0; display:flex; flex-direction:column; background:var(--bg); padding:1rem; border-bottom:1px solid #f0e4dc; transform:translateY(-120%); transition:.3s ease}
  .nav.open{transform:translateY(0)}
  .hamburger{display:block}
}

/* Sections */
.section{padding:4.5rem 1rem}
.section.alt{background:var(--bg-alt)}
.container{max-width:1100px; margin:0 auto}
.container.narrow{max-width:820px}
.section-title{
  font-family:'Playfair Display', Georgia, serif;
  color:var(--accent);
  font-size:2.2rem; margin:0 0 1rem 0;
}
.pull{font-style:italic; background:#fff; border-left:4px solid var(--brand); padding:.8rem 1rem; border-radius:6px}

/* Hero */
.hero{padding:6rem 1rem 5rem; background:
 radial-gradient(1200px 400px at 10% -10%, #ffe8e0 0, transparent 60%),
 radial-gradient(1400px 500px at 90% -20%, #ffe3da 0, transparent 65%);
}
.hero-inner{max-width:900px; margin:0 auto; text-align:center}
.hero h1{font-family:'Playfair Display', Georgia, serif; font-size:2.8rem; line-height:1.15; margin:0 0 .6rem}
.lead{font-size:1.125rem; opacity:.9; margin:0 auto 1.2rem; max-width:780px}
.cta-row{display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap}

/* Buttons */
.btn{
  padding:.85rem 1.2rem;
  border-radius:999px;
  border:0;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#231c18; font-weight:700; text-decoration:none; display:inline-block;
  box-shadow:0 8px 24px rgba(179,107,98,.25);
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover{transform:translateY(-2px); box-shadow:0 12px 28px rgba(179,107,98,.35)}
.btn.ghost{background:transparent; border:2px solid var(--brand); color:var(--accent)}

/* Cards */
.cards-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem}
.card{background:#fff; border:1px solid #f0e4dc; border-radius:12px; padding:1.1rem}
.card h3{margin-top:0; color:var(--accent)}
@media (max-width: 900px){ .cards-grid{grid-template-columns:1fr 1fr} }
@media (max-width: 600px){ .cards-grid{grid-template-columns:1fr} }

/* Prices */
.price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; margin:1rem 0 1.5rem}
.price-card{background:#fff; border:1px solid #f0e4dc; border-radius:10px; padding:1rem; display:flex; align-items:center; justify-content:space-between; font-weight:600}
.subhead{margin-top:1.2rem; margin-bottom:.4rem; color:var(--accent)}
.checks{list-style:none; padding-left:0}
.checks li{padding-left:1.4rem; position:relative; margin:.4rem 0}
.checks li::before{content:'✓'; position:absolute; left:0; color:var(--brand); font-weight:700}

/* Gallery */
.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:.6rem}
.gallery-item{border-radius:10px; overflow:hidden; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; background:#fff; border:1px dashed #e8d8cf; color:#b79a90; font-weight:600}
.placeholder{background:repeating-linear-gradient(135deg,#fff,#fff 10px,#fff5f1 10px,#fff5f1 20px)}

/* Form */
.form{background:#fff; border:1px solid #f0e4dc; border-radius:12px; padding:1rem}
.form .row{display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin-bottom:.8rem}
.form label{display:flex; flex-direction:column; font-weight:600; gap:.25rem}
.form input, .form select{
  appearance:none; padding:.75rem .8rem; border:1px solid #eadacf; border-radius:10px;
  background:#fff; outline:3px solid transparent; outline-offset:1px;
}
.form input:focus, .form select:focus{border-color:var(--brand); outline-color:var(--ring)}
@media (max-width: 700px){ .form .row{grid-template-columns:1fr} }

/* Reviews */
.reviews{display:grid; grid-template-columns:1fr 1fr 1fr; gap:.8rem}
.reviews blockquote{background:#fff; border:1px solid #f0e4dc; border-radius:10px; padding:1rem; margin:0}
.reviews cite{display:block; margin-top:.6rem; color:#846e67; font-style:normal; font-weight:600}
@media (max-width: 900px){ .reviews{grid-template-columns:1fr} }

/* Contact */
.contact-grid{display:flex; gap:.6rem; flex-wrap:wrap}
.contact-chip{background:#fff; border:1px solid #f0e4dc; border-radius:999px; padding:.55rem .9rem; text-decoration:none; color:var(--accent); font-weight:700}
.center{text-align:center}
.muted{color:#866e66; opacity:.9}

/* Footer */
.site-footer{padding:2rem 1rem; text-align:center; color:#8f7c75}



/* Gallery refined */
.gallery-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.gallery-3x3 .gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-3x3 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px){
  .gallery-3x3 {grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 600px){
  .gallery-3x3 {grid-template-columns: 1fr;}
}

.hidden { display: none; }



/* Styled Contact Grid */
.contact-grid.styled {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-grid.styled .contact-chip {
  background: linear-gradient(135deg, var(--brand-2), #fff);
  border: 1px solid #eadacf;
  border-radius: 12px;
  padding: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-grid.styled .contact-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}



/* Floating Contact Widget */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  animation: floatPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.2);
  background: rgba(255,255,255,0.95);
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}



/* Section fade-in animation */
.section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}
.section:nth-of-type(odd) { animation-delay: 0.2s; }
.section:nth-of-type(even) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gradient background */
body {
  background: linear-gradient(135deg, #fff9f9 0%, #fef3f5 40%, #fde6ec 100%);
}

/* Section titles with underline accent */
.section-title {
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}

/* Button polish */
.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #231c18;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(216, 107, 130, 0.35);
}
.btn:hover {
  box-shadow: 0 12px 26px rgba(216, 107, 130, 0.55), 0 0 12px rgba(255, 192, 203, 0.8);
}

/* Gallery hover zoom with rose glow */
.gallery-3x3 img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-3x3 img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(216, 107, 130, 0.3);
}

/* Floating contact button glow */
.float-btn {
  border: 2px solid rgba(216,107,130,0.6);
}
.float-btn:hover {
  box-shadow: 0 0 12px rgba(216,107,130,0.8);
}
