
:root {
  --bg: #ffffff;
  --sage: #E6F0EA;
  --gold: #C9A24B;
  --text: #111111;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans"; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* Full-page earthy leaf pattern */
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="180" height="180" viewBox="0 0 200 200"><rect width="200" height="200" fill="white"/><g fill="#C9A24B" fill-opacity="0.08"><path d="M150 20c-40 10-70 40-80 80 40-10 70-40 80-80z"/><path d="M140 30c-25 15-45 35-55 60 25-15 45-35 55-60z"/></g></svg>');
  background-repeat:repeat; background-size:180px 180px;
  z-index:0; pointer-events:none;
}
.site-header, main, .site-footer{ position:relative; z-index:1; }

.site-header { position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); border-bottom: 1px solid #eee; z-index: 10; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand span { white-space: nowrap; }
.logo { height: 30px; width: auto; display: block; }
.animate-logo .brand .logo { animation: logoPop .8s ease-out both; }
.nav a { margin-left: 14px; font-weight: 600; }
.nav a.active { text-decoration: underline; text-underline-offset: 6px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; border: 2px solid var(--gold); font-weight: 800; letter-spacing: .2px; }
.btn-small { padding: 8px 12px; border-width: 2px; font-size: 14px; }
.btn-primary { background: var(--gold); color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,.2); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline { background: #fff; color: var(--text); }
.btn-ghost { background: transparent; color: var(--text); border-color: #e3d3a7; }

.book-now { margin-left: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.12); }

.hero-split { position: relative; padding: 32px 0 12px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; }
.hero-left { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.hero-left h1 { margin: 0 0 12px; font-size: clamp(28px, 5vw, 44px); line-height: 1.05; }
.hero-left p { margin: 0 0 16px; font-size: clamp(16px, 2.6vw, 18px); }

.hero-right .image-card { position: relative; background: #000; border-radius: 18px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.hero-photo { display: block; width: 100%; height: clamp(260px, 36vw, 420px); object-fit: cover; }
.photo-watermark { position: absolute; right: 12px; bottom: 12px; width: 56px; opacity: .35; }

.leaf-bg { display:none !important; } /* hero-only leaf disabled */

.pad-y { padding: 40px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; }
.card { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 18px; }
.lead { color: #555; }

.reviews { background: var(--sage); margin: 40px 0; padding: 40px 0; }
.reviews-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.reviews-img { width: 100%; border-radius: 16px; object-fit: cover; border: 1px solid #eee; }

.meet-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: center; }
.meet-img { width: 100%; border-radius: 9999px; object-fit: cover; background: radial-gradient(closest-side,#fff, #f6f6f6); padding: 6px; }

.widget-frame iframe { width: 100%; border: 0; border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.05); height: 600px; min-height: 600px; }

.map { width: 100%; height: 380px; border: 0; border-radius: 16px; }

.site-footer { margin-top: 56px; border-top: 1px solid #eee; padding: 40px 0; background: #fbfbfb; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f-col a { display: block; margin: 4px 0; }
.muted { color: #666; margin: 8px 0 0; }
.legal { margin-top: 16px; color: #666; }

@keyframes fadeUp { 0% { opacity:0; transform: translateY(12px); } 100% { opacity:1; transform: translateY(0); } }
@keyframes slideIn { 0% { opacity:0; transform: translateX(16px); } 100% { opacity:1; transform: translateX(0); } }
@keyframes logoPop { 0% { opacity:0; transform: scale(.99); } 100% { opacity:1; transform: scale(1); } }
.fade-up { animation: fadeUp .6s ease-out both; }
.slide-in { animation: slideIn .6s ease-out both; }
@media (prefers-reduced-motion: reduce) { .fade-up, .slide-in, .animate-logo .brand .logo { animation: none !important; } }

@media (max-width: 1020px) { .brand span { display: none; } }
@media (max-width: 960px) { .nav { display: grid; grid-auto-flow: column; justify-content: end; gap: 8px; align-items: center; } .book-now { display: none; } }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .reviews-wrap, .meet-grid { grid-template-columns: 1fr; }
}
