:root{
  --ivory:#fbf7f2;
  --cream:#fffaf5;
  --ink:#1f2328;
  --muted:#5c6670;

  /* logo-inspired accents */
  --blush:#f3a6a6;
  --coral:#f08f8f;
  --sage:#91b69a;
  --sage-dark:#5d8f6e;

  /* luxury accent */
  --gold:#c9a86a;

  --card:#ffffffcc;
  --line:#e9dfd4;

  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --shadow-soft: 0 10px 25px rgba(0,0,0,.08);

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 18% 10%, rgba(240,143,143,.20), transparent 60%),
    radial-gradient(900px 500px at 82% 18%, rgba(145,182,154,.22), transparent 60%),
    linear-gradient(180deg, var(--ivory), #ffffff);
  min-height:100vh;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.section{padding:72px 0}
.section.tight{padding:52px 0}

.kicker{
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--sage-dark);
  font-weight:600;
}

.h1,.h2,.h3{
  font-family:"Playfair Display", Georgia, serif;
  margin:10px 0 0 0;
  line-height:1.12;
}
.h1{font-size:46px}
.h2{font-size:34px}
.h3{font-size:24px}

p{color:var(--muted);line-height:1.75;margin:14px 0}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(201,168,106,.35);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  box-shadow:0 10px 18px rgba(0,0,0,.05);
  font-size:13px;
}
.dot{
  width:9px;height:9px;border-radius:50%;
  background:linear-gradient(180deg, var(--gold), #e0c18b);
}

.card{
  background:var(--card);
  border:1px solid rgba(233,223,212,.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:22px;
  backdrop-filter: blur(8px);
}

.grid{
  display:grid;
  gap:18px;
}
.grid.two{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid.three{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid.four{grid-template-columns:repeat(4, minmax(0,1fr))}

@media (max-width: 980px){
  .h1{font-size:38px}
  .grid.two,.grid.three,.grid.four{grid-template-columns:1fr}
}

/* =========================
   Header
========================= */

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fbf7f2; /* solid ivory */
  border-bottom:1px solid rgba(201,168,106,.15);
}


.navwrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 0; /* balanced for 90px logo */
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:auto;
}

.brand img{
  height:90px;
  max-height:90px;
  width:auto;
  object-fit:contain;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
  filter: contrast(1.08) saturate(1.05);
}




/* =========================
   Navigation (Boutique Style)
========================= */

.nav{
  display:flex;
  align-items:center;
  gap:16px; /* was 22px */
  flex-wrap:wrap;
  justify-content:flex-end;
}


.nav a{
  font-family:"Playfair Display", Georgia, serif;
  font-size:14px; /* was 15px */
  font-weight:500;
  letter-spacing:.05em;
  position:relative;
  padding:2px 0; /* was 4px */
  color:var(--ink);
  transition:all .25s ease;
}


/* Elegant gold underline */
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg, var(--gold), #e0c18b);
  transition:width .3s ease;
}

.nav a:hover::after{
  width:100%;
}

.nav a:hover{
  color:var(--sage-dark);
}

.nav a.active{
  color:var(--sage-dark);
}

.nav a.active::after{
  width:100%;
}

/* =========================
   Gold CTA Button
========================= */
/* Refined Boutique Gold CTA */

.nav a.nav-cta{
  padding:7px 16px;
  border-radius:999px;
  background:#b9924c; /* champagne gold */
  border:1px solid #a67c2d;
  color:#ffffff;
  font-weight:600;
  letter-spacing:.06em;
  box-shadow:0 6px 18px rgba(166,124,45,.25);
  transition:all .25s ease;
}

.nav a.nav-cta::after{
  display:none; /* remove underline */
}

.nav a.nav-cta:hover{
  background:#a67c2d;
  box-shadow:0 10px 24px rgba(166,124,45,.35);
  transform:translateY(-1px);
}

.nav a.nav-cta.active{
  background:#b9924c;
  color:#ffffff;
}

/* =========================
   Mobile
========================= */

.menuBtn{
  display:none;
  border:1px solid rgba(233,223,212,.95);
  background:rgba(255,255,255,.72);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
}

@media (max-width: 980px){

  .brand img{
    height:70px;
    max-height:70px;
  }

  .menuBtn{
    display:inline-flex;
    align-items:center;
    gap:8px;
  }

  .nav{
    display:none;
    width:100%;
    padding:10px 0;
  }

  .nav.open{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }

  .nav a{
    width:100%;
    text-align:left;
  }

  .nav a.nav-cta{
    margin-top:10px;
  }
}




/* Hero */
.hero{
  padding:66px 0 30px 0;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
}

.heroPanel{
  border-radius:var(--radius-lg);
  padding:30px;
  background:
    radial-gradient(700px 320px at 12% 12%, rgba(240,143,143,.22), transparent 60%),
    radial-gradient(700px 320px at 88% 20%, rgba(145,182,154,.25), transparent 60%),
    rgba(255,255,255,.72);
  border:1px solid rgba(233,223,212,.9);
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}

.heroActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(233,223,212,.95);
  background:rgba(255,255,255,.72);
  font-weight:600;
  font-size:14px;
}
.btn.primary{
  background:linear-gradient(180deg, rgba(240,143,143,.9), rgba(240,143,143,.75));
  border-color:rgba(240,143,143,.45);
  color:#2a1d1d;
}
.btn.gold{
  background:linear-gradient(180deg, rgba(201,168,106,.92), rgba(201,168,106,.72));
  border-color:rgba(201,168,106,.55);
  color:#231b10;
}

.heroMedia{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(233,223,212,.95);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.65);
  position:relative;
}
.heroMedia .overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08), transparent 30%, rgba(0,0,0,.06));
  pointer-events:none;
}
.heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:320px;
}
.heroMedia .caption{
  position:absolute;
  bottom:14px;left:14px;right:14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(233,223,212,.9);
  backdrop-filter: blur(10px);
}
.caption strong{
  font-family:"Playfair Display", Georgia, serif;
}
.caption small{display:block;color:var(--muted);margin-top:4px}

/* Lists */
.iconList{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.iconItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.icon{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;place-items:center;
  background:rgba(145,182,154,.20);
  border:1px solid rgba(145,182,154,.35);
  flex:0 0 auto;
}
.icon.pink{
  background:rgba(240,143,143,.16);
  border-color:rgba(240,143,143,.28);
}
.icon.gold{
  background:rgba(201,168,106,.18);
  border-color:rgba(201,168,106,.35);
}

/* Gallery */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){
  .galleryGrid{grid-template-columns:1fr}
}
.photo{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(233,223,212,.95);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow-soft);
}
.photo img{
  width:100%;
  height:240px;
  object-fit:cover;
}
.photo .meta{
  padding:12px 14px;
  color:var(--muted);
  font-size:13px;
}

/* Forms */
form{display:grid;gap:12px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(233,223,212,.95);
  background:rgba(255,255,255,.78);
  font-family:inherit;
  font-size:14px;
  outline:none;
}
textarea{min-height:120px;resize:vertical}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){
  .split{grid-template-columns:1fr}
}

/* Footer */
.footer{
  border-top:1px solid rgba(233,223,212,.9);
  background:rgba(251,247,242,.70);
  padding:28px 0;
}
.footer small{color:var(--muted)}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
@media (max-width:980px){
  .footerGrid{grid-template-columns:1fr}
}
.hr{height:1px;background:rgba(233,223,212,.9);margin:14px 0}

#formStatus{ font-size:14px; color:var(--muted); }

/* ===== FORM VALIDATION STYLES ===== */

input.error,
select.error,
textarea.error {
  border-color: #f08f8f !important; /* your coral tone */
  box-shadow: 0 0 0 3px rgba(240, 143, 143, 0.15);
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ===== TRUST / COMPLIANCE CARD SECTION ===== */

.compliance-card {
  margin-top: 22px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.compliance-item {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(233, 223, 212, 0.95);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.compliance-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 168, 106, 0.16);
  border: 1px solid rgba(201, 168, 106, 0.35);
  margin-bottom: 12px;
  font-size: 20px;
}

.compliance-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

.compliance-item small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.compliance-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(145, 182, 154, 0.14);
  border: 1px solid rgba(145, 182, 154, 0.30);
  color: var(--muted);
}

.compliance-note strong {
  color: var(--ink);
}

@media (max-width: 800px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

/*thi sis for the booking button*/
/* =========================
   Tour / Booking Invite Card
========================= */

.tour-invite {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg,
    rgba(201,168,106,.13) 0%,
    rgba(145,182,154,.10) 100%);
  border: 1px solid rgba(201,168,106,.30);
  border-radius: 18px;
  padding: 22px 20px;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(201,168,106,.10);
  transition: box-shadow .3s ease;
}

.tour-invite:hover {
  box-shadow: 0 14px 36px rgba(201,168,106,.18);
}

.tour-invite__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-invite__body {
  flex: 1;
}

.tour-invite__title {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

.tour-invite__sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.tour-invite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Primary tour button — warm gold */
.btn.tour-btn-primary {
  background: linear-gradient(160deg, #c9a86a, #b9924c);
  border: 1px solid rgba(166,124,45,.40);
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 20px;
  box-shadow: 0 6px 18px rgba(166,124,45,.25);
  transition: all .25s ease;
}

.btn.tour-btn-primary:hover {
  background: linear-gradient(160deg, #b9924c, #a67c2d);
  box-shadow: 0 10px 28px rgba(166,124,45,.35);
  transform: translateY(-1px);
  opacity: 1;
}

/* Ghost tour button — sage outline */
.btn.tour-btn-ghost {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(145,182,154,.50);
  color: var(--sage-dark);
  font-weight: 500;
  padding: 10px 20px;
  transition: all .25s ease;
}

.btn.tour-btn-ghost:hover {
  background: rgba(145,182,154,.12);
  border-color: rgba(145,182,154,.75);
  transform: translateY(-1px);
  opacity: 1;
}

/* Mobile */
@media (max-width: 640px) {
  .tour-invite {
    flex-direction: column;
    gap: 10px;
  }

  .tour-invite__actions {
    flex-direction: column;
  }

  .btn.tour-btn-primary,
  .btn.tour-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================
   Care Assessment Page
========================= */

.care-assessment-card {
  margin-top: 24px;
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.assessment-group {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(233,223,212,.95);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.assessment-group h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  margin: 0 0 14px 0;
  color: var(--ink);
}

.assessment-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 9px;
  line-height: 1.45;
}

.assessment-group input[type="checkbox"],
.assessment-group input[type="radio"] {
  width: auto;
  accent-color: var(--coral);
}

.mini-section {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(233,223,212,.95);
}

.mini-section strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
}

.assessment-note {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(145,182,154,.14);
  border: 1px solid rgba(145,182,154,.30);
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .assessment-grid {
    grid-template-columns: 1fr;
  }
}
.assessment-group input[type="checkbox"],
.assessment-group input[type="radio"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--coral);
}

/* Assessment group label error highlight */
label.label-error {
  color: #b00020;
}
label.label-error input {
  outline: 2px solid rgba(240, 143, 143, 0.6);
  border-radius: 3px;
}


/* Required field star marker */
.req-star {
  color: #b00020;
  font-size: 14px;
  margin-left: 3px;
  font-family: "Poppins", sans-serif;
}

/* =========================
   Services Page
========================= */

/* ── Services page extras ── */

.services-intro {
  max-width: 680px;
  margin-bottom: 48px;
}

/* Pillar cards — large icon + title + body */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(233,223,212,.95);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
  backdrop-filter: blur(8px);
  transition: box-shadow .3s ease, transform .3s ease;
}
.pillar-card:hover {
  box-shadow: 0 18px 44px rgba(0,0,0,.11);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
  background: rgba(201,168,106,.14);
  border: 1px solid rgba(201,168,106,.30);
}
.pillar-icon.sage {
  background: rgba(145,182,154,.16);
  border-color: rgba(145,182,154,.30);
}
.pillar-icon.blush {
  background: rgba(240,143,143,.14);
  border-color: rgba(240,143,143,.28);
}

.pillar-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.pillar-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Detail list — service items in a clean two-column layout */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 700px) {
  .service-list { grid-template-columns: 1fr; }
}

.service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(233,223,212,.90);
  border-radius: 16px;
  padding: 16px 18px;
}

.service-dot {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  background: rgba(201,168,106,.14);
  border: 1px solid rgba(201,168,106,.28);
  margin-top: 1px;
}

.service-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
.service-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Visitation banner */
.visitation-band {
  background: linear-gradient(135deg,
    rgba(145,182,154,.18) 0%,
    rgba(201,168,106,.12) 100%);
  border: 1px solid rgba(145,182,154,.30);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .visitation-band { flex-direction: column; gap: 16px; padding: 24px 20px; }
}

.visitation-band .vis-icon {
  font-size: 44px;
  flex-shrink: 0;
  line-height: 1;
}

.visitation-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 8px 0;
}

.visitation-band p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

.vis-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(201,168,106,.35);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 12px;
}
