/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f2fff0;
  background: #2d1b36;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
:focus-visible { outline: 2px solid #7a9e7e; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Montserrat', 'Cormorant Garamond', sans-serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p { max-width: 70ch; }
.overline { font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #7a9e7e; display: block; margin-bottom: .75rem; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.section { padding: clamp(64px, 8vw, 100px) 0; }
.grid-2 { display: grid; gap: 48px; }
.grid-3 { display: grid; gap: 32px; }
@media(min-width:768px){ .grid-2{grid-template-columns:1fr 1fr; gap:64px;} .grid-3{grid-template-columns:repeat(3,1fr);} }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px; font-size: .95rem; font-weight: 600;
  transition: all .25s ease; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: #7a9e7e; color: #fff; }
.btn-primary:hover { background: #5f7f63; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #f2fff0; border: 1.5px solid rgba(242,255,240,.25); }
.btn-secondary:hover { background: rgba(242,255,240,.08); border-color: rgba(242,255,240,.5); }
.btn-outline { background: rgba(45,27,54,.8); color: #fff; border: 1.5px solid rgba(255,255,255,.15); }
.btn-outline:hover { border-color: #7a9e7e; color: #7a9e7e; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px; display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(45,27,54,.96); backdrop-filter: blur(12px); box-shadow: 0 1px 20px rgba(0,0,0,.2); }
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo img { height: 50px; width: auto; }
.nav-links { display: none; gap: 32px; font-size: .9rem; font-weight: 500; }
.nav-links a { position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #7a9e7e; transition: width .35s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
@media(min-width:860px){ .nav-links{ display: flex; } }
.burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; background: transparent; border: none; -webkit-tap-highlight-color: transparent; }
@media(min-width:860px){ .burger{ display: none; } }
.burger span { width: 26px; height: 2px; background: #f2fff0; transition: .3s; border-radius: 2px; }
.burger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.burger.active span:nth-child(2){opacity:0;}
.burger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

/* ── MOBILE MENU ── */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(45,27,54,.98); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  transform: translateX(100%); transition: transform .4s ease;
  padding-top: 80px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 1.6rem; font-weight: 600; }
.mobile-nav .btn { font-size: 1rem; margin-top: 16px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2d1b36 0%, #201024 60%, #2d1b36 100%);
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .4; mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 24px; line-height: 1.1; }
.hero h1 span { color: #7a9e7e; }
.hero .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.7; color: rgba(242,255,240,.8); max-width: 55ch; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CARDS ── */
.card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.3); border-color: rgba(122,158,126,.3); }
.card-icon { width:40px; height:40px; margin-bottom:16px; color:#7a9e7e; }
.card h4 { margin-bottom: 12px; }
.card p { color: rgba(242,255,240,.7); font-size: .95rem; }

/* ── SERVICES PREVIEW ── */
.services-preview { background: rgba(255,255,255,.02); }
.services-preview img { border-radius: 12px; width: 100%; height: 220px; object-fit: cover; margin-bottom: 16px; }

/* ── TESTIMONIALS ── */
.testimonials { background: rgba(255,255,255,.02); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.t-quote { font-family: 'Lora', serif; font-style: italic; font-size: 1.15rem; line-height: 1.7; color: rgba(242,255,240,.85); margin-bottom: 20px; }
.t-meta { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.t-name { font-weight: 600; font-size: .95rem; }
.t-role { font-size: .85rem; color: rgba(242,255,240,.55); }

/* ── ABOUT TEASER ── */
.about-teaser img { border-radius: 16px; width: 100%; height: 420px; object-fit: cover; }

/* ── CTAs ── */
.cta-large { text-align: center; padding: 80px 0; background: linear-gradient(160deg, #2d1b36, #24122d); position: relative; }
.cta-large::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04; pointer-events: none;
}
.cta-large .container { position: relative; z-index: 1; }
.cta-large h2 { margin-bottom: 16px; }
.cta-large p { margin: 0 auto 32px; color: rgba(242,255,240,.75); max-width: 55ch; }

/* ── BOOKING WIZARD ── */
.wizard { background: rgba(255,255,255,.04); border-radius: 16px; padding: 32px; max-width: 720px; margin: 0 auto; border: 1px solid rgba(255,255,255,.08); }
@media(max-width:560px){ 
  .wizard{ padding: 20px 14px; border-radius: 12px; }
  .wizard-option{ padding: 14px 12px; gap: 12px; }
  .wizard-option h5{ font-size: .95rem; }
  .wizard-option p{ font-size: .82rem; }
  .wizard-option .opt-icon{ width:36px; height:36px; }
  .wizard-step h3{ font-size: 1.2rem; margin-bottom: 16px; }
  .wizard-buttons{ flex-direction: column; gap: 12px; margin-top: 16px; }
  .wizard-buttons .btn{ width: 100%; justify-content: center; }
  .wizard-progress{ margin-bottom: 16px; }
}
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wizard-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.wizard-tab { padding: 10px 20px; border-radius: 6px; background: rgba(255,255,255,.06); font-size: .85rem; font-weight: 600; color: rgba(242,255,240,.5); border: 1px solid transparent; }
.wizard-tab.active { background: rgba(122,158,126,.2); color: #7a9e7e; border-color: rgba(122,158,126,.4); }
.wizard-option {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03); cursor: pointer; margin-bottom: 12px; transition: all .2s;
}
.wizard-option:hover { border-color: rgba(122,158,126,.4); background: rgba(122,158,126,.06); }
.wizard-option.selected { border-color: #7a9e7e; background: rgba(122,158,126,.1); }
.wizard-option .opt-icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#7a9e7e; }
.wizard-option h5 { font-size: 1.05rem; margin-bottom: 4px; }
.wizard-option p { color: rgba(242,255,240,.6); font-size: .9rem; }
.wizard-buttons { display: flex; justify-content: space-between; margin-top: 24px; }
.wizard input[type="text"], .wizard input[type="email"], .wizard input[type="tel"], .wizard textarea, .wizard select {
  width: 100%; padding: 14px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05); color: #f2fff0; font-size: 1rem; font-family: inherit; margin-top: 6px;
}
.wizard input:focus, .wizard textarea:focus, .wizard select:focus { border-color: #7a9e7e; outline: none; }
.wizard .field { margin-bottom: 20px; }
.wizard label { font-size: .9rem; font-weight: 500; color: rgba(242,255,240,.8); }

/* ── FOOTER ── */
.footer { background: #1a1020; padding: 64px 0 24px; font-size: .88rem; color: rgba(242,255,240,.55); }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 2fr 1fr 1fr 1fr; }
@media(max-width:860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem; color: #f2fff0; margin-bottom: 12px; }
.footer a { display: block; margin-bottom: 10px; transition: color .2s; }
.footer a:hover { color: #7a9e7e; }
.footer h5 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; color: #f2fff0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 48px; padding-top: 24px; text-align: center; font-size: .8rem; }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #7a9e7e; color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: all .3s; z-index: 90;
  font-size: 1.5rem; line-height: 1;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: #5f7f63; transform: translateY(-3px); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── PAGE BANNER ── */
.page-banner { padding: 160px 0 64px; text-align: center; background: linear-gradient(160deg, #2d1b36, #1a1020); }
.page-banner h1 { margin-bottom: 16px; }
.page-banner p { margin: 0 auto; color: rgba(242,255,240,.75); max-width: 60ch; }

/* ── SERVICE DETAILS ── */
.service-detail { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 40px; }
.service-detail:last-child { border: none; }
.pricing-tag {
  display: inline-block; background: rgba(122,158,126,.15); color: #7a9e7e;
  padding: 6px 16px; border-radius: 4px; font-size: .85rem; font-weight: 600; margin-top: 16px;
}

/* ── BLOG ── */
.blog-card { display: block; margin-bottom: 32px; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.blog-card h4 { margin-bottom: 8px; }
.blog-card p { color: rgba(242,255,240,.65); font-size: .95rem; }

/* BLOG LISTING */
.blog-grid { display: grid; gap: 48px; }
@media(min-width:768px){ .blog-grid{ grid-template-columns: repeat(2,1fr); gap: 40px; } }
.blog-item { display: flex; flex-direction: column; }
.blog-thumb { position: relative; display: block; border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.blog-thumb img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s ease; }
.blog-thumb:hover img { transform: scale(1.04); }
.blog-cat { position: absolute; top: 16px; left: 16px; background: rgba(122,158,126,.92); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600; }
.blog-body h3 { margin-bottom: 10px; line-height: 1.3; }
.blog-body h3 a:hover { color: #7a9e7e; }
.blog-meta { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(242,255,240,.45); margin-bottom: 8px; }
.blog-meta .dot { color: rgba(242,255,240,.3); }
.blog-body p { color: rgba(242,255,240,.65); font-size: .95rem; margin-bottom: 16px; }
.blog-link { font-weight: 600; font-size: .9rem; color: #7a9e7e; }
.blog-link:hover { text-decoration: underline; }

/* ARTICLE PAGE */
.article-header { padding: 140px 0 40px; background: linear-gradient(160deg, #2d1b36, #1a1020); }
.article-header h1 { max-width: 24ch; margin-bottom: 16px; }
.article-meta { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: rgba(242,255,240,.55); margin-bottom: 16px; flex-wrap: wrap; }
.article-meta .dot { color: rgba(242,255,240,.3); }
.article-cat { background: rgba(122,158,126,.2); color: #7a9e7e; padding: 4px 12px; border-radius: 4px; font-weight: 600; font-size: .78rem; }
.article-intro { font-size: 1.15rem; color: rgba(242,255,240,.75); max-width: 60ch; }
.article-hero-img img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.article-body { padding: 56px 0; max-width: 720px; }
.article-section { margin-bottom: 40px; }
.article-section h2 { margin-bottom: 16px; color: #f2fff0; }
.article-section p { margin-bottom: 16px; color: rgba(242,255,240,.8); font-size: 1.05rem; line-height: 1.8; max-width: 65ch; }
.article-section p:last-child { margin-bottom: 0; }
.article-cta { padding: 80px 0; background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.06); }
.article-cta-inner { text-align: center; max-width: 540px; margin: 0 auto; }
.article-cta-inner h3 { margin-bottom: 12px; }
.article-cta-inner p { color: rgba(242,255,240,.65); margin-bottom: 24px; }
.article-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE UTILS ── */
@media(max-width:768px){
  .article-header{padding:120px 0 32px;}
  .article-body{padding:40px 0;}
  .article-section h2{font-size:1.3rem;}
  .article-cta{padding:56px 0;}
  .podcast-cta-inner{padding:28px 16px;}
}

/* ── PODCAST ── */
.podcast-grid{display:grid;gap:24px;}
@media(min-width:768px){.podcast-grid{grid-template-columns:repeat(3,1fr);}}
.podcast-ep{border-radius:12px;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease;}
.podcast-ep:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(0,0,0,.3);}
.podcast-cta-inner{text-align:center;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:40px 24px;max-width:640px;margin:0 auto;}
.podcast-cta-inner h4{margin-bottom:12px;}
.podcast-cta-inner p{color:rgba(242,255,240,.65);font-size:.95rem;margin-bottom:20px;}

/* ── SERVICE CARD BANNERS ── */
.service-card-banner{height:200px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg, rgba(122,158,126,.25), rgba(122,158,126,.08));border:1px solid rgba(122,158,126,.15);margin-bottom:20px;transition:transform .3s ease;}
.service-card-banner:hover{transform:scale(1.02);}
.service-card-banner .sc-icon{width:56px;height:56px;color:#7a9e7e;flex-shrink:0;}

/* ── FORM ANIMATIONS ── */
.wizard{position:relative;overflow:hidden;}
.wizard-step{position:absolute;width:100%;top:0;left:0;opacity:0;transform:translateX(60px);pointer-events:none;transition:opacity .4s ease,transform .4s ease;}
.wizard-step.active{position:relative;opacity:1;transform:translateX(0);pointer-events:all;}
.wizard-step.exit-left{transform:translateX(-60px);opacity:0;}
.wizard-progress{display:flex;gap:6px;justify-content:center;margin-bottom:36px;}
.wizard-progress .prog-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.15);transition:background .3s,width .3s;}
.wizard-progress .prog-dot.active{background:#7a9e7e;width:24px;border-radius:4px;}
.wizard-success{text-align:center;padding:48px 24px;animation:fadeUp .5s ease;}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
.wizard-success .success-ring{width:72px;height:72px;border-radius:50%;border:3px solid #7a9e7e;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:2rem;color:#7a9e7e;animation:scaleIn .5s ease .2s both;}
@keyframes scaleIn{from{transform:scale(.5);opacity:0;}to{transform:scale(1);opacity:1;}}
.wizard-option{position:relative;overflow:hidden;}
.wizard-option::after{content:'';position:absolute;inset:0;border-radius:10px;border:2px solid transparent;transition:border-color .3s;pointer-events:none;}
.wizard-option.selected::after{border-color:#7a9e7e;}
.wizard-option .opt-check{position:absolute;top:12px;right:12px;width:24px;height:24px;border-radius:50%;background:rgba(122,158,126,.2);color:#7a9e7e;display:flex;align-items:center;justify-content:center;font-size:.8rem;opacity:0;transform:scale(.5);transition:all .3s ease;}
.wizard-option.selected .opt-check{opacity:1;transform:scale(1);}

/* ── RESPONSIVE UTILS ── */
@media(max-width:768px){
  .hero{min-height:auto;padding:120px 0 64px;}
  .footer-grid{grid-template-columns:1fr;}
  .page-banner{padding:120px 0 48px;}
}

/* ── CHAT WIDGET ── */
.chat-widget{position:fixed;bottom:24px;right:24px;z-index:10000;font-family:'Open Sans',sans-serif;}
.chat-btn{width:56px;height:56px;border-radius:50%;background:#7a9e7e;color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(0,0,0,.35);transition:transform .25s,box-shadow .25s;}
.chat-btn:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(0,0,0,.45);}
.chat-btn svg{width:26px;height:26px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.chat-panel{position:fixed;bottom:90px;right:24px;width:360px;max-height:520px;background:#1e1226;border:1px solid rgba(122,158,126,.2);border-radius:16px;display:flex;flex-direction:column;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.5);opacity:0;transform:translateY(12px) scale(.96);pointer-events:none;transition:opacity .3s,transform .3s;}
.chat-panel.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto;}
.chat-header{padding:16px 20px;background:rgba(122,158,126,.12);border-bottom:1px solid rgba(122,158,126,.15);display:flex;align-items:center;justify-content:space-between;}
.chat-header h4{font-size:.95rem;font-weight:600;color:#f2fff0;margin:0;}
.chat-header span{font-size:.75rem;color:rgba(242,255,240,.5);}
.chat-close{width:32px;height:32px;border-radius:50%;border:none;background:rgba(255,255,255,.08);color:rgba(242,255,240,.7);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;}
.chat-close:hover{background:rgba(255,255,255,.15);color:#f2fff0;}
.chat-body{flex:1;overflow-y:auto;overflow-x:hidden;padding:16px;display:flex;flex-direction:column;gap:12px;}
.chat-msg{max-width:88%;padding:12px 14px;border-radius:14px;font-size:.9rem;line-height:1.5;animation:msgIn .35s ease;}
@keyframes msgIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
.chat-msg.bot{background:rgba(122,158,126,.1);color:#f2fff0;border:1px solid rgba(122,158,126,.15);align-self:flex-start;border-bottom-left-radius:4px;}
.chat-msg.user{background:#7a9e7e;color:#fff;align-self:flex-end;border-bottom-right-radius:4px;}
.chat-choices{display:flex;flex-direction:column;gap:8px;margin-top:4px;max-height:180px;overflow-y:auto;}
.chat-choice{padding:10px 14px;border-radius:10px;border:1px solid rgba(122,158,126,.25);background:rgba(122,158,126,.06);color:#f2fff0;font-size:.88rem;cursor:pointer;transition:all .2s;text-align:left;}
.chat-choice:hover{background:rgba(122,158,126,.15);border-color:rgba(122,158,126,.5);transform:translateX(2px);}
.chat-footer{padding:12px 16px;border-top:1px solid rgba(255,255,255,.06);display:flex;gap:8px;}
.chat-footer input{flex:1;padding:10px 14px;border-radius:10px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:#f2fff0;font-size:.9rem;font-family:inherit;}
.chat-footer input:focus{outline:none;border-color:rgba(122,158,126,.4);}
.chat-footer button{padding:10px 16px;border-radius:10px;border:none;background:#7a9e7e;color:#fff;font-weight:600;font-size:.85rem;cursor:pointer;transition:background .2s;}
.chat-footer button:hover{background:#5f7f63;}
.chat-cta{display:inline-flex;align-items:center;gap:6px;margin-top:6px;padding:6px 12px;border-radius:8px;background:rgba(122,158,126,.15);color:#7a9e7e;font-size:.82rem;font-weight:600;text-decoration:none;transition:background .2s;}
.chat-cta:hover{background:rgba(122,158,126,.25);}
@media(max-width:560px){
  .chat-widget{bottom:16px;right:16px;}
  .chat-panel{width:calc(100% - 32px);right:16px;bottom:80px;max-height:65vh;border-radius:16px 16px 4px 4px;}
  .chat-btn{width:52px;height:52px;}
}
@media(max-width:380px){
  .chat-panel{width:100%;right:0;left:0;bottom:0;max-height:70vh;border-radius:16px 16px 0 0;}
  .chat-widget{bottom:12px;right:12px;}
}

/* ── COOKIE BANNER ── */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1020;border-top:1px solid rgba(122,158,126,.2);padding:16px 20px;z-index:99999;display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;transform:translateY(100%);transition:transform .4s ease;}
.cookie-banner.show{transform:translateY(0);}
.cookie-banner p{font-size:.88rem;color:rgba(242,255,240,.8);margin:0;max-width:60ch;text-align:center;}
.cookie-banner a{color:#7a9e7e;text-decoration:underline;}
.cookie-banner a:hover{color:#5f7f63;}
.cookie-banner .cookie-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;}
.cookie-banner button{padding:10px 20px;border-radius:8px;font-size:.85rem;font-weight:600;cursor:pointer;border:none;transition:background .2s;}
.cookie-btn-primary{background:#7a9e7e;color:#fff;}
.cookie-btn-primary:hover{background:#5f7f63;}
.cookie-btn-secondary{background:rgba(255,255,255,.08);color:rgba(242,255,240,.8);border:1px solid rgba(255,255,255,.15);}
.cookie-btn-secondary:hover{background:rgba(255,255,255,.15);}
@media(max-width:560px){
  .cookie-banner{padding:14px 16px;flex-direction:column;gap:12px;text-align:center;}
  .cookie-banner p{font-size:.82rem;}
  .cookie-banner button{padding:10px 16px;font-size:.8rem;}
}
