@charset "utf-8";
/* ================================================================
   Get Me Automated — Global Stylesheet
   ----------------------------------------------------------------
   Bold-playful. Logo-black anchor + brand turquoise/blue/yellow
   accents on cream paper. Hard offset shadows. Chunky shapes.
   ================================================================ */

/* ----- 1. Tokens ---------------------------------------------- */
:root {
  /* Surface */
  --cream:    #FFF7EA;
  --cream-2:  #FFEFD5;
  --cream-3:  #F5EAD0;

  /* Ink */
  --ink:      #000000;
  --ink-soft: #333333;
  --ink-mute: #5C5C5C;

  /* Brand accents (from getmeautomated.com palette) */
  --navy:      #00005D;
  --navy-dk:   #000042;
  --blue:      #3E6DD8;
  --blue-dk:   #2A4FA0;
  --tomato:    #F20000;
  --tomato-dk: #C20000;
  --teal:      #00C7CF;
  --teal-dk:   #008B96;
  --yellow:    #F7C71C;
  --mustard:   #FFD500;
  --yellow-dk: #D9AC0F;

  /* Lines / shadows */
  --line:      #E6DCC4;
  --line-2:    #D9CFB7;
  --shadow:    4px 4px 0 var(--ink);
  --shadow-sm: 2px 2px 0 var(--ink);
  --shadow-lg: 6px 6px 0 var(--ink);

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Motion */
  --t-fast: .15s ease;
  --t-norm: .25s ease;
}

/* ----- 2. Reset / base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--teal-dk); }
::selection { background: var(--yellow); color: var(--ink); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style-position: inside; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-variation-settings: "opsz" 96; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
p { color: var(--ink-soft); }
p + p { margin-top: 1em; }
strong { font-weight: 700; color: var(--ink); }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-weight: 600; z-index: 1000;
}
.skip-link:focus { top: 16px; color: var(--cream); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--ink-mute); font-weight: 500;
}

/* ----- 3. Layout ---------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section        { padding: 96px 0; }
.section-tight  { padding: 64px 0; }
.section-wide   { padding: 128px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-wide { padding: 80px 0; }
}

.hr-thick { border: 0; border-top: 2px solid var(--ink); }

/* ----- 4. Header / nav ---------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  letter-spacing: -.01em; color: var(--ink);
}
.nav-logo img { width: 36px; height: 36px; }
.nav-logo:hover { color: var(--teal-dk); }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-menu > li > a {
  display: block; padding: 9px 14px; font-weight: 500;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.is-active {
  background: var(--ink); color: var(--cream);
}
.btn-nav {
  background: var(--yellow);
  color: var(--ink) !important;
  border: 2px solid var(--ink);
  padding: 9px 16px !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.btn-nav:hover { background: var(--ink); color: var(--cream) !important; }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " \25BE"; font-size: .7em; opacity: .6; margin-left: 2px; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: -8px;
  min-width: 320px; padding: 10px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; font-size: .95rem;
  font-weight: 500;
}
.dropdown li a:hover { background: var(--cream-3); }

.icon {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
  color: var(--cream);
  background: var(--ink);
}
.icon-teal { background: var(--teal); }
.icon-tomato { background: var(--tomato); }
.icon-blue   { background: var(--blue); }
.icon-mustard, .icon-yellow { background: var(--yellow); color: var(--ink); }
.icon-plum, .icon-navy   { background: var(--ink); }
.icon-tomato-dk { background: var(--tomato-dk); }
.icon-teal-dk   { background: var(--teal-dk); }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px; height: 36px;
  border: 2px solid var(--ink); border-radius: 8px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  padding: 8px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px var(--gutter) 24px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    transform: translateY(-150%);
    transition: transform var(--t-norm);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu > li > a { padding: 14px 16px; border-radius: 10px; }
  .has-dropdown > a::after { display: none; }
  .dropdown {
    position: static; min-width: 0; padding: 4px 0 12px 16px;
    background: transparent; border: 0; border-radius: 0;
    box-shadow: none; opacity: 1; visibility: visible;
    transform: none;
  }
  .dropdown li a { padding: 8px 10px; font-size: .9rem; }
  .btn-nav { margin-top: 4px; text-align: center; }
}

/* ----- 5. Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
}
.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-sm);
}
.btn-cta { background: var(--yellow); }
.btn-teal { background: var(--teal); color: var(--cream); }
.btn-blue { background: var(--blue); color: var(--cream); }
.btn-ghost { box-shadow: none; }
.btn-ghost:hover { box-shadow: var(--shadow-sm); }

/* Pill tag (eyebrow chip) */
.pill {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-mono); font-size: .75rem;
  text-transform: uppercase; letter-spacing: .18em; font-weight: 500;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--ink);
}

/* ----- 6. Hero ------------------------------------------------ */
.hero {
  padding: 96px 0 64px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--teal); }
.hero h1 .accent-yellow { color: var(--yellow-dk); }
.hero p.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero .hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
@media (max-width: 540px) {
  .hero { padding: 64px 0 40px; }
  .hero .hero-actions { flex-direction: column; align-items: stretch; }
  .hero .hero-actions .btn { display: block; }
}

/* ----- 7. Cards ----------------------------------------------- */
.card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}
.card .icon-lg {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 10px;
  font-size: 22px; font-weight: 800;
  color: var(--cream);
  margin-bottom: 16px;
  background: var(--ink);
}
.card .icon-lg.is-teal     { background: var(--teal); }
.card .icon-lg.is-blue     { background: var(--blue); }
.card .icon-lg.is-yellow   { background: var(--yellow); color: var(--ink); }
.card .icon-lg.is-navy     { background: var(--navy); }
.card .icon-lg.is-tomato    { background: var(--tomato); }
.card .icon-lg.is-tomato-dk { background: var(--tomato-dk); }
.card .icon-lg.is-mustard   { background: var(--mustard); color: var(--ink); }
.card .icon-lg.is-teal-dk  { background: var(--teal-dk); }
.card .icon-lg.is-blue-dk  { background: var(--blue-dk); }
.card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.card .summary { color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.card .card-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-mono); font-size: .85rem;
  font-weight: 500; text-decoration: underline;
}

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

/* ----- 8. Section: Why us (dark) ------------------------------ */
.dark-section {
  background: var(--ink);
  color: var(--cream);
}
.dark-section h2 { color: var(--cream); }
.dark-section .eyebrow { color: var(--yellow); }
.dark-section p { color: var(--cream-2); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  display: block;
}
.stat .stat-num.is-yellow { color: var(--yellow); }
.stat .stat-num.is-teal   { color: var(--teal); }
.stat .stat-num.is-blue   { color: var(--blue); }
.stat .stat-label { font-size: .95rem; color: var(--cream-2); margin-top: 8px; }
@media (max-width: 720px) { .stats-row { grid-template-columns: 1fr; gap: 20px; } }

/* ----- 9. CTA strip ------------------------------------------- */
.cta-strip {
  background: var(--teal);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.cta-strip h2 { color: var(--ink); margin-bottom: 16px; }
.cta-strip p { color: var(--ink); max-width: 60ch; margin: 0 auto 28px; }

/* ----- 10. Footer --------------------------------------------- */
.site-footer {
  background: var(--cream);
  border-top: 2px solid var(--ink);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-col h4 { margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--ink-soft); font-size: .92rem; }
.footer-col ul li a:hover { color: var(--ink); }
.footer-col p { font-size: .92rem; }
.footer-contact a { font-family: var(--font-mono); font-size: .85rem; }
.footer-col .btn { display: inline-block; margin-top: 14px; padding: 10px 16px; font-size: .9rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--ink); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ----- 11. Long-form (service & blog body) -------------------- */
.prose {
  max-width: 68ch;
  font-size: 1.05rem;
}
.prose h2 { margin: 48px 0 16px; font-size: clamp(1.6rem, 2.6vw, 2rem); }
.prose h3 { margin: 32px 0 12px; }
.prose p, .prose ul, .prose ol { color: var(--ink-soft); }
.prose ul, .prose ol { margin: 16px 0 24px; padding-left: 20px; list-style-position: outside; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose blockquote {
  border-left: 4px solid var(--teal);
  background: var(--cream-2);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.prose .tip-block {
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.prose .cta-box {
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}
.prose .cta-box h3 { margin-bottom: 8px; }
.prose .cta-box p { color: var(--ink); }
.prose .cta-box .btn { margin-top: 16px; background: var(--ink); color: var(--cream); }
.prose .cta-box .btn:hover { background: var(--teal-dk); }

/* ----- 12. Service detail page -------------------------------- */
.service-hero {
  padding: 80px 0 56px;
}
.service-hero .pill { margin-bottom: 20px; }
.service-hero h1 { margin-bottom: 18px; }
.service-hero .lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  max-width: 56ch;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.service-meta {
  display: inline-flex; gap: 16px; align-items: center;
  padding: 12px 20px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-mono); font-size: .9rem;
  font-weight: 500;
}
.service-meta .price { font-size: 1.05rem; font-weight: 700; }
.service-meta .sep { color: var(--ink-mute); }

.service-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
}
.service-aside {
  position: sticky; top: 100px; align-self: start;
}
.service-aside .card { padding: 20px; }
.service-aside h4 { margin-bottom: 12px; font-size: 1.05rem; }
.service-aside ul { list-style: none; }
.service-aside ul li { padding: 6px 0; font-size: .9rem; border-bottom: 1px solid var(--line); }
.service-aside ul li:last-child { border-bottom: 0; }
@media (max-width: 900px) {
  .service-body { grid-template-columns: 1fr; gap: 40px; }
  .service-aside { position: static; }
}

/* ----- 13. Blog index ----------------------------------------- */
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; gap: 14px; }
.blog-card .blog-card-meta { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-mute); }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--teal-dk); }
.blog-card .read-more { font-family: var(--font-mono); font-size: .85rem; font-weight: 500; text-decoration: underline; margin-top: auto; }

/* ----- 14. Blog post ------------------------------------------ */
.post-hero { padding: 64px 0 40px; }
.post-hero .breadcrumb { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-mute); margin-bottom: 16px; }
.post-hero .breadcrumb a { color: var(--ink-mute); text-decoration: underline; }
.post-hero h1 { margin-bottom: 16px; }
.post-hero .post-meta { font-family: var(--font-mono); font-size: .85rem; color: var(--ink-mute); }

.related-posts {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 2px solid var(--ink);
}
.related-posts h2 { margin-bottom: 24px; font-size: 1.5rem; }

/* ----- 15. About / page hero ---------------------------------- */
.page-hero { padding: 80px 0 48px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 60ch; }

/* ----- 16. Forms (contact) ------------------------------------ */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: 0;
  transition: box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  box-shadow: var(--shadow-sm);
}
.field textarea { min-height: 140px; resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; }

.form-success {
  background: var(--teal);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.form-error {
  background: var(--cream-2);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

/* ----- 17. Contact split layout ------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside .card { padding: 28px; }
.contact-aside h3 { margin-bottom: 16px; }
.contact-aside .contact-row {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.contact-aside .contact-row:last-child { border-bottom: 0; }
.contact-aside .contact-row .label { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-mute); width: 60px; }
.contact-aside .contact-row a { font-weight: 600; }

/* ----- 18. Misc utilities ------------------------------------- */

/* ----- pricing tiers ------------------------------------------ */
.pricing-section { background: var(--cream-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.pricing-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.pricing-card.is-featured {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-8px);
}
.pricing-card.is-featured:hover { transform: translate(-2px, -10px); }
.pricing-card.is-featured .pricing-name { color: var(--yellow); }
.pricing-card.is-featured .pricing-price { color: var(--cream); }
.pricing-card.is-featured .pricing-build { color: var(--cream-2); }
.pricing-card.is-featured .pricing-features li { color: var(--cream-2); border-color: rgba(255, 247, 234, 0.15); }
.pricing-badge {
  position: absolute; top: -14px; right: 20px;
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.pricing-name {
  font-family: var(--font-mono);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-price .amt { font-size: clamp(2.4rem, 4vw, 3rem); }
.pricing-price .mo  { font-size: 1rem; font-weight: 400; color: var(--ink-mute); margin-left: 4px; }
.pricing-build {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--ink-mute);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  font-size: .95rem;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  position: relative; padding-left: 22px;
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-features li::before {
  content: "\2713";
  position: absolute; left: 0; top: 8px;
  font-weight: 700; color: var(--teal-dk);
}
.pricing-card.is-featured .pricing-features li::before { color: var(--teal); }
.pricing-cta { width: 100%; margin-top: auto; }
.pricing-card.is-featured .pricing-cta { background: var(--yellow); color: var(--ink); }
.pricing-card.is-featured .pricing-cta:hover { background: var(--cream); }
.pricing-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--ink-mute);
  margin-top: 32px;
}

/* ----- chat / booking page ----------------------------------- */
.chat-hero { padding: 80px 0 48px; }
.chat-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .chat-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.chat-hero-text h1 { margin-bottom: 18px; }
.chat-hero-text .lede {
  font-size: clamp(1.1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.chat-hero-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.chat-hero-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--line);
  font-size: .98rem;
  color: var(--ink-soft);
}
.chat-hero-list li:last-child { border-bottom: 0; }
.chat-hero-list li::before {
  content: "\2192";
  position: absolute; left: 0; top: 10px;
  font-weight: 700; color: var(--teal-dk);
}
.chat-hero-list strong { color: var(--ink); }

.chat-hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chat-meta-row {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .85rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.chat-meta-row:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.chat-meta-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-mute);
  font-weight: 500;
}
.chat-meta-value {
  font-weight: 700;
  color: var(--ink);
}

/* Photo collage */
.chat-hero-photos {
  position: relative;
  height: 480px;
  display: block;
}
.photo-card {
  position: absolute;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card-1 {
  top: 0; left: 0;
  width: 60%; height: 65%;
  z-index: 3;
  transform: rotate(-2deg);
}
.photo-card-2 {
  top: 18%; right: 0;
  width: 50%; height: 55%;
  z-index: 2;
  transform: rotate(3deg);
}
.photo-card-3 {
  bottom: 0; left: 18%;
  width: 50%; height: 45%;
  z-index: 1;
  transform: rotate(-1deg);
}

/* Fallback when images aren't uploaded yet */
.photo-card .photo-fallback-label {
  display: none;
}
.photo-card.photo-fallback {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.3;
}
.photo-card.photo-fallback::before {
  content: "\1F4F8";
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  font-size: 2rem;
  opacity: .3;
}
.photo-card.photo-fallback .photo-fallback-label {
  display: block;
  margin-top: 32px;
}
.photo-card-1.photo-fallback { background: var(--teal); color: var(--cream); }
.photo-card-1.photo-fallback .photo-fallback-label { color: var(--cream); }
.photo-card-2.photo-fallback { background: var(--yellow); }
.photo-card-3.photo-fallback { background: var(--cream-3); }

@media (max-width: 900px) {
  .chat-hero-photos { height: 360px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .chat-hero-photos { display: none; } /* don't crowd small screens */
}

/* Booking iframe */
.booking-section { background: var(--cream-2); }
.booking-frame-wrap { max-width: 920px; margin: 0 auto; }
.booking-frame-wrap h2 { text-align: center; }
.booking-frame-wrap .eyebrow { display: block; text-align: center; }
.booking-frame-wrap .muted { text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto; }

.booking-iframe-wrap {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 720px;
}
.booking-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}
@media (max-width: 720px) {
  .booking-iframe-wrap { min-height: 880px; }
  .booking-iframe-wrap iframe { height: 880px; }
}

/* ----- 19. Misc utilities ------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 12px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 36px; }
.mb-4 { margin-bottom: 48px; }
.max-prose { max-width: 70ch; }
.muted { color: var(--ink-mute); }

/* Contact page — single photo above the "skip the form" card */
.contact-photo { margin-bottom: 24px; }
.contact-photo img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto 12px;
}
.contact-photo-caption {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-mute);
  font-weight: 600;
}
