:root {
  --ink: #172431;
  --ink-soft: #3b4b5a;
  --paper: #f7f9fc;
  --paper-deep: #e7edf5;
  --white: #ffffff;
  --brick: #3e70d8;
  --brick-dark: #2956b5;
  --brick-light: #f3a087;
  --sage: #4d8171;
  --sage-dark: #193b52;
  --sage-light: #dcece6;
  --mist-blue: #eaf1fa;
  --mist-peach: #fff0ea;
  --mist-mint: #eaf5f1;
  --line: rgba(23, 36, 49, 0.13);
  --shadow: 0 30px 80px rgba(31, 55, 80, 0.12);
  --radius: 28px;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header:has(.mobile-nav.open) {
  border-color: rgba(23, 36, 49, 0.08);
  background: rgba(247, 249, 252, 0.88);
  box-shadow: 0 8px 30px rgba(31, 55, 80, 0.05);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1420px, calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand-name {
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.04em;
}

.brand-name i {
  color: var(--brick);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92em;
  font-style: italic;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(62, 112, 216, 0.32);
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--brick-dark);
}

.button-primary {
  color: white;
  background: var(--brick);
  box-shadow: 0 12px 30px rgba(41, 86, 181, 0.2);
}

.button-primary:hover {
  background: var(--brick-dark);
  box-shadow: 0 16px 34px rgba(41, 86, 181, 0.28);
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 148px 24px 84px;
  background:
    radial-gradient(circle at 50% 28%, rgba(243, 160, 135, 0.18), transparent 31%),
    linear-gradient(180deg, var(--paper) 0%, #edf3fb 100%);
}

.hero::before {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(62, 112, 216, 0.11);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 70px;
  text-align: center;
}

.hero h1 {
  max-width: 910px;
  margin: 0 auto 28px;
  font-size: clamp(58px, 8.4vw, 122px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero-intro {
  max-width: 715px;
  margin: 0 auto 30px;
  color: #526273;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.micro-proof {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 26px 0 0;
  color: #6d7b89;
  font-size: 12px;
  font-weight: 550;
}

.micro-proof > span {
  display: flex;
  align-items: center;
}

.micro-proof > span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: var(--brick);
  content: "";
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.stage-glow {
  position: absolute;
  inset: 12% 12% -5%;
  border-radius: 50%;
  background: rgba(90, 137, 229, 0.2);
  filter: blur(90px);
}

.studio-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 50px 110px rgba(30, 59, 91, 0.16), 0 2px 8px rgba(30, 59, 91, 0.07);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.window-bar > p {
  margin: 0;
  color: #607182;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8e0e9;
}

.window-dots span:first-child {
  background: var(--brick-light);
}

.status-chip {
  display: inline-flex;
  gap: 7px;
  justify-self: end;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--sage-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43816e;
}

.studio-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  min-height: 595px;
}

.notes-panel {
  padding: 46px;
  border-right: 1px solid var(--line);
  background: #eef3f8;
}

.panel-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 36, 49, 0.11);
  color: #5d6e7e;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-tag {
  padding: 4px 7px;
  border: 1px solid rgba(23, 36, 49, 0.13);
  border-radius: 5px;
  font-size: 8px;
}

.hand-notes {
  min-height: 322px;
  padding: 30px 4px 20px;
}

.hand-notes p {
  position: relative;
  margin: 0 0 18px;
  color: #516272;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 15px;
  line-height: 1.55;
}

.hand-notes p::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 9px;
  background: rgba(73, 96, 119, 0.12);
  content: "";
}

.quality-check {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  color: #687888;
  font-size: 11px;
  font-weight: 600;
}

.quality-check svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  color: white;
  background: var(--sage);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.listing-panel {
  padding: 24px;
  background: white;
}

.property-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7.6;
  border-radius: 18px;
  background: #dbe7f0;
}

.property-visual img,
.phone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.property-visual img {
  object-position: center 58%;
}

.phone-image img {
  object-position: center 55%;
}

.studio-window:hover .property-visual img {
  transform: scale(1.025);
}

.sample-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: white;
  background: rgba(23, 36, 49, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-body {
  padding: 22px 6px 10px;
}

.property-meta {
  display: flex;
  gap: 23px;
  margin-bottom: 19px;
  color: #647484;
  font-size: 11px;
}

.property-meta strong {
  margin-right: 3px;
  color: var(--ink);
  font-size: 13px;
}

.listing-kicker {
  margin-bottom: 7px;
  color: var(--brick);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-body h2 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.04;
}

.listing-body > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #607182;
  font-size: 13px;
  line-height: 1.55;
}

.section-pad {
  padding: 120px 32px;
}

.narrow {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.statement {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(62, 112, 216, 0.08);
  border-bottom: 1px solid rgba(62, 112, 216, 0.09);
  background: linear-gradient(125deg, var(--mist-blue) 0%, #f3f3fb 48%, var(--mist-peach) 100%);
}

.statement::before,
.statement::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.statement::before {
  top: -130px;
  left: -90px;
  width: 360px;
  height: 360px;
  background: rgba(62, 112, 216, 0.08);
}

.statement::after {
  right: -100px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  background: rgba(243, 160, 135, 0.12);
}

.statement .narrow {
  position: relative;
  z-index: 1;
}

.statement h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6.2vw, 88px);
  font-weight: 680;
  line-height: 1;
}

.statement h2 span {
  color: #718bb9;
}

.statement .narrow > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: #607182;
  font-size: 19px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: 70px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 70px;
}

.section-heading h2,
.audience-copy h2,
.pricing-copy h2,
.faq-heading h2,
.brief-intro h2 {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 680;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 4px auto;
  color: #607182;
  font-size: 17px;
  line-height: 1.55;
}

.sample-section {
  border-bottom: 1px solid rgba(23, 36, 49, 0.08);
  background: linear-gradient(180deg, #f8fafc 0%, #edf3f9 52%, #f8f3f1 100%);
}

.sample-shell {
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid rgba(23, 36, 49, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sample-tabs {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #e9eff6;
}

.sample-tabs button {
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #607182;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.sample-tabs button[aria-selected="true"] {
  color: white;
  background: var(--ink);
}

.sample-content {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  min-height: 530px;
}

.sample-aside {
  padding: 42px;
  border-right: 1px solid var(--line);
  background: #f1f5fa;
}

.sample-number {
  display: block;
  margin-bottom: 120px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 750;
}

.sample-aside > p {
  max-width: 170px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.sample-aside dl {
  margin: 0;
}

.sample-aside dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.sample-aside dt {
  color: #8794a1;
}

.sample-aside dd {
  margin: 0;
  font-weight: 600;
}

.copy-panel {
  padding: 54px clamp(42px, 7vw, 94px);
  animation: panel-in 280ms ease both;
}

.copy-label {
  display: block;
  margin-bottom: 25px;
  color: var(--brick);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.copy-panel h3 {
  max-width: 720px;
  margin: 0 0 25px;
  font-size: clamp(33px, 4vw, 54px);
  line-height: 1.03;
}

.copy-panel > p {
  max-width: 760px;
  margin-bottom: 18px;
  color: #526273;
  font-size: 16px;
  line-height: 1.68;
}

.rough-paper {
  position: relative;
  max-width: 770px;
  padding: 42px;
  border: 1px solid #d9e1ea;
  border-radius: 4px;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 34px, rgba(65, 91, 117, 0.08) 35px),
    #f5f8fc;
  box-shadow: 0 20px 45px rgba(35, 61, 88, 0.09);
  transform: rotate(-0.4deg);
}

.rough-paper::before {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 110px;
  height: 23px;
  background: rgba(209, 220, 233, 0.75);
  content: "";
  transform: translateX(-50%) rotate(1.3deg);
}

.rough-paper p {
  margin: 0;
  color: #526273;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 17px;
  line-height: 2.05;
}

.copy-panel .panel-note {
  margin-top: 32px;
  color: #8593a0;
  font-size: 13px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
}

.decision-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  min-height: 108px;
  padding: 20px;
  border: 1px solid #dce4ec;
  border-radius: 16px;
  background: #f8fafc;
}

.decision-card > span,
.delivery-index {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--brick);
  background: #fee8df;
  font-size: 9px;
  font-weight: 780;
}

.decision-card small,
.delivery-copy small {
  display: block;
  margin-bottom: 6px;
  color: #83919f;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.38;
}

.delivery-stack {
  overflow: hidden;
  max-width: 820px;
  border: 1px solid #d9e2eb;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 18px 42px rgba(35, 61, 88, 0.08);
}

.delivery-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border-bottom: 1px solid #dfe6ed;
}

.delivery-item:last-child {
  border-bottom: 0;
}

.delivery-copy strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.delivery-status {
  padding: 6px 9px;
  border-radius: 999px;
  color: #35695d;
  background: var(--mint);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-lines {
  display: grid;
  gap: 7px;
  width: min(100%, 430px);
}

.preview-lines i {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #d4dee8;
}

.preview-lines i:nth-child(2) { width: 88%; }
.preview-lines i:nth-child(3) { width: 94%; }
.preview-lines i:nth-child(4) { width: 62%; }

.copy-panel .delivery-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 22px;
  color: #657688;
  font-size: 12px;
  font-weight: 620;
}

.delivery-note span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
}

.social-tags {
  color: var(--brick) !important;
  font-weight: 600;
}

.sample-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  padding: 20px 30px;
  border-top: 1px solid var(--line);
  color: #5e7080;
  background: #edf2f8;
  font-size: 11px;
  font-weight: 600;
}

.sample-footer span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.sample-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.included-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading.light > p {
  color: #b8c7d4;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.included-section .section-heading {
  margin-bottom: 50px;
}

.deliverable-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  background: #f4f7fb;
}

.deliverable-card > div:last-child {
  margin-top: auto;
  padding: 20px 10px 8px;
}

.deliverable-card > div:last-child h3 {
  margin: 0 0 10px;
  font-size: 27px;
}

.deliverable-card > div:last-child p {
  max-width: 450px;
  margin: 0;
  color: #607182;
  font-size: 14px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 36, 49, 0.12);
  color: #647484;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mini-listing {
  padding: 22px 10px 18px;
}

.mini-listing-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6.6;
  border-radius: 15px;
  background: #dfe8e4;
  box-shadow: 0 14px 30px rgba(31, 55, 80, 0.12);
}

.mini-listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.mini-listing-image span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #315f54;
  background: rgba(229, 243, 238, 0.92);
  box-shadow: 0 6px 15px rgba(23, 36, 49, 0.08);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-listing-copy {
  padding: 17px 7px 0;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-bottom: 13px;
  color: #667889;
  font-size: 9px;
  font-weight: 650;
}

.mini-meta span + span::before {
  margin-right: 18px;
  color: #b3bfca;
  content: "·";
}

.mini-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--brick);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.mini-listing h3 {
  margin: 0 0 16px;
  font-size: clamp(29px, 3.3vw, 43px);
  line-height: 1;
}

.text-lines {
  display: grid;
  gap: 7px;
  max-width: 380px;
}

.text-lines i {
  height: 4px;
  border-radius: 99px;
  background: #d8e1eb;
}

.text-lines i:nth-child(2) { width: 89%; }
.text-lines i:nth-child(3) { width: 95%; }
.text-lines i:nth-child(4) { width: 64%; }

.card-social {
  background: #dcece7;
}

.phone-frame {
  width: min(310px, 78%);
  margin: 20px auto 0;
  padding: 7px;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: white;
  box-shadow: 0 30px 55px rgba(35, 74, 89, 0.2);
  transform: rotate(1.2deg);
}

.phone-frame::before {
  display: block;
  width: 62px;
  height: 11px;
  margin: 1px auto 7px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
}

.phone-image {
  overflow: hidden;
  aspect-ratio: 1 / 0.86;
  border-radius: 23px 23px 8px 8px;
}

.phone-copy {
  padding: 12px 6px 9px;
  font-size: 10px;
}

.phone-copy strong {
  font-size: 9px;
}

.phone-copy p {
  margin: 3px 0 0;
}

.card-review {
  background: #fde6de;
}

.review-list {
  display: grid;
  gap: 10px;
  padding: 34px 30px 22px;
}

.review-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 21px;
  border: 1px solid rgba(243, 128, 101, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(91, 63, 56, 0.04);
}

.review-list b {
  color: var(--sage);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-list b::before {
  content: "✓ ";
}

.card-revision {
  background: #e8eef5;
}

.revision-visual {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 18px;
  align-items: center;
  margin: auto 15px;
}

.revision-visual > span {
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 27px;
  border-radius: 18px;
  font-size: clamp(20px, 3vw, 33px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.revision-before {
  color: #98a5b1;
  background: #d9e1e9;
  text-decoration: line-through;
  text-decoration-color: var(--brick);
}

.revision-after {
  color: white;
  background: var(--sage-dark);
}

.revision-visual svg {
  fill: none;
  stroke: var(--brick);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.process-section {
  border-bottom: 1px solid rgba(77, 129, 113, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, var(--mist-mint) 100%);
}

.process-section .section-heading {
  margin-bottom: 46px;
}

.process-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 35px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brick);
  font-size: 15px;
  font-weight: 730;
}

.process-list h3 {
  margin: 4px 0 9px;
  font-size: 27px;
}

.process-list p {
  max-width: 650px;
  margin: 0;
  color: #607182;
  font-size: 15px;
}

.step-time {
  margin-top: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--sage-light);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 76px;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--mist-blue);
  box-shadow: 0 0 0 100vmax var(--mist-blue);
  clip-path: inset(0 -100vmax);
}

.audience-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.audience-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 68px);
}

.audience-copy > p:last-child {
  max-width: 430px;
  color: #607182;
  font-size: 17px;
}

.audience-cards {
  display: grid;
  gap: 14px;
}

.audience-cards article {
  min-height: 215px;
  padding: 34px 40px;
  border-radius: var(--radius);
  background: #e9f0f8;
}

.audience-cards article:nth-child(2) {
  color: white;
  background: var(--sage-dark);
}

.audience-cards article:nth-child(3) {
  background: #fde2d9;
}

.audience-cards span {
  display: block;
  margin-bottom: 54px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-cards h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.02;
}

.pricing-section {
  padding-right: 32px;
  padding-left: 32px;
  color: white;
  background: var(--sage-dark);
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-copy .eyebrow {
  color: var(--brick-light);
}

.pricing-copy h2 {
  margin-bottom: 28px;
}

.pricing-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #bed1dd;
  font-size: 18px;
}

.price-card {
  padding: 40px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.price-row {
  display: flex;
  gap: 20px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.price-row > span {
  font-size: clamp(64px, 7vw, 90px);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.price-row small {
  color: #6d7b89;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #526273;
  font-size: 13px;
}

.price-card li::before {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: white;
  background: var(--sage);
  content: "✓";
  font-size: 10px;
  font-weight: 800;
}

.price-card > p:last-child {
  margin: 15px 0 0;
  color: #8694a1;
  font-size: 10px;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--mist-peach);
  box-shadow: 0 0 0 100vmax var(--mist-peach);
  clip-path: inset(0 -100vmax);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(44px, 5vw, 66px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary::after {
  color: white;
  background: var(--brick);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 60px 30px 0;
  color: #607182;
  font-size: 15px;
  line-height: 1.65;
}

.brief-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding: 140px max(32px, calc((100vw - 1280px) / 2));
  color: white;
  background: var(--ink);
}

.brief-intro {
  align-self: start;
}

.brief-intro > img {
  margin-bottom: 55px;
}

.brief-intro h2 {
  margin-bottom: 25px;
  font-size: clamp(46px, 5vw, 68px);
}

.brief-intro > p:not(.eyebrow) {
  max-width: 530px;
  color: #b1c0cc;
  font-size: 16px;
}

.direct-email {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  color: var(--brick-light);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.brief-form {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #20303e;
}

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

.brief-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: #d0dbe4;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: white;
  background: #14232f;
  outline: none;
}

.brief-form input {
  height: 50px;
  padding: 0 15px;
}

.brief-form textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: #71818f;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-color: var(--brick-light);
}

.brief-form .consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 4px 0 23px;
  color: #91a0ad;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}

.brief-form .consent input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--brick);
}

.form-status {
  margin: 13px 0 0;
  color: #8796a3;
  font-size: 10px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding: 80px max(32px, calc((100vw - 1280px) / 2)) 30px;
  color: white;
  background: #101c26;
}

.brand-footer .brand-name {
  font-size: 24px;
}

.footer-brand > p {
  margin: 17px 0 0;
  color: #8192a0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: start;
  padding-top: 9px;
}

.footer-links a {
  color: #c5d0d9;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #71818e;
  font-size: 10px;
}

.mobile-book {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 13px 10px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 67px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 249, 252, 0.97);
    box-shadow: 0 20px 30px rgba(31, 55, 80, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(23, 36, 49, 0.08);
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.03em;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 12px;
  }

  .studio-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .notes-panel {
    padding: 30px;
  }

  .hand-notes p {
    font-size: 12px;
  }

  .section-heading,
  .audience-section,
  .faq-section,
  .brief-section,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .deliverable-card {
    min-height: 520px;
  }

  .audience-section,
  .faq-section,
  .brief-section,
  .pricing-wrap {
    gap: 55px;
  }

  .audience-copy,
  .faq-heading {
    position: static;
  }

  .price-card {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 75px;
  }

  .header-inner {
    width: calc(100% - 30px);
    min-height: 62px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 118px 15px 78px;
  }

  .hero::before {
    top: 150px;
    width: 480px;
    height: 480px;
  }

  .hero-copy {
    margin-bottom: 48px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(52px, 17vw, 76px);
    line-height: 0.91;
  }

  .hero-intro {
    max-width: 520px;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .micro-proof {
    display: grid;
    gap: 6px;
  }

  .micro-proof > span {
    justify-content: center;
  }

  .micro-proof > span:not(:last-child)::after {
    display: none;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
    height: 50px;
    padding: 0 14px;
  }

  .window-bar > p {
    display: none;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .notes-panel {
    display: none;
  }

  .listing-panel {
    padding: 12px;
  }

  .property-visual {
    aspect-ratio: 1.33 / 1;
    border-radius: 17px;
  }

  .listing-body {
    padding: 20px 9px 14px;
  }

  .listing-body h2 {
    font-size: 28px;
  }

  .section-pad {
    padding: 94px 20px;
  }

  .statement h2,
  .section-heading h2,
  .audience-copy h2,
  .pricing-copy h2,
  .faq-heading h2,
  .brief-intro h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .section-heading h2 br,
  .audience-copy h2 br,
  .pricing-copy h2 br,
  .brief-intro h2 br {
    display: none;
  }

  .statement .narrow > p:last-child {
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .sample-tabs {
    overflow-x: auto;
    padding: 13px;
  }

  .sample-tabs button {
    flex: 0 0 auto;
  }

  .sample-content {
    grid-template-columns: 1fr;
    min-height: 530px;
  }

  .sample-aside {
    display: none;
  }

  .copy-panel {
    padding: 35px 25px 45px;
  }

  .copy-panel h3 {
    font-size: 36px;
  }

  .copy-panel > p {
    font-size: 14px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    min-height: 0;
  }

  .delivery-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .delivery-status {
    grid-column: 2;
    width: max-content;
    margin-top: -3px;
  }

  .rough-paper {
    padding: 28px 23px;
  }

  .rough-paper p {
    font-size: 14px;
  }

  .sample-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    padding: 18px;
  }

  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-card {
    min-height: 470px;
    padding: 22px;
  }

  .mini-listing {
    padding: 20px 5px 18px;
  }

  .mini-listing-image {
    aspect-ratio: 16 / 7.4;
  }

  .mini-listing-copy {
    padding: 16px 4px 0;
  }

  .mini-listing h3 {
    font-size: 34px;
  }

  .review-list {
    padding: 26px 0 18px;
  }

  .revision-visual {
    grid-template-columns: 1fr;
    margin: auto 0;
  }

  .revision-visual svg {
    width: 44px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .revision-visual > span {
    min-height: 90px;
    font-size: 27px;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 17px;
    padding: 24px 0;
  }

  .step-time {
    grid-column: 2;
    justify-self: start;
    margin-top: 0;
  }

  .process-list h3 {
    font-size: 23px;
  }

  .audience-section {
    gap: 42px;
  }

  .audience-cards article {
    min-height: 185px;
    padding: 25px 29px;
  }

  .audience-cards span {
    margin-bottom: 44px;
  }

  .audience-cards h3 {
    font-size: 31px;
  }

  .pricing-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .price-card {
    padding: 28px 23px;
  }

  .price-row > span {
    font-size: 67px;
  }

  .faq-section {
    gap: 40px;
  }

  .faq-list summary {
    padding: 25px 0;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 20px;
    font-size: 14px;
  }

  .brief-section {
    padding: 94px 20px;
  }

  .brief-intro > img {
    margin-bottom: 40px;
  }

  .brief-form {
    padding: 27px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 65px 20px 82px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .mobile-book {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: white;
    background: rgba(23, 36, 49, 0.94);
    box-shadow: 0 15px 35px rgba(23, 36, 49, 0.2);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 680;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
