:root {
  --navy: #081947;
  --blue: #0b64ad;
  --sky: #dff6ff;
  --sky-2: #b9ecfb;
  --pink: #e83d75;
  --pink-dark: #c72f63;
  --white: #ffffff;
  --ink: #17213f;
  --muted: #53607d;
  --line: rgba(8, 25, 71, 0.15);
  --shadow: 0 14px 32px rgba(8, 25, 71, 0.13);
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 6%, rgba(232, 61, 117, 0.16), transparent 19rem),
    radial-gradient(circle at 84% 4%, rgba(11, 100, 173, 0.16), transparent 24rem),
    linear-gradient(180deg, #eafbff 0%, #ffffff 42%, #eef9ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(232, 61, 117, 0.3) 0 1px, transparent 1.8px);
  background-position: 0 0, 38px 24px;
  background-size: 68px 68px, 112px 112px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 60%);
}

a {
  color: inherit;
}

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

.top-frame {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 34px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.site-header {
  position: sticky;
  top: 34px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(247, 252, 255, 0.92);
  border-bottom: 1px solid rgba(8, 25, 71, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 110px;
  height: 110px;
  margin: -8px 0 -28px;
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(232, 61, 117, 0.1);
  color: var(--pink-dark);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.section {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0;
}

.hero {
  display: block;
  min-height: 590px;
  padding: 52px clamp(20px, 4vw, 56px) 124px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(234, 251, 255, 0.98) 0%, rgba(234, 251, 255, 0.94) 38%, rgba(234, 251, 255, 0.48) 58%, rgba(234, 251, 255, 0.02) 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    linear-gradient(180deg, #dff6ff, #f8fdff);
  box-shadow: 0 16px 45px rgba(8, 25, 71, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(232, 61, 117, 0.28) 0 1px, transparent 1.8px);
  background-position: 0 0, 46px 30px;
  background-size: 72px 72px, 126px 126px;
  opacity: 0.45;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(231, 248, 255, 0.96) 0%, rgba(231, 248, 255, 0.84) 42%, rgba(231, 248, 255, 0.3) 62%, rgba(231, 248, 255, 0) 78%),
    linear-gradient(0deg, rgba(231, 248, 255, 0.92) 0%, rgba(231, 248, 255, 0.2) 31%, rgba(231, 248, 255, 0) 54%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--pink-dark);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.12;
}

.hero-lede,
.section-heading p,
.presence p,
.about p,
.skool p,
.contact-copy p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: 0 12px 23px rgba(232, 61, 117, 0.25);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(8, 25, 71, 0.18);
}

.hero-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tagline-banner {
  width: min(560px, 100%);
  margin: 2px 0 8px;
  filter: drop-shadow(0 12px 15px rgba(8, 25, 71, 0.16));
}

.hero-mini-cards {
  max-width: 720px;
  gap: 0;
  margin-top: 12px;
  padding-left: 6px;
}

.hero-mini-cards img {
  width: 323px;
  height: 323px;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(8, 25, 71, 0.2));
}

.hero-mini-cards img:first-child {
  transform: rotate(-7deg);
}

.hero-mini-cards img:last-child {
  margin-left: -10px;
  margin-top: 18px;
  transform: rotate(6deg);
}

.hero-photo {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(52vw, 620px);
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
}

.quote-card {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4.2vw, 58px);
  bottom: 10px;
  width: min(430px, 42%);
  min-width: 320px;
  padding: 18px 26px 58px 64px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 35px rgba(8, 25, 71, 0.12);
  backdrop-filter: blur(8px);
}

.quote-card::before {
  content: "✦";
  position: absolute;
  left: 24px;
  top: 50%;
  color: var(--pink);
  font-size: 2.1rem;
  transform: translateY(-50%);
}

.quote-card p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.58vw, 1.45rem);
  line-height: 1.22;
}

.signature {
  position: absolute;
  right: -16px;
  bottom: -6px;
  width: 282px;
  max-width: 52%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(-7deg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.design-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.design-heading > div {
  max-width: 760px;
}

.design-heading .button {
  flex: 0 0 auto;
  margin-bottom: 6px;
}

.price-note {
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: 0.96rem !important;
  font-weight: 700;
}

.service-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.service-grid article,
.offer-list article,
.testimonial-grid blockquote,
.contact-form {
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.45), transparent 12rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.service-grid article {
  position: relative;
  min-height: 205px;
  padding: 68px 18px 20px;
  overflow: visible;
}

.service-grid article::after,
.offer-list article::after {
  content: "✦";
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(232, 61, 117, 0.45);
  font-size: 1.05rem;
}

.service-grid p,
.offer-list p,
.testimonial-grid p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.48;
}

.service-icon {
  position: absolute;
  top: -38px;
  left: 22px;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 13px rgba(8, 25, 71, 0.16));
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 3px solid #f8c6d7;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #f477a1);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(232, 61, 117, 0.2);
  font-size: 1.35rem;
  font-weight: 900;
}

.package-graphic-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.package-item {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 13px;
  justify-items: center;
  align-items: end;
}

.package-item img {
  width: 100%;
  max-width: 360px;
  height: 520px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 24px rgba(8, 25, 71, 0.14));
}

.package-featured img {
  filter: drop-shadow(0 20px 27px rgba(226, 168, 38, 0.2));
}

.tick-list {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 22px;
}

.tick-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer-list article {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  overflow: hidden;
}

.offer-art {
  width: 184px;
  max-width: none;
  max-height: 154px;
  object-fit: contain;
  margin-left: 0;
  filter: drop-shadow(0 14px 13px rgba(8, 25, 71, 0.2));
}

.offer-list h3 {
  margin-bottom: 5px;
}

.offer-list p,
.offer-points {
  margin-bottom: 0;
}

.offer-points {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.35;
  list-style: none;
}

.offer-points li {
  position: relative;
  padding-left: 20px;
}

.offer-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
}

.offer-price {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(8, 25, 71, 0.16);
}

.offer-price img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.offer-price strong,
.presence-price strong {
  color: var(--pink-dark);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
}

.presence-panel,
.skool {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(232, 61, 117, 0.33), transparent 17rem),
    linear-gradient(135deg, rgba(8, 25, 71, 0.95), rgba(11, 100, 173, 0.93));
  box-shadow: var(--shadow);
}

.presence-redesign {
  display: block;
  color: var(--navy);
  background:
    radial-gradient(circle at 95% 4%, rgba(255, 255, 255, 0.55), transparent 16rem),
    linear-gradient(180deg, rgba(230, 248, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.presence-redesign::before,
.presence-redesign::after {
  content: "✦";
  position: absolute;
  color: var(--pink);
  font-size: 1.5rem;
}

.presence-redesign::before {
  top: 34px;
  left: 28px;
}

.presence-redesign::after {
  top: 42px;
  right: 28px;
}

.presence-panel h2,
.presence-panel p,
.presence-panel .eyebrow,
.presence-panel li,
.skool h2,
.skool p,
.skool .eyebrow {
  color: var(--white);
}

.presence-redesign h2,
.presence-redesign h3,
.presence-redesign p,
.presence-redesign li,
.presence-redesign .eyebrow {
  color: var(--navy);
}

.presence-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
  text-align: center;
}

.presence-top h2 {
  margin-bottom: 14px;
}

.presence-subline {
  color: var(--pink-dark) !important;
  font-family: var(--serif);
  font-style: italic;
}

.presence-price-text {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: baseline;
  padding: 0 22px 12px;
  border-left: 1px solid rgba(8, 25, 71, 0.22);
}

.presence-price-text span {
  color: var(--pink-dark);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.presence-price-text strong {
  color: var(--pink-dark);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.1rem);
  font-weight: 400;
}

.included-panel {
  padding: 26px;
  border: 1px solid rgba(8, 25, 71, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 35px rgba(8, 25, 71, 0.08);
}

.included-panel > h3 {
  position: relative;
  margin-bottom: 22px;
  text-align: center;
  font-size: 2rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(8, 25, 71, 0.12);
}

.included-grid > div {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 0 10px;
  text-align: center;
}

.included-grid > div + div {
  border-left: 1px solid rgba(8, 25, 71, 0.14);
}

.mini-icon-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(8, 25, 71, 0.12));
}

.included-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.presence-body {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 28px;
  align-items: end;
}

.presence-copy-block h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.presence-info-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.presence-side-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(8, 25, 71, 0.12));
}

.presence-panel p,
.skool p {
  opacity: 0.9;
}

.presence-price {
  display: grid;
  place-items: center;
  width: 145px;
  min-height: 145px;
  border: 6px solid rgba(185, 236, 251, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
}

.presence-visual {
  position: relative;
  min-height: 285px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.presence-price span {
  color: var(--muted);
  font-weight: 900;
}

.presence-art {
  width: min(100%, 550px);
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.2));
}

.client-work {
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    linear-gradient(180deg, rgba(225, 247, 255, 0.95), rgba(241, 252, 255, 0.92));
  box-shadow: 0 16px 45px rgba(8, 25, 71, 0.08);
}

.work-heading {
  max-width: none;
  text-align: center;
}

.work-heading h2 {
  font-size: clamp(2.35rem, 5.7vw, 4.9rem);
}

.work-heading h2 span {
  color: var(--pink-dark);
}

.work-heading .click-note {
  color: var(--navy);
  font-size: 1.02rem;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 30px;
  width: min(870px, 100%);
  margin: 0 auto;
  padding: 8px 0 18px;
}

.logo-strip a {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 260px;
  padding: 22px 16px 16px;
  border: 1px solid rgba(8, 25, 71, 0.12);
  border-radius: 22px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.32), transparent 10rem);
  box-shadow: 0 18px 30px rgba(8, 25, 71, 0.13);
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.logo-strip a:nth-child(1),
.logo-strip a:nth-child(2) {
  grid-column: span 3;
  justify-self: center;
  width: min(310px, 100%);
}

.logo-strip a:nth-child(n+3) {
  grid-column: span 2;
}

.logo-strip a:nth-child(1) {
  transform: rotate(-7deg);
}

.logo-strip a:nth-child(2) {
  transform: rotate(6deg);
}

.logo-strip a:nth-child(3) {
  transform: rotate(-5deg);
}

.logo-strip a:nth-child(4) {
  transform: rotate(2deg);
}

.logo-strip a:nth-child(5) {
  transform: rotate(5deg);
}

.logo-strip a:hover {
  transform: translateY(-4px) rotate(0deg);
}

.logo-strip img {
  width: 148px;
  height: 148px;
  object-fit: contain;
}

.logo-strip span {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
}

.logo-strip small {
  position: relative;
  color: var(--navy);
  font-size: 0.76rem;
}

.logo-strip small::before {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  margin: 0 auto 6px;
  background: var(--pink);
}

.testimonial-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 24px;
}

.testimonial-grid blockquote:first-child {
  grid-row: span 2;
}

.testimonial-grid p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.07rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 900;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 455px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.skool {
  grid-template-columns: 1fr auto;
  background: linear-gradient(135deg, #f8fbff, #e4f7ff);
}

.skool h2,
.skool .eyebrow {
  color: var(--navy);
}

.skool p {
  max-width: 760px;
  color: var(--muted);
}

.contact {
  width: min(1120px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: 44px 0 54px;
}

.contact-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  filter: none;
}

.contact-promise {
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem) !important;
  line-height: 1.25 !important;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.contact-copy .button {
  margin-top: 8px;
}

.cta-availability {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
  text-decoration-color: rgba(232, 61, 117, 0.5);
  text-underline-offset: 4px;
}

.contact-icon-img {
  display: block;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 25, 71, 0.18);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(232, 61, 117, 0.2);
  border-color: var(--pink);
}

.contact-form button {
  width: 100%;
  border: 0;
}

/* Honeypot field: kept in the DOM for bots but hidden from real people. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-confirm,
.form-error {
  margin: 0;
  padding: 22px 24px;
  text-align: center;
}

.form-confirm p {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 850;
}

.form-error p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-error a {
  color: var(--pink);
  font-weight: 850;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 25, 71, 0.58);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(232, 61, 117, 0.12), transparent 14rem),
    linear-gradient(180deg, #ffffff, #f3fbff);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(8, 25, 71, 0.08);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.modal-intro {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 15px;
  align-items: center;
  padding-right: 42px;
  margin-bottom: 18px;
}

.modal-intro img {
  width: 64px;
  height: 64px;
}

.modal-intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 34px 18px;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.site-footer img {
  width: 116px;
  height: 116px;
  margin-top: -62px;
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-of-type {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer .footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--pink);
  margin-top: -3px;
}

@media (max-width: 1020px) {
  .site-nav {
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .about,
  .contact,
  .presence-panel,
  .skool {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 410px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(231, 248, 255, 0.98) 0%, rgba(231, 248, 255, 0.9) 45%, rgba(231, 248, 255, 0.18) 70%, rgba(231, 248, 255, 0) 100%),
      linear-gradient(0deg, rgba(231, 248, 255, 0.9) 0%, rgba(231, 248, 255, 0.18) 42%, rgba(231, 248, 255, 0) 70%);
  }

  .hero-photo {
    top: auto;
    left: 0;
    width: 100%;
    height: 430px;
    object-position: center 30%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
  }

  .quote-card {
    right: 24px;
    bottom: 24px;
    width: min(460px, calc(100% - 48px));
    min-width: 0;
    padding-bottom: 42px;
  }

  .hero-card {
    max-width: 430px;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-heading {
    align-items: start;
    flex-direction: column;
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(650px, 100%);
  }

  .logo-strip a:nth-child(1),
  .logo-strip a:nth-child(2),
  .logo-strip a:nth-child(n+3) {
    grid-column: span 1;
    width: 100%;
  }

  .presence-visual {
    justify-items: start;
  }
}

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

  .site-header {
    top: 34px;
  }

  .brand img {
    width: 88px;
    height: 88px;
    margin: -6px 0 -20px;
  }

  .brand span {
    max-width: 150px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 34px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .hero-card,
  .hero-card > img {
    height: auto;
    min-height: 0;
  }

  .hero-card > img {
    height: 390px;
  }

  .quote-card {
    right: 14px;
    left: 14px;
    bottom: 16px;
    width: auto;
    padding: 18px 22px 44px 58px;
  }

  .hero {
    min-height: 720px;
    padding: 34px 18px 365px;
  }

  .hero-photo {
    height: 370px;
    object-position: center 30%;
  }

  .service-grid,
  .testimonial-grid,
  .logo-strip,
  .package-graphic-wrap {
    grid-template-columns: 1fr;
  }

  .package-item img {
    height: auto;
    max-height: 620px;
  }

  .hero-mini-cards {
    max-width: 100%;
  }

  .hero-mini-cards img {
    width: 138px;
    height: 138px;
  }

  .logo-strip {
    width: min(300px, 100%);
  }

  .logo-strip a:nth-child(1),
  .logo-strip a:nth-child(2),
  .logo-strip a:nth-child(n+3) {
    grid-column: auto;
  }

  .logo-strip a {
    min-height: 238px;
  }

  .logo-strip img {
    width: 132px;
    height: 132px;
  }

  .testimonial-grid blockquote:first-child {
    grid-row: auto;
  }

  .offer-list article {
    grid-template-columns: 128px 1fr;
    padding: 16px;
  }

  .offer-art {
    width: 128px;
    max-height: 116px;
    margin-left: 0;
  }

  .offer-price {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    justify-items: start;
    align-items: center;
    padding: 12px 0 0;
    border-top: 1px solid rgba(8, 25, 71, 0.14);
    border-left: 0;
  }

  .offer-price img {
    width: 64px;
    height: 64px;
  }

  .presence-price {
    width: 170px;
    min-height: 170px;
  }

  .presence-top,
  .included-grid,
  .presence-body {
    grid-template-columns: 1fr;
  }

  .presence-price-text {
    justify-content: center;
    border-left: 0;
  }

  .included-grid > div + div {
    border-left: 0;
    border-top: 1px solid rgba(8, 25, 71, 0.12);
    padding-top: 14px;
  }
}

/* ============================================================
   P2 — Readable offers and credible proof
   ============================================================ */

/* 2.1 Package plan cards (replace the old PNG package images) */
.plan-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-top: 6px solid #aab6c6;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.4), transparent 12rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.plan-silver { border-top-color: #aab6c6; }
.plan-gold { border-top-color: #e2a826; }
.plan-platinum { border-top-color: #6f7f96; }

.plan-popular {
  box-shadow: 0 18px 36px rgba(226, 168, 38, 0.22);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2a826, #f0c14b);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(226, 168, 38, 0.3);
}

.plan-head {
  display: grid;
  gap: 4px;
}

.plan-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
}

.plan-price {
  margin: 0;
  color: var(--pink);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-features {
  display: grid;
  gap: 9px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.plan-total {
  margin: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(8, 25, 71, 0.1);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 850;
}

.plan-card .button {
  width: 100%;
}

/* 2.2 Client work — 3 on top, 2 centered below, tilted for contrast */
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  gap: 30px 22px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 10px 0;
  list-style: none;
}

.client-card {
  display: flex;
  grid-column: span 2;
  width: 100%;
  max-width: 230px;
}

/* bottom row: two cards centered under the top three */
.client-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.client-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* alternating tilt so the strip feels hand-placed */
.client-card:nth-child(1) > a { transform: rotate(-6deg); }
.client-card:nth-child(2) > a { transform: rotate(4deg); }
.client-card:nth-child(3) > a { transform: rotate(-3deg); }
.client-card:nth-child(4) > a { transform: rotate(5deg); }
.client-card:nth-child(5) > a { transform: rotate(-5deg); }

.client-card > a,
.client-card > .client-placeholder {
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: start;
  width: 100%;
  padding: 22px 16px 18px;
  border: 1px solid rgba(8, 25, 71, 0.12);
  border-radius: 22px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.32), transparent 10rem);
  box-shadow: 0 14px 28px rgba(8, 25, 71, 0.12);
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.client-card > a:hover {
  transform: translateY(-4px) rotate(0deg);
}

.client-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.client-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
}

.client-type {
  color: var(--muted);
  font-size: 0.82rem;
}

.ph-logo {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(8, 25, 71, 0.25);
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.own-projects {
  width: min(900px, 100%);
  margin: 36px auto 0;
  text-align: center;
}

.own-projects h3 {
  margin: 0 0 4px;
  color: var(--navy);
}

.own-projects > p {
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.own-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
}

/* 2.3 Recent work gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(8, 25, 71, 0.12);
  border-radius: 16px;
  background:
    repeating-linear-gradient(135deg, rgba(169, 231, 251, 0.18) 0 12px, rgba(255, 255, 255, 0.6) 12px 24px);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* 2.4 Testimonial structure */
.t-meta {
  display: grid;
  gap: 3px;
  margin-top: 16px;
}

.t-name {
  color: var(--navy);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 900;
}

.t-business {
  color: var(--muted);
  font-size: 0.86rem;
}

.t-result {
  margin-top: 4px;
  color: var(--pink-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

/* Hide the result line until a real result is added. */
.t-result:empty {
  display: none;
}

/* P2 responsive */
@media (max-width: 680px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Stack the client strip into two tidy columns on small screens. */
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(340px, 100%);
    gap: 18px;
  }

  .client-card,
  .client-card:nth-child(4),
  .client-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .client-grid .client-card > a {
    transform: rotate(0deg);
  }

  .client-grid .client-card > a:hover {
    transform: translateY(-4px) rotate(0deg);
  }

  .client-card img,
  .ph-logo {
    width: 96px;
    height: 96px;
  }
}

/* ============================================================
   P3 — FAQ
   ============================================================ */
.faq-list {
  display: grid;
  gap: 14px;
  width: min(780px, 100%);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.45), transparent 12rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(232, 61, 117, 0.3);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ============================================================
   Websites page + home teaser
   ============================================================ */

/* Home page teaser banner (sits after the packages area) */
.web-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(8, 25, 71, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(232, 61, 117, 0.14), transparent 16rem),
    linear-gradient(135deg, #f8fbff, #e4f7ff);
  box-shadow: var(--shadow);
}

.web-teaser h2 {
  margin-bottom: 8px;
}

.web-teaser p {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.web-teaser-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.web-teaser-points li {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.web-teaser-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.web-teaser-aside {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid rgba(8, 25, 71, 0.14);
}

.web-teaser-aside .price-badge {
  margin-bottom: 0;
}

.web-teaser-aside .button {
  width: 100%;
  min-width: 190px;
}

@media (max-width: 760px) {
  .web-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .web-teaser p {
    margin-inline: auto;
  }

  .web-teaser-points {
    justify-content: center;
  }

  .web-teaser-aside {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(8, 25, 71, 0.14);
  }
}

/* Keep the hero image bleed from creating a horizontal scrollbar,
   without breaking the sticky header (clip only affects the x axis). */
main {
  overflow-x: clip;
}

/* Websites page hero — open page header (no card): heading + copy on
   the left, a large device mockup on the right that runs off the edge
   of the page for a bold, designed feel. */
.web-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
  padding-top: clamp(26px, 4vw, 58px);
  padding-bottom: clamp(40px, 5vw, 74px);
}

.web-hero-copy {
  max-width: 560px;
}

.web-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
}

.web-hero .hero-lede {
  max-width: 480px;
}

.web-hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 100%;
}

.web-hero-art {
  display: block;
  width: min(100%, 640px);
  margin-left: auto;
  transform: rotate(-3deg);
  transform-origin: center;
  filter: drop-shadow(0 32px 50px rgba(8, 25, 71, 0.3));
}

@media (max-width: 900px) {
  .web-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
    padding-top: clamp(20px, 5vw, 40px);
  }

  .web-hero-copy {
    max-width: 640px;
    margin: 0 auto;
  }

  .web-hero .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .web-hero .cta-row {
    justify-content: center;
  }

  /* On mobile, keep it tidy and fully on-screen */
  .web-hero-visual {
    margin-right: 0;
    margin-top: 16px;
  }

  .web-hero-art {
    width: min(98%, 540px);
    margin: 0 auto;
    transform: rotate(-2deg);
  }
}

/* Price badge in the websites hero */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 23px rgba(232, 61, 117, 0.25);
}

.price-badge span {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
}

/* "Who it's for" two-column tick list */
.web-audience {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 28px;
  width: min(820px, 100%);
  margin: 0 auto;
}

/* "What's included" card grid */
.web-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 26px 28px;
  list-style: none;
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.45), transparent 12rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.web-includes li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.4;
}

.web-includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* Statement panel */
.web-statement {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow);
}

.web-statement p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* How it works — 3 step cards */
.web-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.web-step {
  position: relative;
  padding: 40px 22px 22px;
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.45), transparent 12rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.web-step .step-num {
  position: absolute;
  top: -18px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(232, 61, 117, 0.28);
}

.web-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.48;
}

/* Single pricing card, centered */
.web-plan-wrap {
  display: grid;
  justify-items: center;
}

.plan-web {
  border-top-color: var(--pink);
}

.web-plan-wrap .plan-card {
  width: min(440px, 100%);
}

.plan-note {
  max-width: 440px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

/* Final CTA panel */
.web-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(232, 61, 117, 0.33), transparent 17rem),
    linear-gradient(135deg, rgba(8, 25, 71, 0.95), rgba(11, 100, 173, 0.93));
  box-shadow: var(--shadow);
}

.web-cta h2 {
  color: var(--white);
}

.web-cta p {
  max-width: 600px;
  margin: 0 auto 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 1020px) {
  .web-steps,
  .web-includes,
  .web-audience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-web {
    min-height: 0;
    padding: 34px 18px 40px;
  }

  .web-steps {
    gap: 30px;
  }
}

/* ============================================================
   Multi-page site: homepage hero, service cards, service heroes
   ============================================================ */

/* Homepage hero — contained, image supports rather than dominates */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(28px, 4vw, 56px);
}

.home-hero-copy {
  max-width: 620px;
}

.home-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}

.home-hero .hero-lede {
  max-width: 560px;
  margin-bottom: 24px;
}

.home-hero-figure {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 420px;
  margin: 0;
}

/* Soft-fade the photo into the hero background on every edge, so it
   blends in rather than sitting in a hard box. */
.home-hero-figure img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 24%),
    linear-gradient(270deg, transparent 0, #000 12%),
    linear-gradient(0deg, transparent 0, #000 16%),
    linear-gradient(180deg, transparent 0, #000 10%);
  -webkit-mask-composite: source-in, source-in, source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 24%),
    linear-gradient(270deg, transparent 0, #000 12%),
    linear-gradient(0deg, transparent 0, #000 16%),
    linear-gradient(180deg, transparent 0, #000 10%);
  mask-composite: intersect;
}

@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero-copy {
    margin: 0 auto;
  }

  .home-hero .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .cta-row {
    justify-content: center;
  }

  .home-hero-figure {
    order: -1;
    max-width: 300px;
  }

  .home-hero-figure img {
    max-width: 300px;
    aspect-ratio: 3 / 2;
    object-position: center 26%;
  }
}

/* Short intro band */
.intro-band {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.intro-band p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Service pathway cards (link to the four service pages) */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px 26px;
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-top: 5px solid var(--pink);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.4), transparent 12rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.path-card:nth-child(4n + 2) { border-top-color: var(--blue); }
.path-card:nth-child(4n + 3) { border-top-color: var(--pink-dark); }
.path-card:nth-child(4n + 4) { border-top-color: #e2a826; }

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(8, 25, 71, 0.14);
}

.path-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(8, 25, 71, 0.14));
}

.path-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.path-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.path-card .button {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card .button {
    align-self: stretch;
    text-align: center;
  }
}

/* Trust / why-work-with-Suzi band */
.trust-band {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.trust-band .about-image img {
  height: 420px;
  object-position: center 18%;
  /* Soft-fade the photo into the page on every edge, so it blends in
     rather than sitting in a hard box. */
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 18%),
    linear-gradient(270deg, transparent 0, #000 14%),
    linear-gradient(0deg, transparent 0, #000 16%),
    linear-gradient(180deg, transparent 0, #000 10%);
  -webkit-mask-composite: source-in, source-in, source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 18%),
    linear-gradient(270deg, transparent 0, #000 14%),
    linear-gradient(0deg, transparent 0, #000 16%),
    linear-gradient(180deg, transparent 0, #000 10%);
  mask-composite: intersect;
}

.trust-points {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.trust-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

@media (max-width: 820px) {
  .trust-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .trust-band .about-image {
    max-width: 320px;
  }
}

/* Simple full-width CTA band (reused on home + service pages) */
.cta-band {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 61, 117, 0.4), transparent 18rem),
    radial-gradient(circle at 88% 84%, rgba(11, 100, 173, 0.5), transparent 20rem),
    linear-gradient(135deg, rgba(8, 25, 71, 0.97), rgba(11, 100, 173, 0.95));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 600px;
  margin: 0 auto 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}

/* Service-page open hero (no box) */
/* Service-page hero: branded gradient panel with copy on the left and
   a photo that fills the right and fades into the panel (no hard box),
   mirroring the homepage hero. */
.svc-hero {
  position: relative;
  min-height: 430px;
  margin-top: clamp(12px, 2vw, 24px);
  padding: clamp(32px, 4.5vw, 60px);
  padding-right: 46%;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(232, 61, 117, 0.16), transparent 17rem),
    radial-gradient(circle at 6% 92%, rgba(11, 100, 173, 0.16), transparent 18rem),
    linear-gradient(180deg, #e6f7ff 0%, #f3fbff 56%, #ffffff 100%);
  box-shadow: 0 16px 45px rgba(8, 25, 71, 0.08);
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(232, 61, 117, 0.26) 0 1px, transparent 1.8px);
  background-position: 0 0, 46px 30px;
  background-size: 72px 72px, 126px 126px;
  opacity: 0.4;
}

.svc-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.svc-hero .eyebrow {
  margin-bottom: 12px;
}

.svc-hero h1 {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.svc-hero .hero-lede {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.svc-hero .price-badge {
  margin-bottom: 22px;
}

.svc-hero-figure {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  margin: 0;
}

.svc-hero-figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}

@media (max-width: 860px) {
  .svc-hero {
    min-height: 0;
    padding: clamp(28px, 6vw, 40px);
    padding-bottom: 0;
    text-align: center;
  }

  .svc-hero-copy {
    max-width: 640px;
    margin: 0 auto;
  }

  .svc-hero .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .svc-hero .cta-row {
    justify-content: center;
  }

  .svc-hero-figure {
    position: relative;
    width: auto;
    height: 280px;
    margin: 24px calc(-1 * clamp(28px, 6vw, 40px)) 0;
  }

  .svc-hero-figure img {
    object-position: center 18%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
  }
}

/* Generic two-column tick list used across service pages */
.svc-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  width: min(860px, 100%);
}

@media (max-width: 680px) {
  .svc-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage hero photo — a bit smaller (occupies the right third, not half) */
#home .hero-photo {
  width: min(40vw, 470px);
}

@media (max-width: 1020px) {
  #home .hero {
    padding-bottom: 330px;
  }

  #home .hero-photo {
    height: 320px;
  }
}

@media (max-width: 680px) {
  #home .hero {
    padding-bottom: 270px;
  }

  #home .hero-photo {
    height: 250px;
  }
}

/* Homepage hero text: smaller headline, larger lede for better balance */
#home .hero h1 {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

#home .hero .hero-lede {
  max-width: 540px;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

/* ============================================================
   Consistency pass: centred section headings + wide package panel
   ============================================================ */

/* Centre section headings for a balanced layout (not hard-left) */
.section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* The design-services heading is a left-aligned flex row — keep it */
.design-heading {
  text-align: left;
}

/* Wide package panel (Business Growth) — spans the page, not a centred box */
.plan-wide {
  width: 100%;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-top: 6px solid var(--pink);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.4), transparent 16rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

.plan-wide-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px 24px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(8, 25, 71, 0.12);
}

.plan-wide-head h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}

.plan-wide-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.plan-wide-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.plan-wide-price span {
  color: var(--muted);
  font-weight: 800;
}

.plan-wide-price strong {
  color: var(--pink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.plan-wide-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 30px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.plan-wide-features li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.4;
}

.plan-wide-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.plan-wide-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}

.plan-wide-foot .button {
  flex: 0 0 auto;
}

.plan-wide-foot .plan-note {
  flex: 1;
  min-width: 260px;
  margin: 0;
  text-align: left;
}

@media (max-width: 820px) {
  .plan-wide-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .plan-wide-features {
    grid-template-columns: 1fr;
  }

  .plan-wide-foot .button {
    width: 100%;
  }
}

/* Two-card package layout (Business Growth Packages) */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(20px, 3vw, 32px);
}

.pkg-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(8, 25, 71, 0.11);
  border-top: 6px solid var(--pink);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top left, rgba(169, 231, 251, 0.4), transparent 16rem);
  box-shadow: 0 12px 25px rgba(8, 25, 71, 0.08);
}

/* Premium card reads as the bigger option */
.pkg-card.pkg-featured {
  border-top: 6px solid var(--blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 252, 255, 0.9)),
    radial-gradient(circle at top right, rgba(11, 100, 173, 0.16), transparent 17rem);
  box-shadow: 0 18px 38px rgba(8, 25, 71, 0.14);
}

.pkg-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232, 61, 117, 0.12);
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pkg-card.pkg-featured .pkg-badge {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.pkg-title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.pkg-tagline {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(8, 25, 71, 0.12);
}

.pkg-price span {
  color: var(--muted);
  font-weight: 800;
}

.pkg-price strong {
  color: var(--pink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.pkg-card.pkg-featured .pkg-price strong {
  color: var(--blue);
}

.pkg-list-label {
  margin: 0 0 10px;
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pkg-features,
.pkg-bestfor {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pkg-features li,
.pkg-bestfor li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.4;
}

.pkg-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.pkg-bestfor li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.pkg-foot {
  margin-top: auto;
  padding-top: 4px;
}

.pkg-foot .button {
  width: 100%;
}

.pkg-help-note {
  width: min(640px, 100%);
  margin: 26px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* Centre the service-page tick lists under the centred headings */
.svc-list {
  margin-left: auto;
  margin-right: auto;
}

/* Larger supporting text under headings */
.section-heading p {
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Design "what I design": keep 4 on top + 2 underneath, but centre the
   bottom row by laying the cards out with flex instead of a fixed grid. */
.service-grid.center-last {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-grid.center-last > article {
  flex: 0 1 calc(25% - 14px);
  min-width: 220px;
}

@media (max-width: 1020px) {
  .service-grid.center-last > article {
    flex-basis: calc(50% - 9px);
  }
}

@media (max-width: 680px) {
  .service-grid.center-last > article {
    flex-basis: 100%;
  }
}

/* Homepage hero: reserve space on the right for the photo so the copy
   never runs under it; centre + enlarge the CTA buttons. */
#home .hero {
  padding-right: 42%;
}

#home .hero .hero-copy {
  max-width: 600px;
}

#home .hero .cta-row {
  justify-content: center;
}

#home .hero .cta-row .button {
  min-height: 50px;
  padding: 14px 28px;
  font-size: 1rem;
}

@media (max-width: 1020px) {
  #home .hero {
    padding-right: clamp(20px, 4vw, 56px);
  }

  #home .hero .cta-row {
    justify-content: flex-start;
  }
}
