:root {
  --color-copper: #c16a3d;
  --color-copper-dark: #8e4722;
  --color-sky: #5ea9d6;
  --color-sky-light: #dff2fb;
  --color-ink: #20232f;
  --color-muted: #5f6675;
  --color-bg: #fcfaf7;
  --color-card: #fffefe;
  --color-border: #e7ddd4;
  --color-shadow: rgba(22, 33, 52, 0.08);
  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top right, rgba(94, 169, 214, 0.13), transparent 30%),
    radial-gradient(circle at left center, rgba(193, 106, 61, 0.08), transparent 22%),
    var(--color-bg);
  line-height: 1.6;
}

body[data-page="home"] main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body[data-page="home"] main::before,
body[data-page="home"] main::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

body[data-page="home"] main::before {
  width: 34rem;
  height: 34rem;
  top: 2rem;
  right: -15rem;
  background:
    radial-gradient(circle, rgba(94, 169, 214, 0.2) 0 2px, transparent 2.5px) 0 0 / 22px 22px,
    radial-gradient(circle at center, rgba(94, 169, 214, 0.12), transparent 68%);
}

body[data-page="home"] main::after {
  width: 28rem;
  height: 28rem;
  top: 38rem;
  left: -16rem;
  border: 1px solid rgba(193, 106, 61, 0.16);
  box-shadow:
    0 0 0 3rem rgba(193, 106, 61, 0.025),
    0 0 0 6rem rgba(94, 169, 214, 0.025);
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--color-copper-dark);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: white;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 221, 212, 0.7);
  overflow: visible;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-copper), var(--color-sky));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  display: block;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 35;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a,
.dropdown-toggle {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--color-ink);
  font-weight: 700;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.nav-list a.active {
  background: white;
  box-shadow: 0 10px 20px var(--color-shadow);
  outline: none;
}

.nav-cta {
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  color: white;
  box-shadow: 0 16px 30px rgba(193, 106, 61, 0.28);
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 260px;
  padding: 0.6rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 40px rgba(19, 31, 53, 0.12);
  border: 1px solid var(--color-border);
  display: none;
  z-index: 60;
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  font-weight: 600;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
}

main {
  flex: 1;
}

.section {
  padding: 2.7rem 0;
}

.section-tight {
  padding: 1.35rem 0 2.15rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(94, 169, 214, 0.14);
  color: var(--color-copper-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
}

.service-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.copywriting-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.balanced-pair,
.contact-grid {
  align-items: stretch;
}

.balanced-pair > *,
.contact-grid > * {
  height: 100%;
}

.contact-grid {
  align-items: start;
}

.contact-grid > * {
  height: auto;
}

.hero-card,
.card,
.bubble,
.placeholder-panel,
.cta-strip,
.form-card,
.calendar-card,
.highlight-panel {
  background: var(--color-card);
  border: 1px solid rgba(231, 221, 212, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 40px var(--color-shadow);
}

.hero-card {
  padding: 2.35rem;
}

.about-hero-copy {
  padding: 2rem 2.35rem 1.4rem;
}

.about-hero-copy p {
  font-size: 1.1rem;
}

.about-hero-copy p:last-child {
  margin-bottom: 0;
}

.service-hero-copy {
  padding: 1.45rem 1.9rem 1.3rem;
}

.service-hero-copy .eyebrow {
  margin-bottom: 0.15rem;
}

.service-hero-copy p:last-child {
  margin-bottom: 0;
}

.centered-service-copy {
  text-align: center;
}

.centered-service-copy .eyebrow {
  align-self: center;
}

.centered-service-copy h1 {
  max-width: 100%;
  margin-inline: auto;
}

.seo-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
}

.social-hero-copy h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.7rem);
}

.copywriting-hero-copy .lede {
  font-size: 1.24rem;
}

.home-hero-section {
  padding-top: 3.2rem;
}

.home-hero-section .hero-card:first-child {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.94)),
    var(--color-card);
}

.hero-art {
  padding: 1.7rem;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  background:
    linear-gradient(150deg, rgba(193, 106, 61, 0.16), rgba(94, 169, 214, 0.16)),
    white;
}

.hero-art .stat-bubble {
  background: rgba(255, 255, 255, 0.88);
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(94, 169, 214, 0.22);
}

.hero-art strong {
  display: block;
  font-size: 1.35rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.lede {
  font-size: 1.1rem;
  max-width: 58ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  color: white;
}

.button-secondary {
  background: white;
  border: 1px solid var(--color-border);
}

.button-ghost {
  background: rgba(94, 169, 214, 0.12);
  color: var(--color-ink);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-services-grid {
  align-items: stretch;
}

.cards-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.bubble,
.highlight-panel,
.cta-strip,
.form-card,
.calendar-card,
.placeholder-panel {
  padding: 1.3rem;
}

.authority-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.authority-copy .eyebrow {
  align-self: flex-start;
}

.authority-copy h2 {
  max-width: 15ch;
  margin-top: 0.55rem;
  font-size: clamp(2.25rem, 3.8vw, 3.35rem);
}

.authority-copy p {
  font-size: 1.08rem;
}

.authority-copy p:last-child {
  margin-bottom: 0;
}

.centered-intro {
  margin-inline: auto;
  text-align: center;
}

.centered-intro p {
  margin-inline: auto;
  max-width: 64ch;
}

.home-service-card {
  color: inherit;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  color: inherit;
  transform: translateY(-4px);
  border-color: rgba(193, 106, 61, 0.38);
  box-shadow: 0 28px 46px rgba(22, 33, 52, 0.13);
}

.home-service-card p {
  flex: 1;
}

.home-service-card .service-link {
  color: var(--color-copper-dark);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(193, 106, 61, 0.18), rgba(94, 169, 214, 0.25));
  color: var(--color-copper-dark);
  font-weight: 900;
}

.home-service-card .card-icon {
  margin-inline: auto;
}

.label-list,
.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.label-list li,
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--color-muted);
}

.label-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-copper);
  box-shadow: 0 0 0 4px rgba(193, 106, 61, 0.14);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-ink);
  color: white;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.process-step {
  text-align: center;
}

.process-step span {
  margin-inline: auto;
}

.placeholder-image {
  border-radius: 24px;
  min-height: 260px;
  border: 1px dashed rgba(95, 102, 117, 0.42);
  background:
    linear-gradient(135deg, rgba(193, 106, 61, 0.1), rgba(94, 169, 214, 0.14)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.55) 16px,
      rgba(255, 255, 255, 0.15) 16px,
      rgba(255, 255, 255, 0.15) 32px
    );
  display: flex;
  align-items: end;
  padding: 1rem;
}

.placeholder-image.has-photo {
  border-style: solid;
  border-color: rgba(94, 169, 214, 0.2);
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.placeholder-image p {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
}

.service-showcase {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-style: solid;
  border-color: rgba(94, 169, 214, 0.18);
  min-height: 390px;
  background:
    linear-gradient(160deg, rgba(193, 106, 61, 0.12), rgba(94, 169, 214, 0.16)),
    #f8f4ef;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.image-zoom-link {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  cursor: zoom-in;
}

.service-showcase img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  padding: 0.7rem;
}

.service-showcase figcaption {
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  border-top: 1px solid rgba(94, 169, 214, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.about-showcase img {
  padding: 0.7rem;
}

.zoom-note {
  color: var(--color-copper-dark);
  font-size: 0.86rem;
  white-space: nowrap;
}

.supporting-panel,
.contact-reasons {
  align-self: center;
  height: auto !important;
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(242, 240, 237, 0.97), rgba(232, 240, 244, 0.94));
  border: 1px solid rgba(95, 102, 117, 0.18);
  box-shadow: 0 18px 34px rgba(22, 33, 52, 0.07);
}

.ai-guardrails-panel {
  width: min(100%, 31rem);
  justify-self: center;
}

.contact-reasons {
  width: min(100%, 34rem);
  justify-self: center;
}

.team-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  background: var(--color-card);
  border: 1px solid rgba(231, 221, 212, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 40px var(--color-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-photo-shell {
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(193, 106, 61, 0.12), rgba(94, 169, 214, 0.16));
}

.team-photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-copy {
  padding: 1.35rem;
}

.team-copy h3 {
  margin-bottom: 0.6rem;
}

.team-copy p {
  margin-bottom: 0;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  background: linear-gradient(145deg, rgba(193, 106, 61, 0.18), rgba(94, 169, 214, 0.18));
}

.cta-strip p {
  max-width: 54ch;
}

.cta-strip > .button {
  flex: 0 0 auto;
  min-width: 9rem;
  white-space: nowrap;
}

.centered-actions {
  justify-content: center;
}

.wide-cta > div {
  flex: 1;
}

.wide-cta p {
  max-width: 78ch;
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--color-ink);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(94, 169, 214, 0.35);
  outline-offset: 3px;
}

.field-note,
.form-status,
.microcopy {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.form-status {
  min-height: 1.2rem;
  font-weight: 700;
}

.contact-grid .form-card,
.contact-grid .calendar-card {
  display: flex;
  flex-direction: column;
}

.contact-grid .form-card form {
  flex: none;
}

.contact-form {
  gap: 0.65rem;
}

.contact-form .field-note,
.contact-form .form-status {
  margin: 0;
}

.contact-form-actions {
  justify-content: center;
  margin-top: 0.15rem;
}

.form-status.error {
  color: #9b2c2c;
}

.form-status.success {
  color: #1d6f42;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.calendar-grid {
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.day-pill {
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 18px;
  min-height: 84px;
  padding: 0.8rem 0.35rem 0.65rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.day-pill.available {
  border-color: rgba(94, 169, 214, 0.42);
  background: linear-gradient(180deg, rgba(223, 242, 251, 0.82), rgba(255, 255, 255, 0.98));
}

.day-pill.unavailable {
  background: rgba(245, 240, 235, 0.75);
  color: rgba(95, 102, 117, 0.72);
  cursor: not-allowed;
}

.day-pill.past {
  background: rgba(241, 236, 231, 0.9);
  color: rgba(95, 102, 117, 0.62);
  border-style: dashed;
  cursor: not-allowed;
}

.day-pill.today {
  box-shadow: inset 0 0 0 2px rgba(193, 106, 61, 0.3);
}

.day-pill.available:hover,
.day-pill.available:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(19, 31, 53, 0.1);
}

.day-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-ink);
}

.day-weekday {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.calendar-caption {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
}

.calendar-spacer {
  min-height: 84px;
}

.availability-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(231, 221, 212, 0.8);
}

.calendar-live-embed[hidden],
.calendar-shell[hidden],
.embed-placeholder[hidden] {
  display: none !important;
}

.calendar-live-embed {
  margin-top: 1rem;
}

.calendar-embed-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(94, 169, 214, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(19, 31, 53, 0.08);
}

.calendar-embed-shell iframe {
  display: block;
  width: 100%;
  min-height: 880px;
  border: 0;
  background: white;
}

.availability-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
}

.availability-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--color-muted);
}

.availability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--color-copper);
}

.calendar-shell {
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px dashed rgba(95, 102, 117, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(223, 242, 251, 0.45));
  padding: 1rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.calendar-toolbar strong {
  font-size: 1rem;
}

.calendar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(94, 169, 214, 0.22);
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.embed-placeholder {
  margin-top: 1rem;
  border-radius: 20px;
  border: 1px dashed rgba(193, 106, 61, 0.35);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

.embed-placeholder strong {
  display: block;
  margin-bottom: 0.35rem;
}

.trust-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(94, 169, 214, 0.09);
  border: 1px solid rgba(94, 169, 214, 0.16);
}

.day-pill.selected {
  background: var(--color-ink);
  color: white;
  border-color: var(--color-ink);
}

.day-pill.selected .day-number,
.day-pill.selected .day-weekday {
  color: white;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(231, 221, 212, 0.8);
  background: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.service-link {
  font-weight: 700;
  text-decoration: none;
}

.page-intro {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.section-heading-spaced {
  margin-bottom: 1.35rem;
}

.subtle-panel {
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(94, 169, 214, 0.09);
  border: 1px solid rgba(94, 169, 214, 0.16);
}

@media (max-width: 980px) {
  .cards-grid,
  .cards-grid.three-up,
  .process-grid,
  .footer-grid,
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .service-hero {
    grid-template-columns: 1fr;
  }

  .copywriting-hero {
    grid-template-columns: 1fr;
  }

  .cards-grid.two-up,
  .team-showcase,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 22px 40px rgba(19, 31, 53, 0.14);
    border: 1px solid var(--color-border);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 0.3rem;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.4rem;
    box-shadow: none;
  }

  .dropdown::after {
    display: none;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-showcase {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2.35rem 0;
  }

  .section-tight {
    padding: 1.1rem 0 1.8rem;
  }

  .hero-card,
  .hero-art,
  .card,
  .bubble,
  .highlight-panel,
  .cta-strip,
  .form-card,
  .calendar-card,
  .placeholder-panel {
    padding: 1.2rem;
  }

  h1 {
    max-width: 100%;
  }

  .service-showcase {
    min-height: 280px;
  }

  .service-showcase figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .calendar-spacer,
  .day-pill {
    min-height: 72px;
  }
}
