/* ============================================================
   CRYSTAL'S BEVERAGE CATERING SERVICE — styles.css
   Stack: Static HTML/CSS — no build system
   ============================================================ */

/* === Custom Properties === */
:root {
  --charcoal:      #2b2723;
  --charcoal-mid:  #3d3530;
  --charcoal-dark: #1a1715;
  --gold:          #d6b36a;
  --gold-dark:     #b8952e;
  --cream:         #f7f2eb;
  --taupe:         #e8e1d7;
  --border:        #d4ccc3;
  --white:         #ffffff;
  --text-dark:     #1a1715;
  --text-mid:      #4a4340;
  --error:         #a63232;
  --shadow-sm:     0 1px 4px rgba(43,39,35,0.08);
  --shadow:        0 2px 12px rgba(43,39,35,0.10);
  --shadow-lg:     0 8px 32px rgba(43,39,35,0.16);
  --radius:        8px;
  --radius-lg:     16px;
  --max-width:     1100px;
  --font-serif:    Georgia, 'Times New Roman', serif;
  --font-sans:     system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --ease:          0.2s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* === Focus States (accessible, visible) === */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* === Screen Reader Only === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === Layout Utilities === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad {
  padding: 4.5rem 0;
}

.bg-cream    { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); }
.text-cream  { color: var(--cream); }
.text-gold-muted { color: rgba(214,179,106,0.75); }

.section-intro {
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: 0.6rem;
  max-width: 680px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,242,235,0.7);
}
.btn-secondary:hover {
  background: rgba(247,242,235,0.12);
  border-color: var(--cream);
}

.btn-phone {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
}
.btn-phone:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-size: 0.88rem;
  padding: 0.6rem 1.25rem;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--taupe);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  flex-wrap: nowrap;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  line-height: 1.3;
}

.site-nav {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color var(--ease);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover {
  color: var(--charcoal);
  border-bottom-color: var(--gold);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--ease);
}

/* Mobile Nav Panel */
.mobile-nav {
  background: var(--white);
  border-top: 1px solid var(--taupe);
  padding: 1rem 1.25rem 1.25rem;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--taupe);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-phone-link {
  color: var(--charcoal) !important;
  font-weight: 700 !important;
}

@media (min-width: 800px) {
  .site-nav { display: block; }
  .mobile-menu-btn { display: none; }
  .wordmark { font-size: 1.05rem; }
}

@media (min-width: 1000px) {
  .wordmark { font-size: 1.15rem; }
}

/* === Hero === */
.hero {
  background: linear-gradient(140deg, var(--charcoal-dark) 0%, var(--charcoal) 50%, var(--charcoal-mid) 100%);
  color: var(--cream);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(214,179,106,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(214,179,106,0.25);
}

.hero-inner {
  position: relative;
  max-width: 780px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(247,242,235,0.82);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-support {
  font-size: 0.83rem;
  color: rgba(247,242,235,0.52);
  font-style: italic;
}

/* === Area Strip === */
.area-strip {
  background: var(--gold);
  padding: 0.85rem 0;
  text-align: center;
}

.area-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  opacity: 0.7;
}

.area-states {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.divider {
  color: rgba(43,39,35,0.35);
}

/* === Section Headings === */
.event-types h2,
.help-with h2,
.meet-crystal h2,
.services h2,
.how-it-works h2,
.faq-section h2,
.quote-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* === Event Types === */
.event-types h2 { margin-bottom: 0.4rem; }

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.event-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  opacity: 0.8;
}

.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.event-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

@media (min-width: 600px) {
  .event-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .event-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === What We Help With === */
.help-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.help-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 1rem 0;
  width: 100%;
  max-width: 680px;
}

.help-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 0.6rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.help-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.35em;
}

@media (min-width: 680px) {
  .help-list { grid-template-columns: 1fr 1fr; }
}

/* === Meet Crystal === */
.meet-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

.crystal-portrait {
  width: 100%;
  max-width: 340px;
  flex-shrink: 0;
}

.crystal-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: top;
}

.portrait-caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  font-style: italic;
}

.crystal-bio h2 {
  margin-bottom: 1.25rem;
}

.crystal-bio p {
  margin-bottom: 1.1rem;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.crystal-bio .btn {
  margin-top: 0.5rem;
}

@media (min-width: 800px) {
  .meet-inner {
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
  }
  .crystal-portrait { width: 320px; }
}

/* === Service Options === */
.services {
  text-align: center;
}

.services h2 {
  margin-bottom: 0.4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}

.service-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(214,179,106,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--ease), background var(--ease);
  position: relative;
}
.service-card:hover {
  border-color: rgba(214,179,106,0.5);
  background: rgba(255,255,255,0.08);
}
.service-card.featured {
  border-color: var(--gold);
  background: rgba(214,179,106,0.06);
}

.featured-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(247,242,235,0.72);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

@media (min-width: 800px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === How It Works === */
.how-inner {
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 0.4rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2.5rem 0 2rem;
  position: relative;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.step {
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.step-number {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 8px rgba(214,179,106,0.3);
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.step p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* === FAQ === */
.faq-section h2 {
  margin-bottom: 0.4rem;
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.96rem;
  color: var(--charcoal);
  gap: 1rem;
  transition: background var(--ease);
  user-select: none;
}
.faq-item summary:hover {
  background: var(--cream);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--ease);
}
.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid var(--taupe);
}
.faq-answer p {
  padding-top: 0.9rem;
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-answer a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.faq-answer a:hover {
  color: var(--charcoal);
}

/* === Quote Form === */
.quote-section h2 {
  margin-bottom: 0.4rem;
}

.quote-inner {
  max-width: 760px;
}

.quote-form {
  margin-top: 2rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.required {
  color: var(--error);
  margin-left: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%234a4340' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,179,106,0.18);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(166,50,50,0.12);
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  min-height: 1.1rem;
  line-height: 1.3;
}

/* Honeypot — hidden from users, visible to bots */
.honeypot {
  position: absolute;
  left: -9999px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  font-style: italic;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.direct-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--taupe);
}

.direct-contact > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.direct-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.contact-link {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-link:hover {
  color: var(--gold-dark);
}

.contact-sep {
  color: var(--text-mid);
  font-size: 0.85rem;
}

/* === Footer === */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
}

.footer-main {
  padding: 3rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.footer-sub {
  font-size: 0.85rem;
  color: rgba(247,242,235,0.55);
}

.footer-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(247,242,235,0.72);
  line-height: 1.8;
}

.footer-col a {
  color: rgba(247,242,235,0.72);
  transition: color var(--ease);
}
.footer-col a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(247,242,235,0.1);
  padding: 1.25rem 0;
  text-align: center;
}

.disclaimer,
.provisional {
  font-size: 0.78rem;
  color: rgba(247,242,235,0.38);
  line-height: 1.6;
}

.disclaimer {
  margin-bottom: 0.25rem;
}

/* === Chatbot Widget === */
.chatbot-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.chatbot-toggle {
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 2rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-lg);
  transition: background var(--ease), border-color var(--ease);
  font-family: var(--font-sans);
}
.chatbot-toggle:hover {
  background: var(--charcoal-mid);
  border-color: var(--gold-dark);
}

.chatbot-icon {
  display: flex;
  align-items: center;
  color: var(--gold);
}

.chatbot-panel {
  width: min(340px, calc(100vw - 2rem));
  background: var(--white);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 500px;
}

.chatbot-header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.chatbot-close {
  background: none;
  border: none;
  color: rgba(247,242,235,0.7);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
}
.chatbot-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 140px;
}

.chat-msg {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 88%;
}

.chat-msg.bot {
  background: var(--cream);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-msg.user {
  background: var(--charcoal);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-prompts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.chat-prompt {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 2rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: background var(--ease), color var(--ease);
  line-height: 1.4;
}
.chat-prompt:hover {
  background: var(--cream);
}

.chatbot-cta-row {
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--taupe);
  flex-shrink: 0;
}

.chatbot-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
}

.chatbot-input-row {
  display: flex;
  border-top: 1px solid var(--taupe);
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  border: none;
  padding: 0.65rem 0.85rem;
  font-size: 0.86rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
}
.chatbot-input:focus {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.chatbot-send {
  background: var(--gold);
  border: none;
  padding: 0.65rem 1rem;
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-sans);
  transition: background var(--ease);
  flex-shrink: 0;
}
.chatbot-send:hover {
  background: var(--gold-dark);
}

/* === Print === */
@media print {
  .site-header,
  .chatbot-widget,
  .hero-ctas,
  .btn,
  .quote-form,
  .chatbot-widget {
    display: none !important;
  }
}
