: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: 58px;
  height: 58px;
}

.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 9px;
  color: var(--pink-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  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(2.2rem, 4.15vw, 3.62rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.2vw, 3.05rem);
}

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-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: 22px;
  width: min(360px, 35%);
  min-width: 300px;
  padding: 18px 24px 58px 62px;
  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;
}

.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;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.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: 62px;
  height: 62px;
}

.site-footer p {
  margin: 0;
}

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

@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 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;
  }
}
