@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* Theme variables - overridden by inline style from DB settings */
:root {
  --rose: #C8758A;
  --rose2: #6B4C4C;
  --gold: #C9A96E;
  --rose-pale: #F9EEF1;
  --cream: #FDF8F5;
  --dark: #2C1B18;
  --mid: #6B4C4C;
  --muted: #A08080;
  --gold-light: #E8D5B0;
  --white: #fff;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --r: 14px;
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Jost', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--cream); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3 { font-family: var(--fd); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,4rem); }
h2 { font-size: clamp(1.5rem,3vw,2.5rem); }
h3 { font-size: clamp(1.1rem,2vw,1.6rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(253,248,245,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.06); height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; }
.nav-logo { font-family: var(--fd); font-size: 1.4rem; color: var(--rose); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: .78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); transition: color .2s; }
.nav-links a:hover { color: var(--rose); }
.nav-cta { background: var(--rose) !important; color: #fff !important; padding: .45rem 1.1rem; border-radius: 50px !important; }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.ham span { display: block; width: 22px; height: 2px; background: var(--rose); border-radius: 2px; transition: all .3s; }
@media(max-width:768px) {
  .ham { display: flex; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: .5rem 0; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .75rem 1.5rem; border-bottom: 1px solid var(--rose-pale); }
  .nav-cta { margin: .75rem 1.5rem; display: block; text-align: center; border-radius: 8px !important; }
}

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--rose-pale), var(--cream) 60%, var(--gold-light)); display: flex; align-items: center; padding-top: 64px; }
.hero-c { max-width: 1160px; margin: 0 auto; padding: 3rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-ey { display: inline-flex; align-items: center; gap: .6rem; font-size: .68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
.hero-ey::before { content: ''; width: 24px; height: 1px; background: var(--rose); }
.hero h1 { color: var(--dark); margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-desc { color: var(--mid); font-size: .95rem; margin-bottom: 1.75rem; max-width: 400px; }
.hero-acts { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-img { border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%; overflow: hidden; aspect-ratio: 4/5; background: var(--rose-pale); box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-ph { width: 100%; height: 100%; background: linear-gradient(145deg, var(--rose-pale), #E8A8B8); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--rose); }
@media(max-width:768px) { .hero-c { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.25rem; } .hero-vis { order: -1; } .hero-img { max-width: 260px; margin: 0 auto; } }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: .4rem; background: var(--rose); color: #fff; padding: .82rem 1.6rem; border-radius: 50px; font-size: .85rem; font-weight: 500; transition: all .2s; border: 2px solid var(--rose); cursor: pointer; font-family: var(--fb); }
.btn-primary:hover { background: var(--rose2); border-color: var(--rose2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { display: inline-flex; align-items: center; gap: .4rem; background: transparent; color: var(--rose); padding: .82rem 1.6rem; border-radius: 50px; font-size: .85rem; font-weight: 500; transition: all .2s; border: 2px solid var(--rose); cursor: pointer; font-family: var(--fb); }
.btn-outline:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }

/* SECTIONS */
.sec { padding: 4rem 1.5rem; max-width: 1160px; margin: 0 auto; }
.sec-h { text-align: center; margin-bottom: 2.5rem; }
.sec-ey { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: .6rem; }
.sec-t { color: var(--dark); margin-bottom: .75rem; }
.sec-d { color: var(--muted); max-width: 440px; margin: 0 auto; font-size: .92rem; }
.bg-pale { background: var(--rose-pale); padding: 4rem 1.5rem; }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; }
.svc-card { background: var(--white); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow); transition: all .25s; border-left: 4px solid transparent; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-left-color: var(--rose); }
.svc-ic { font-size: 1.75rem; margin-bottom: .75rem; }
.svc-n { font-family: var(--fd); font-size: 1.15rem; color: var(--dark); margin-bottom: .35rem; }
.svc-d { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; }
.svc-m { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.svc-p { font-size: 1.1rem; font-weight: 600; color: var(--rose); }
.svc-du { font-size: .68rem; color: var(--muted); background: var(--rose-pale); padding: .2rem .6rem; border-radius: 50px; }
.svc-book { display: block; text-align: center; background: var(--rose-pale); color: var(--rose); padding: .55rem; border-radius: 8px; font-size: .78rem; font-weight: 600; border: none; cursor: pointer; font-family: var(--fb); transition: all .2s; width: 100%; }
.svc-book:hover { background: var(--rose); color: #fff; }

/* STAFF */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.5rem; }
.staff-c { text-align: center; background: var(--white); border-radius: var(--r); padding: 1.75rem 1.5rem; box-shadow: var(--shadow); transition: all .25s; }
.staff-c:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.staff-ph { width: 85px; height: 85px; border-radius: 50%; margin: 0 auto 1rem; object-fit: cover; border: 3px solid var(--rose-pale); }
.staff-pp { width: 85px; height: 85px; border-radius: 50%; margin: 0 auto 1rem; background: linear-gradient(145deg, var(--rose-pale), #E8A8B8); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.staff-n { font-family: var(--fd); font-size: 1.15rem; color: var(--dark); margin-bottom: .2rem; }
.staff-t { font-size: .7rem; color: var(--rose); text-transform: uppercase; letter-spacing: 1.5px; }
.staff-b { font-size: .78rem; color: var(--muted); margin-top: .6rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.5rem; }
.blog-c { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; }
.blog-c:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-ci { height: 180px; background: var(--rose-pale); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-ci img { width: 100%; height: 100%; object-fit: cover; }
.blog-cb { padding: 1.1rem; }
.blog-tag { font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: .35rem; }
.blog-ct { font-family: var(--fd); font-size: 1.1rem; color: var(--dark); margin-bottom: .6rem; line-height: 1.3; }
.blog-cx { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; }
.blog-cf { display: flex; justify-content: space-between; align-items: center; font-size: .7rem; color: var(--muted); }
.read-more { color: var(--rose); font-weight: 600; font-size: .75rem; }

/* BOOKING SECTION */
.book-sec { background: linear-gradient(135deg, var(--rose-pale), var(--cream)); padding: 4rem 1.5rem; }
.book-wrap { max-width: 620px; margin: 0 auto; background: var(--white); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
.book-hdr { background: linear-gradient(135deg, var(--rose), var(--rose2)); padding: 1.75rem; text-align: center; color: #fff; }
.book-hdr h2 { font-family: var(--fd); font-size: 1.65rem; margin-bottom: .25rem; }
.book-hdr p { opacity: .82; font-size: .82rem; }
.book-body { padding: 1.75rem; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: .875rem; }
.fg.full { grid-template-columns: 1fr; }
.fg label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--mid); margin-bottom: .3rem; }
.fg input,.fg select,.fg textarea { width: 100%; padding: .7rem .875rem; border: 1.5px solid var(--gold-light); border-radius: 8px; font-family: var(--fb); font-size: .88rem; color: var(--dark); background: var(--cream); outline: none; transition: border-color .2s; }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px rgba(200,117,138,.08); }
.ts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .35rem; }
.ts { padding: .5rem; border: 1.5px solid var(--gold-light); border-radius: 7px; text-align: center; font-size: .75rem; cursor: pointer; transition: all .2s; background: var(--cream); font-family: var(--fb); }
.ts:hover:not(.taken) { border-color: var(--rose); background: var(--rose-pale); color: var(--rose); }
.ts.sel { background: var(--rose); color: #fff; border-color: var(--rose); }
.ts.taken { background: #f0f0f0; color: #bbb; cursor: not-allowed; border-color: #e0e0e0; text-decoration: line-through; }
.book-btn { width: 100%; padding: .95rem; background: linear-gradient(135deg, var(--rose), var(--rose2)); color: #fff; border: none; border-radius: 50px; font-size: .9rem; font-weight: 600; cursor: pointer; margin-top: 1rem; font-family: var(--fb); transition: all .2s; }
.book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,117,138,.35); }
.book-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
@media(max-width:580px) { .fg { grid-template-columns: 1fr; } .ts-grid { grid-template-columns: repeat(3,1fr); } .book-body { padding: 1.25rem; } }

/* ALERTS */
.al { padding: .75rem 1rem; border-radius: 8px; font-size: .82rem; margin-bottom: .875rem; }
.al-s { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.al-e { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }
.al-i { background: var(--rose-pale); color: var(--mid); border: 1px solid #E8A8B8; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 3rem 1.5rem 1.75rem; }
.footer-g { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.f-logo { font-family: var(--fd); font-size: 1.5rem; color: #fff; margin-bottom: .75rem; }
.f-logo span { color: #E8A8B8; }
.f-desc { font-size: .82rem; line-height: 1.7; margin-bottom: 1rem; }
.f-h { font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.f-links { list-style: none; }
.f-links li { margin-bottom: .45rem; }
.f-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .2s; }
.f-links a:hover { color: #E8A8B8; }
.f-ci { display: flex; gap: .6rem; margin-bottom: .6rem; font-size: .82rem; }
.f-ci-ic { color: #E8A8B8; }
.f-bot { max-width: 1160px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: .75rem; }
@media(max-width:768px) { .footer-g { grid-template-columns: 1fr; gap: 1.5rem; } .f-bot { flex-direction: column; gap: .4rem; text-align: center; } }

/* PAGE HEADER */
.pg-hdr { background: linear-gradient(135deg, var(--rose-pale), var(--cream)); padding: 6rem 1.5rem 2.5rem; text-align: center; }
.breadcrumb { font-size: .75rem; color: var(--muted); margin-top: .5rem; }
.breadcrumb a { color: var(--rose); }

/* GALLERY */
.gal-g { columns: 3; gap: .75rem; }
.gal-i { break-inside: avoid; margin-bottom: .75rem; border-radius: 8px; overflow: hidden; }
.gal-i img { width: 100%; transition: transform .3s; }
.gal-i:hover img { transform: scale(1.04); }
@media(max-width:580px) { .gal-g { columns: 2; } }

/* PAGINATION */
.pag { display: flex; justify-content: center; gap: .4rem; margin-top: 2rem; }
.pag a { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; border: 1.5px solid var(--gold-light); color: var(--mid); transition: all .2s; }
.pag a:hover, .pag a.on { border-color: var(--rose); background: var(--rose); color: #fff; }

/* FADE IN */
.fi { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
