/* ============================================================
   Wix Design Team ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â design tokens
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');


:root {
  /* color */
  --paper: #F1F2ED;
  --paper-raised: #FAFAF7;
  --ink: #14171C;
  --ink-soft: #4A505B;
  --ink-faint: #868C86;
  --line: #D8DAD2;
  --line-strong: #BFC3BA;
  --accent: #3654FF;
  --accent-ink: #101B66;
  --accent-soft: #E4E8FF;
  --warn: #FF6A3D;
  --warn-soft: #FFE7DC;
  --mint: #BFE8D4;
  --mint-ink: #0F4A32;

  /* type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif !important;
  --font-mono: 'JetBrains Mono', monospace;

  /* layout */
  --maxw: 1160px;
  --radius: 10px;
  --radius-sm: 6px;
}

* {box-sizing: border-box;}
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  background-image:
    radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none !important; font-family: var(--font-body);}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
  margin: 0;
}

p {
 margin: 0;
 font-family: var(--font-body);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
}
.eyebrow::before { content: ""; font-size: 8px; }

/* keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Trademark disclaimer strip
   ============================================================ */
.disclaimer-strip {
  background: var(--ink);
  color: #C9CCD1;
  font-size: 12.5px;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}
.disclaimer-strip strong { color: #fff; font-weight: 600; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 242, 237, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--ink);
  position: relative;
  flex: none;
}
.logo .logo-mark::before,
.logo .logo-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
}
.logo .logo-mark::before { width: 10px; height: 4px; top: 7px; left: 5px; }
.logo .logo-mark::after { width: 6px; height: 4px; bottom: 7px; right: 5px; background: var(--warn); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -20px;
  height: 2px; background: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: none;
}
@media (min-width: 860px) { .nav-phone { display: inline; } }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  transition: transform .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 65px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 22px;
    font-size: 17px;
    border-top: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-toggle { display: block; }
  .btnn-nav { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btnn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btnn:hover { transform: translateY(-1px); }
.btnn-primary { background: var(--ink); color: #fff; }
.btnn-primary:hover { background: #262A31; }
.btnn-accent {background: var(--warn) !IMPORTANT;color: #fff !important;}
.btnn-accent:hover { background: #E85A2F; }
.btnn-ghost {background: transparent;border-color: #000000;color: var(--ink);}
.btnn-ghost:hover {border-color: var(--ink);background: #000;color: #fff;}
.btnn-block { width: 100%; justify-content: center; }

/* ============================================================
   Hero + editor mockup (signature element)
   ============================================================ */
.hero {
  padding: 64px 0 40px !IMPORTANT;
  /* background: linear-gradient(45deg, #4550fd7a, #f768388c); */
  background: radial-gradient(120% 140% at 85% -10%, #4550fd7a 0%, #fff 45%, #f768388c 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p.lead {
  font-size: 17.5px !important;
  color: #000000;
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-proof {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #4550fd;
}
.hero-proof b { color: var(--ink); font-size: 18px; font-family: var(--font-display); display: block; }

/* the editor canvas mockup */
.editor {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(20,23,28,.25);
  overflow: hidden;
}
.editor-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.editor-chrome .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.editor-chrome .addr {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  flex: 1;
}
.editor-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.block {
  border: 1.5px dashed var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--paper-raised);
}
.block .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-faint);
}
.block .bar { height: 8px; border-radius: 3px; background: var(--line); flex: 1; margin: 0 14px; }
.block.is-selected {
  border-style: solid;
  border-color: var(--accent);
  background: var(--accent-soft);
  position: relative;
}
.block.is-selected .tag { color: var(--accent-ink); }
.block.is-selected .bar { background: #C3CBFF; }
.block.is-selected::after {
  content: "editing";
  position: absolute;
  top: -10px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}
.block.tall { height: 64px; align-items: flex-start; }
.block.tall .bar { align-self: center; }

@media (prefers-reduced-motion: no-preference) {
  .block.is-selected { animation: pulse 2.4s ease-in-out infinite; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(54,84,255,.18); }
  50% { box-shadow: 0 0 0 6px rgba(54,84,255,.06); }
}

/* ============================================================
   Sections / general
   ============================================================ */
section {padding: 72px 0 !IMPORTANT;}
.section-head {
  max-width: 640px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-top: 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 12px;
}
.section-alt { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* service tag list style ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â component tags echo the site-builder metaphor */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--mint);
  color: var(--mint-ink);
}
.chip.alt { background: var(--warn-soft); color: #8A3316; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 14.5px; }
.card .tag { font-family: var(--font-mono); font-size: 11px; color: var(--accent); font-weight: 600; }

.service-card { display: flex; flex-direction: column; gap: 12px; }
.service-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--paper); }

ul.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
ul.check-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: flex-start; }
ul.check-list li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  margin-top: 2.5px;
  border-radius: 4px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  background-image: linear-gradient(135deg, transparent 40%, var(--accent) 40% 60%, transparent 60%);
}

/* process steps: numbered because build order is genuinely sequential */
.process { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 700; padding-top: 3px; }
.step h4 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 14.5px; max-width: 60ch; }

/* pricing */
.pricing-toggle-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-bottom: 30px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 20px 40px -24px rgba(54,84,255,.35);
}
.plan.featured::before {
  content: "MOST BOOKED";
  position: absolute; top: -12px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.plan-name { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }
.plan-price { font-family: var(--font-display); font-size: 38px; }
.plan-price span { font-family: var(--font-body); font-size: 14px; color: var(--ink-faint); font-weight: 500; }
.plan-desc { color: var(--ink-soft); font-size: 14px; margin-top: -8px; }

.addons { margin-top: 44px; }
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
}
.addon-row:last-child { border-bottom: 1px solid var(--line); }
.addon-row .name { font-weight: 600; font-size: 15px; }
.addon-row .desc { color: var(--ink-soft); font-size: 13.5px; margin-top: 3px; }
.addon-row .price { font-family: var(--font-mono); font-size: 14px; white-space: nowrap; color: var(--accent-ink); }

/* changes */
section.portfoliowrp .btnns_group.text-center {
    padding-top: 30px;
}

section.portfoliowrp .pad-top {
    margin-bottom: 10px;
}
.profsSec {
    padding: 4rem 0;
}
.port {
    width: 100%;
}
.port-card{
    display: inline-block;
    transition: 1s cubic-bezier(.51, .92, .27, .96) !important;
    box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 16%);
    border-radius: 20px;
    margin: 0 4px;
    height: 400px;
    overflow: hidden;
    background-size: cover;
    width: 100%;
}
.port-card:hover {
    background-position: 100%;
    transition: 3s !important;
}


/* faq */
details.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
details.faq-item:last-child { border-bottom: 1px solid var(--line); }
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15.5px;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  flex: none;
  transition: transform .15s;
}
details.faq-item[open] summary::after { content: "ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ"; }
details.faq-item p { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; max-width: 62ch; }

/* testimonials */
.testi {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: var(--radius);
  padding: 24px;
}
.testi p.quote { font-size: 15px; color: var(--ink); margin-bottom: 16px; }
.testi .who { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 26px; color: #fff; max-width: 480px; }
.cta-band p { color: #A9AEB6; margin-top: 8px; }

/* contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: 1px solid var(--line); }
.contact-info-item .icon-wrap {
  width: 38px; height: 38px; flex: none;
  border-radius: 9px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon-wrap svg { width: 18px; height: 18px; stroke: var(--accent); }
.contact-info-item .label { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); margin-bottom: 3px; }
.contact-info-item .value { font-weight: 600; font-size: 15px; }
.contact-info-item .value a:hover { color: var(--accent); }

form.card { gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.form-note { font-size: 12.5px; color: var(--ink-faint); }
.form-success {
  display: none;
  background: var(--mint);
  color: var(--mint-ink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* map / hours strip */
.hours-strip {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   Footer
   ============================================================ */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-faint);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--ink-soft); font-size: 14px; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand p { color: var(--ink-soft); font-size: 14px; max-width: 32ch; margin-top: 12px; }

.legal-disclaimer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.6;
}
.legal-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.legal-bottom .links { display: flex; gap: 18px; }
.legal-bottom a:hover { color: var(--accent); }


/* ============================================================
   PHP conversion additions: homepage packages + final CTA
   ============================================================ */
.home-pricing .plan { min-height: 100%; }
.home-pricing-more {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.home-final-cta { padding-top: 72px; padding-bottom: 72px; }
.cta-band-home {
  background:
    radial-gradient(circle at 85% 15%, rgba(54, 84, 255, .30), transparent 35%),
    linear-gradient(120deg, #14171C 0%, #202A42 55%, #27355E 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 26px 60px -38px rgba(20, 23, 28, .80);
}
.cta-band-home h2 { max-width: 660px; font-size: clamp(24px, 3vw, 34px); }
.cta-band-home p { max-width: 650px; }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btnn-cta-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .03);
}
.btnn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .10);
}
@media (max-width: 700px) {
  .cta-band-home { padding: 34px 24px; }
  .cta-actions { width: 100%; }
  .cta-actions .btnn { flex: 1; justify-content: center; min-width: 140px; }
}

/* ============================================================
   Shared quote popup
   ============================================================ */
body.quote-modal-open {
  overflow: hidden;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, .72);
  backdrop-filter: blur(7px);
}

.quote-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(880px, calc(100vh - 48px));
  overflow-y: auto;
  background: var(--paper-raised);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: 0 36px 100px rgba(5, 8, 14, .38);
  padding: 34px;
  transform: translateY(18px) scale(.985);
  transition: transform .2s ease;
}

.quote-modal.is-open .quote-dialog {
  transform: translateY(0) scale(1);
}

.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font: 400 28px/1 var(--font-body);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.quote-modal__close:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: rotate(4deg);
}

.quote-dialog__header {
  padding-right: 46px;
  margin-bottom: 24px;
}

.quote-dialog__header h2 {
  margin-top: 15px;
  font-size: clamp(26px, 4vw, 36px);
  max-width: 19ch;
}

.quote-dialog__header > p {
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 62ch;
}

.quote-selection {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 7px 11px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.quote-selection::before {
  content: "Selected:";
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 500;
}

.quote-popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field label span {
  color: var(--ink-faint);
  font-weight: 400;
}

.form-message {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
}

.form-message[hidden] {
  display: none;
}

.form-message.is-success {
  display: block;
  background: var(--mint);
  color: var(--mint-ink);
  border: 1px solid rgba(15, 74, 50, .18);
}

.form-message.is-error {
  display: block;
  background: var(--warn-soft);
  color: #7A2B14;
  border: 1px solid rgba(122, 43, 20, .18);
}

.quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

[data-quote-form] button[type="submit"][disabled] {
  cursor: wait;
  opacity: .72;
}

@media (max-width: 620px) {
  .quote-modal {
    padding: 10px;
    align-items: end;
  }

  .quote-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 18px 18px 12px 12px;
    padding: 26px 20px 22px;
  }

  .quote-dialog__header {
    padding-right: 36px;
    margin-bottom: 20px;
  }

  .quote-modal__close {
    top: 12px;
    right: 12px;
  }
}
