
:root {
  --black: #09060b;
  --ink: #1b1021;
  --purple: #5a146f;
  --violet: #812ba6;
  --pink: #d9559f;
  --hot-pink: #f06ab4;
  --rose: #ffe6f3;
  --soft: #fff7fc;
  --white: #ffffff;
  --muted: #6c5c70;
  --line: rgba(90, 20, 111, 0.16);
  --gold: #f6c967;
  --shadow: 0 24px 60px rgba(27, 16, 33, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(90deg, rgba(217, 85, 159, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(90, 20, 111, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  font-family: Optima, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2rem, 4.1vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-family: Optima, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 700;
}

h3 {
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(9, 6, 11, 0.92);
  box-shadow: 0 12px 36px rgba(9, 6, 11, 0.28);
  backdrop-filter: blur(14px);
  padding: 10px 0;
}

.nav-wrap {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(9, 6, 11, 0.26);
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.32rem);
  white-space: nowrap;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.site-nav > a,
.dropdown-toggle {
  color: rgba(255, 255, 255, 0.9);
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 10px 0;
}

.site-nav > a:hover,
.dropdown-toggle:hover,
.site-nav > a:focus-visible,
.dropdown-toggle:focus-visible {
  color: var(--white);
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(360px, 92vw);
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--rose);
  color: var(--purple);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.phone-link {
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9, 6, 11, 0.18);
}

.btn-sm {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.92rem;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-light {
  background: var(--white);
  color: var(--purple);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border-color: rgba(90, 20, 111, 0.32);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-home {
  min-height: 92vh;
}

.hero-sub {
  min-height: 470px;
  padding-top: 90px;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 6, 11, 0.62), rgba(9, 6, 11, 0.78)),
    linear-gradient(90deg, rgba(90, 20, 111, 0.58), rgba(217, 85, 159, 0.18), rgba(9, 6, 11, 0.68));
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 30%, rgba(246, 201, 103, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 76%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 64%, rgba(217, 85, 159, 0.85) 0 1px, transparent 2px);
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  padding: 150px 0 90px;
}

.hero-content.center {
  margin-inline: auto;
}

.hero h1,
.hero h2,
.hero h3,
.bg-ink h1,
.bg-ink h2,
.bg-ink h3,
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.cta-band h2 {
  color: var(--white);
}

.hero h1 {
  text-shadow:
    0 0 14px rgba(240, 106, 180, 0.42),
    0 0 34px rgba(129, 43, 166, 0.34),
    0 3px 16px rgba(0, 0, 0, 0.45);
}

.hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.hero-content:not(.center) p {
  margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 660px;
  margin: 56px auto 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  background: rgba(9, 6, 11, 0.28);
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: clamp(70px, 9vw, 116px) 0;
}

.bg-soft {
  background: var(--soft);
}

.bg-ink {
  background:
    linear-gradient(135deg, rgba(90, 20, 111, 0.28), transparent 38%),
    var(--ink);
  color: var(--white);
}

.bg-purple {
  background:
    linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
}

.bg-ink p,
.bg-purple p,
.bg-ink li,
.bg-purple li {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-stack {
  position: relative;
}

.main-photo,
.rounded-photo {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: var(--rose);
}

.main-photo {
  aspect-ratio: 4 / 3;
  height: clamp(320px, 34vw, 430px);
  object-position: center 30%;
}

.rounded-photo {
  aspect-ratio: 16 / 9;
  height: clamp(280px, 32vw, 430px);
  object-position: center;
}

.accent-logo {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: min(230px, 44%);
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.feature-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list span,
.check-list li,
.included-list li {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.75fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.center {
  display: block;
}

.section-heading.light p,
.section-heading.light h2 {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(27, 16, 33, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card img {
  width: 100%;
  height: 190px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  min-height: 2.3em;
}

.service-card p {
  font-size: 0.94rem;
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--purple);
  font-weight: 900;
}

.values-grid,
.process-grid,
.contact-card-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.split .values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.values-grid article,
.process-grid article,
.experience-grid article,
.contact-card,
.area-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(27, 16, 33, 0.08);
}

.bg-ink .process-grid article,
.bg-purple .area-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
}

.process-grid article p,
.bg-ink .values-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 12px;
  scrollbar-color: var(--pink) var(--rose);
}

.gallery-strip img {
  width: 100%;
  height: 190px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(27, 16, 33, 0.12);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-tags span {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.faq-list {
  max-width: 920px;
  margin-top: 32px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(27, 16, 33, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--pink);
  font-size: 1.35rem;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.cta-band {
  padding: 56px 0;
  background: var(--black);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin-top: 12px;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-stack a,
.contact-card {
  color: inherit;
}

.contact-stack a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-stack span {
  color: rgba(255, 255, 255, 0.8);
  overflow-wrap: anywhere;
}

.form-shell {
  min-height: 681px;
  overflow: visible;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-shell iframe {
  width: 100%;
  min-height: 681px;
}

.form-fallback {
  margin: 12px 18px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.form-fallback a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-list,
.included-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.included-list {
  margin: 0;
}

.bg-ink .included-list li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

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

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.portrait-grid img {
  width: 100%;
  height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(27, 16, 33, 0.12);
}

.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card p {
  color: var(--ink);
  font-weight: 900;
  margin: 12px 0;
  overflow-wrap: anywhere;
}

.contact-card span {
  color: var(--pink);
  font-weight: 900;
}

.map-shell {
  height: 430px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.directions-panel {
  margin: 24px 0 0;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(27, 16, 33, 0.08);
}

.directions-panel ol {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.directions-panel li + li {
  margin-top: 8px;
}

.contact-actions {
  margin-top: 22px;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.05fr;
  gap: 32px;
}

.footer-brand span {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--white);
  font-weight: 900;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1040px) {
  .nav-actions {
    display: none;
  }

  .site-nav {
    gap: 18px;
  }

  .service-grid,
  .values-grid,
  .process-grid,
  .experience-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .nav-wrap {
    align-items: flex-start;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(9, 6, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav > a,
  .dropdown-toggle {
    padding: 12px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    box-shadow: none;
    margin: 0 0 8px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .dropdown-menu a {
    color: var(--white);
  }

  .split,
  .split.reverse,
  .quote-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-wrap {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .values-grid,
  .process-grid,
  .experience-grid,
  .contact-card-grid,
  .related-grid,
  .footer-grid,
  .feature-list.two-col {
    grid-template-columns: 1fr;
  }

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

  .accent-logo {
    position: static;
    width: 180px;
    margin: 14px auto 0;
  }

  .main-photo,
  .rounded-photo,
  .portrait-grid img {
    height: 260px;
  }

  .service-card img,
  .gallery-strip img {
    height: 210px;
  }

  .form-shell {
    min-height: 681px;
  }
}
