/* EVENT KASSEN — brand tokens */
:root {
  --bg: #FDFBF6;
  --bg-alt: #F4EEE1;
  --card: #FFFFFF;
  --ink: #201B15;
  --muted: rgba(32,27,21,0.64);
  --muted-2: rgba(32,27,21,0.42);
  --gold: #A07A3B;
  --gold-deep: #83672F;
  --gold-tint: rgba(160,122,59,0.1);
  --burgundy: #A8342A;
  --burgundy-2: #872A21;
  --burgundy-tint: rgba(168,52,42,0.08);
  --border: rgba(32,27,21,0.11);
  --footer-bg: #17130F;
  --footer-ink: #F5F0E6;
  --footer-muted: rgba(245,240,230,0.6);
  --glass-bg: rgba(255,255,255,0.55);
  --glass-bg-strong: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.65);
  --glass-shadow: 0 20px 50px -20px rgba(32,27,21,0.18), inset 0 1px 0 rgba(255,255,255,0.5);
  --radius: 10px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(32,27,21,0.05);
  --shadow-md: 0 14px 34px -16px rgba(32,27,21,0.18);
  --shadow-lg: 0 30px 60px -24px rgba(32,27,21,0.22);
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: #fff; }

/* Aurora — fixed, blurred colour field the glass surfaces sit on, visible through the whole scroll */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: auroraDrift 26s ease-in-out infinite;
}
.aurora span.a1 { width: 480px; height: 480px; background: radial-gradient(circle, #E8C89A, transparent 70%); top: -10%; left: -8%; opacity: 0.55; }
.aurora span.a2 { width: 420px; height: 420px; background: radial-gradient(circle, #E8A79E, transparent 70%); top: 10%; right: -10%; opacity: 0.45; animation-delay: -7s; }
.aurora span.a3 { width: 460px; height: 460px; background: radial-gradient(circle, #D9C7E8, transparent 70%); top: 42%; left: 38%; opacity: 0.4; animation-delay: -14s; }
.aurora span.a4 { width: 420px; height: 420px; background: radial-gradient(circle, #C9E0D9, transparent 70%); bottom: 8%; left: -6%; opacity: 0.4; animation-delay: -19s; }
.aurora span.a5 { width: 400px; height: 400px; background: radial-gradient(circle, #F0D2A8, transparent 70%); bottom: -8%; right: 6%; opacity: 0.45; animation-delay: -4s; }
@keyframes auroraDrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3%,-4%) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .aurora span { animation: none; } }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px; display: inline-block;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Nav — floating glass capsule ---------- */
.site-nav {
  position: sticky; top: 14px; z-index: 100;
  width: min(calc(var(--max) - 40px), calc(100% - 32px));
  margin: 0 auto;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(22px) saturate(200%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 40px -18px rgba(32,27,21,0.22), inset 0 1px 0 rgba(255,255,255,0.6);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 12px 0 22px; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 36px; width: auto; }
.brand-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 340px) { .brand-name { display: none; } }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a:not(.nav-cta) {
  font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta {
  background: var(--burgundy); color: #fff !important;
  padding: 11px 24px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  border: none; cursor: pointer; font-family: inherit;
}
.nav-cta:hover { background: var(--burgundy-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 24px; cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.btn-primary { background: var(--burgundy); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--burgundy-2); transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(168,52,42,0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline { border-color: var(--border); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 76px 0 90px; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero .spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 340px at var(--sx,50%) var(--sy,30%), rgba(255,255,255,0.55), transparent 60%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero:hover .spotlight { opacity: 1; }
.hero img.mark { width: 120px; margin-bottom: 28px; filter: drop-shadow(0 12px 24px rgba(32,27,21,0.12)); }
.hero h1 {
  font-size: clamp(32px, 5vw, 54px); line-height: 1.12; max-width: 760px; color: var(--ink);
}
.hero h1 .accent { color: var(--burgundy); }
.hero p.sub { margin-top: 20px; color: var(--muted); font-size: 17px; max-width: 520px; font-weight: 300; }

/* Quick-contact bar — glass, floats over the blurred blobs */
.quickbar {
  margin-top: 42px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--glass-shadow);
  max-width: 680px;
  width: 100%;
}
.quickbar .qfield { flex: 1; display: flex; flex-direction: column; padding: 8px 18px; text-align: left; }
.quickbar .qfield label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
.quickbar .qfield select, .quickbar .qfield input {
  border: none; background: transparent; font-family: 'Jost', sans-serif; font-size: 14.5px; color: var(--ink); padding: 0;
}
.quickbar .qfield select:focus, .quickbar .qfield input:focus { outline: none; }
.quickbar .qdiv { width: 1px; height: 34px; background: rgba(32,27,21,0.12); flex-shrink: 0; }
.quickbar button {
  flex-shrink: 0; background: var(--burgundy); color: #fff; border: none;
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease; box-shadow: 0 10px 24px -8px rgba(168,52,42,0.5);
}
.quickbar button svg { width: 20px; height: 20px; flex-shrink: 0; }
.quickbar button:hover { background: var(--burgundy-2); transform: scale(1.05); }

/* Trust row — glass chips */
.trust-row {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 820px; width: 100%;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 16px;
  background: var(--glass-bg); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: 0 14px 30px -18px rgba(32,27,21,0.14);
  transition: transform 0.25s var(--ease);
}
.trust-item:hover { transform: translateY(-3px); }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); }
.trust-item b { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: var(--ink); }
.trust-item span { font-size: 12.5px; color: var(--muted); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { color: var(--muted); margin-top: 14px; font-weight: 300; }

/* ---------- Products ---------- */
.products { background: rgba(244,238,225,0.5); position: relative; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.product-card {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 14px 34px -20px rgba(32,27,21,0.22), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card .thumb { aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; position: relative; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .thumb .placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-size: 13px; text-align: center; padding: 16px;
}
.product-card .thumb .cat-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  background: rgba(255,255,255,0.55); backdrop-filter: blur(10px) saturate(180%); -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-pill); padding: 5px 12px;
}
.product-card .thumb .hover-glass {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(23,19,15,0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.product-card:hover .hover-glass { opacity: 1; }
.product-card .hover-glass span {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--ink); font-size: 13px; font-weight: 600; padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.9); transform: translateY(6px); transition: transform 0.3s var(--ease);
}
.product-card:hover .hover-glass span { transform: translateY(0); }
.product-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); }
.product-card p.desc { color: var(--muted); font-size: 14px; font-weight: 300; margin: 14px 0 18px; flex: 1; }
.product-card .foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(32,27,21,0.08); padding-top: 16px; }
.product-card .price { font-size: 13.5px; color: var(--muted); }
.product-card .price b { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; color: var(--ink); }
.product-card a.book-link {
  font-size: 13px; font-weight: 600; color: #fff; background: var(--ink);
  padding: 9px 18px; border-radius: var(--radius-pill); transition: background 0.2s ease;
}
.product-card a.book-link:hover { background: var(--burgundy); }
.empty-state {
  grid-column: 1/-1; text-align: center; color: var(--muted); padding: 60px 20px;
  border: 1px dashed var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,0.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* ---------- Steps ---------- */
.steps { position: relative; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; counter-reset: step; }
.step {
  position: relative; padding: 26px 22px 22px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px -20px rgba(32,27,21,0.16);
}
.step .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 10px 22px -10px rgba(32,27,21,0.4);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; font-weight: 300; }

/* ---------- About ---------- */
.about { position: relative; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(23,19,15,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  aspect-ratio: 4/3.4;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.about-visual img { width: 100%; max-width: 220px; position: relative; z-index: 1; }
.about-copy .eyebrow { display: block; }
.about-copy p.lede { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 18px; }
.about-copy p.body { color: var(--muted); font-size: 15.5px; font-weight: 300; margin-bottom: 28px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--burgundy); }
.stat span { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }

/* ---------- Contact / Book ---------- */
.contact { position: relative; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-info h2 { font-size: clamp(28px,3.6vw,38px); margin-bottom: 16px; }
.contact-info p.lede { color: var(--muted); margin-bottom: 28px; font-weight: 300; font-size: 15.5px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass-bg); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.contact-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-list .label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); display: block; }
.contact-list .val { font-size: 14.5px; color: var(--ink); font-weight: 500; }

.form-card {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--glass-shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--ink); font-family: 'Jost', sans-serif; font-size: 15px;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; }
.form-success {
  display: none; background: var(--gold-tint); border: 1px solid rgba(160,122,59,0.3); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-top: 18px; color: var(--ink); font-size: 14.5px;
}

/* ---------- Footer ---------- */
footer { background: var(--footer-bg); color: var(--footer-ink); padding-top: 64px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,240,230,0.1); }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { color: var(--footer-muted); font-size: 13.5px; max-width: 260px; font-weight: 300; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--footer-muted); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--footer-ink); font-size: 14px; opacity: 0.85; transition: opacity 0.2s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 26px 0; color: var(--footer-muted); font-size: 12.5px; }
.footer-bottom a { color: var(--footer-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Chat widget ---------- */
.chat-launcher {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--burgundy); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px -12px rgba(168,52,42,0.55);
  transition: transform 0.25s var(--ease);
}
.chat-launcher:hover { transform: scale(1.06); }
.chat-launcher svg { width: 24px; height: 24px; }
.chat-launcher .dot {
  position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-deep); border: 2px solid #fff;
}

.chat-panel {
  position: fixed; bottom: 100px; right: 26px; z-index: 200;
  width: min(340px, calc(100vw - 40px));
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 70vh;
}
.chat-panel.open { display: flex; }
.chat-head {
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
  background: rgba(32,27,21,0.03); border-bottom: 1px solid var(--glass-border);
}
.chat-head .avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--footer-bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.chat-head .avatar img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.chat-head b { display: block; font-size: 14.5px; color: var(--ink); }
.chat-head span { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.chat-head .status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF6D; display: inline-block; }
.chat-close { margin-left: auto; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; padding: 4px; }
.chat-body { padding: 18px 20px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble {
  background: #fff; border: 1px solid var(--border); border-radius: 14px 14px 14px 4px;
  padding: 12px 14px; font-size: 13.5px; color: var(--ink); max-width: 88%; line-height: 1.5;
}
.chat-bubble.typing { display: flex; gap: 4px; align-items: center; padding: 14px; }
.chat-bubble.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); animation: typingDot 1.2s ease-in-out infinite; }
.chat-bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
.chat-escalate { padding: 4px 14px 12px; border-top: 1px solid var(--border); text-align: center; }
.chat-escalate button {
  background: none; border: none; color: var(--gold-deep); font-size: 12.5px; font-weight: 600;
  cursor: pointer; padding: 10px 6px 4px; text-decoration: underline;
}
.chat-escalate button:hover { color: var(--burgundy); }
.chat-form { padding: 14px; border-top: 1px solid var(--glass-border); display: flex; gap: 8px; }
.chat-form input {
  flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 10px 16px;
  font-family: 'Jost', sans-serif; font-size: 13.5px; background: #fff;
}
.chat-form input:focus { outline: none; border-color: var(--gold); }
.chat-form button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--burgundy); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.chat-form button svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .chat-panel { right: 16px; bottom: 90px; }
  .chat-launcher { right: 16px; bottom: 16px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 22px 24px; gap: 4px; align-items: stretch;
    box-shadow: var(--shadow-lg);
  }
  .nav-links a:not(.nav-cta) { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .nav-links a:not(.nav-cta):last-of-type { border-bottom: none; }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .quickbar { flex-direction: column; border-radius: var(--radius); padding: 14px; gap: 10px; }
  .quickbar .qdiv { display: none; }
  .quickbar .qfield { width: 100%; }
  .quickbar button { width: 100%; border-radius: var(--radius-sm); }
  .trust-row { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 68px 0; }
}

/* ---------- Rental modal ---------- */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.rental-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(23,19,15,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.rental-overlay.open { display: flex; }
.rental-modal {
  position: relative;
  width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px 32px;
}
.rental-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-alt); border: none; color: var(--muted);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.rental-close:hover { background: var(--border); color: var(--ink); }
.rental-step h2 { font-size: 24px; margin: 6px 0 22px; }
.rental-step .field { margin-bottom: 18px; }

.rental-stepper {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  width: fit-content;
}
.rental-stepper button {
  width: 42px; height: 42px; border: none; background: var(--bg-alt); color: var(--ink);
  font-size: 18px; cursor: pointer; transition: background 0.2s ease;
}
.rental-stepper button:hover { background: var(--border); }
.rental-stepper input {
  width: 60px; height: 42px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-family: 'Jost', sans-serif; font-size: 15px; color: var(--ink); background: var(--bg);
}

.rental-included { margin-bottom: 18px; padding: 14px 16px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.rental-included b { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-deep); }
.rental-included ul { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; }
.rental-included li { font-size: 13.5px; color: var(--ink); padding-left: 16px; position: relative; }
.rental-included li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }

.rental-price-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; margin-bottom: 22px;
  background: var(--burgundy-tint); border: 1px solid rgba(168,52,42,0.2); border-radius: var(--radius-sm);
}
.rental-price-box span { font-size: 13px; color: var(--muted); }
.rental-price-box b { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--burgundy); }
.rental-price-note { font-size: 12px; color: var(--muted-2); margin: -14px 0 22px; text-align: right; }

.rental-summary {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 18px; margin-bottom: 22px;
  background: var(--bg-alt); border-radius: var(--radius-sm);
}
.rental-summary div { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; }
.rental-summary span { color: var(--muted); }
.rental-summary b { color: var(--ink); font-weight: 600; text-align: right; }

.rental-step .form-actions { display: flex; gap: 10px; margin-top: 4px; }
.rental-step .form-actions .btn-outline { flex: 0 0 auto; }

.rental-done-icon {
  width: 56px; height: 56px; border-radius: 50%; background: #4CAF6D;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
#rentalStepDone { text-align: center; }
#rentalStepDone h2 { font-size: 22px; }
#rentalStepDone p { margin-bottom: 24px; }

@media (max-width: 480px) {
  .rental-modal { padding: 30px 22px 26px; }
  .rental-modal .field-row { grid-template-columns: 1fr; }
}

/* ---------- Instagram section ---------- */
.instagram-section { background: rgba(244,238,225,0.5); position: relative; }
.instagram-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.instagram-embed {
  flex: 0 1 340px; max-width: 100%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--card);
  min-height: 400px;
}
.instagram-embed iframe { border-radius: var(--radius) !important; }
