:root {
  /* COLORS PULLED FROM YOUR IMAGE */
  --ivory: #FDFBF9;       
  --blush: #EBCBC9;       
  --blush-deep: #D4B0B0;
  --sage:  #CCD8D2;       
  --ink:   #2A2A2A;       
  --muted: #6B6B6B;
  --gold:  #C5A059;
  --gold-light: #E5C580; /* Lighter gold for gradient */
  --card:  #FFFFFF;
  --border: rgba(42, 42, 42, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

body { margin: 0; padding: 0; background-color: var(--ivory); }

.scn-lux {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--ivory);
  min-height: 100vh;
}

/* --- HERO LAYOUT --- */
.scn-hero {
  background: linear-gradient(135deg, #F9F1F0 0%, #F3E4E4 100%);
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.scn-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scn-hero-img {
  width: 100%;
  max-width: 900px;
}

.scn-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: block;
  border: 4px solid #fff;
}

h1, h2, .scn-proof-title, .scn-mini-title { font-family: 'Playfair Display', serif; }

.scn-pill {
  display: inline-block; padding: 8px 16px; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px; background: rgba(255, 255, 255, 0.8);
  color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
}

/* --- PROOF BAR --- */
.scn-proof-bar {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scn-proof-item {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  text-align: center;
}
.scn-proof-title { font-size: 16px; display: block; margin-bottom: 5px; color: var(--ink); }
.scn-proof-desc { font-size: 13px; color: var(--muted); font-family: 'Inter', sans-serif;}

/* --- MAIN CONTENT --- */
.scn-wrap { max-width: 1060px; margin: 0 auto; padding: 60px 20px; }
.scn-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.scn-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.scn-card-soft { background: linear-gradient(180deg, rgba(235, 203, 201, 0.15), rgba(204, 216, 210, 0.15)); }

.scn-list-category { margin-bottom: 30px; }
.scn-cat-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 15px; }
.scn-service-item { display: flex; justify-content: space-between; margin-bottom: 12px; }
.scn-item-details { max-width: 80%; }
.scn-item-name { font-weight: 600; display: block; font-size: 16px; }
.scn-item-desc { font-size: 13px; color: var(--muted); display: block; margin-top: 4px; }
.scn-item-price { font-weight: 500; font-size: 15px; text-align: right;}

/* --- NEW GOLD BUTTON STYLE --- */
.scn-btn-tiny {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 16px;
  /* Gold Gradient Background */
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3); /* Soft gold shadow */
  position: relative;
  overflow: hidden;
}

/* The Shine Highlight Effect */
.scn-btn-tiny::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.scn-btn-tiny:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4);
}

.scn-btn-tiny:hover::after {
  left: 100%; /* Moves the shine across on hover */
}

.scn-bullets { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.scn-bullet { display: flex; gap: 15px; }
.dot { min-width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 8px; }

.scn-link { display: inline-block; margin-top: 10px; color: var(--gold); font-weight: 650; text-decoration: none; }
.scn-link:hover { text-decoration: underline; }
.scn-footer { margin-top: 60px; text-align: center; font-size: 13px; color: var(--muted); opacity: 0.6; }

@media(max-width: 900px){
  .scn-hero { padding: 40px 20px; }
  .scn-hero-img { margin: 0; max-width: 100%; }
  .scn-proof-bar { grid-template-columns: 1fr; margin-top: 40px; }
  .scn-grid { grid-template-columns: 1fr; }
}

/* --- EXPANDABLE BOOKING BOX STYLES --- */
.booking-expander {
  display: none; /* Hidden by default */
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  animation: slideDown 0.4s ease-out;
}

.expander-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  margin-top: 40px;
}

.expander-header {
  background: linear-gradient(135deg, #F9F1F0 0%, #F3E4E4 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.expander-header span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}

/* NEW: Big High-Contrast Close Button */
.scn-btn-close-big {
  background: var(--ink); /* Black/Dark Grey */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700; /* Bold */
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.scn-btn-close-big:hover {
  background: #000; /* Darker black on hover */
  transform: translateY(-1px);
}

/* NEW: Footer Section for Second Button */
.expander-footer {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-start; /* Align left */
  border-top: 1px solid rgba(0,0,0,0.05);
}

.booking-expander iframe {
  width: 100%;
  height: 450px; /* Reduced Height to 450px */
  border: none;
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
