/*
  Font-ready setup:
  add /fonts/ModernAesthetic.woff2, /fonts/Scholar.woff2 and /fonts/Inter.woff2,
  then uncomment the matching @font-face blocks below.

  @font-face {
    font-family: "Modern Aesthetic";
    src: url("fonts/ModernAesthetic.woff2") format("woff2");
    font-display: swap;
  }

  @font-face {
    font-family: "Scholar";
    src: url("fonts/Scholar.woff2") format("woff2");
    font-display: swap;
  }

  @font-face {
    font-family: "Inter";
    src: url("fonts/Inter.woff2") format("woff2");
    font-display: swap;
  }
*/

:root {
  --color-burgundy: #800020;
  --color-white: #ffffff;
  --color-red: #d41c1c;
  --color-ochre: #8c3a12;
  --color-ink: #24171a;
  --color-muted: #6f6264;
  --color-soft: #f8f5f3;
  --color-line: #eadfdb;
  --color-burgundy-soft: #f3e7e8;
  --font-logo: "Modern Aesthetic", "Cormorant Garamond", Georgia, serif;
  --font-heading: "Scholar", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(128, 0, 32, 0.12);
  --shadow-card: 0 16px 44px rgba(36, 23, 26, 0.08);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

h1 {
  max-width: 760px;
  font-size: clamp(43px, 5.4vw, 74px);
}

.hero-title {
  max-width: 780px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

h3 {
  font-size: clamp(22px, 2.3vw, 30px);
}

p {
  color: var(--color-muted);
  font-size: 17px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(234, 223, 219, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 760;
}

.nav-cluster {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(620px, 88vw);
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.service-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-cluster:hover .service-menu,
.nav-cluster:focus-within .service-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.service-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--color-muted);
  line-height: 1.25;
}

.service-subcluster {
  display: grid;
  align-content: start;
  gap: 2px;
}

.service-subcluster > span {
  display: block;
  min-height: 38px;
  padding: 10px 12px 8px;
  color: var(--color-burgundy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-subcluster a {
  margin-left: 10px;
  border-left: 2px solid var(--color-burgundy-soft);
}

.service-menu a:hover,
.service-menu a:focus {
  background: var(--color-burgundy-soft);
  color: var(--color-burgundy);
}

.site-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--color-red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(212, 28, 28, 0.22);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 28, 28, 0.28);
}

.button-secondary {
  border-color: rgba(128, 0, 32, 0.18);
  background: var(--color-white);
  color: var(--color-burgundy);
}

.button-secondary:hover {
  border-color: var(--color-burgundy);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: 52px 0 60px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.6fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 72px 0 62px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.service-hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-summary {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(128, 0, 32, 0.05), rgba(255, 255, 255, 0)),
    var(--color-white);
  box-shadow: var(--shadow-card);
}

.service-summary span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-summary ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-summary li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  font-weight: 760;
}

.service-summary li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--color-red);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.content-frame,
.insight-card {
  border: 1px solid rgba(128, 0, 32, 0.12);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.content-frame {
  position: absolute;
  inset: 54px 24px 46px 44px;
  overflow: hidden;
}

.content-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(128, 0, 32, 0.09), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 85% 82%, rgba(140, 58, 18, 0.15), transparent 34%);
  pointer-events: none;
}

.frame-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
}

.frame-top span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--color-burgundy);
}

.frame-top span:nth-child(2) {
  background: var(--color-red);
}

.frame-top span:nth-child(3) {
  background: var(--color-ochre);
}

.editor-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 34px;
}

.editor-grid > div:first-child {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.editor-grid small,
.metric-card small,
.card-label,
.service-card span,
.method-steps span,
.case-card span,
.profile-card span {
  color: var(--color-ochre);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.editor-grid strong,
.metric-card strong,
.search-card strong {
  color: var(--color-burgundy);
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
}

.video-tile {
  display: grid;
  align-items: end;
  min-height: 190px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.92), rgba(36, 23, 26, 0.88)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.14) 18px 19px);
  color: var(--color-white);
}

.video-tile small {
  color: rgba(255, 255, 255, 0.78);
}

.play-dot {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 99px;
  background: var(--color-red);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.play-dot::after {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--color-white);
  content: "";
}

.insight-card {
  position: absolute;
  display: grid;
  gap: 10px;
  padding: 20px;
}

.search-card {
  top: 0;
  left: 0;
  width: min(310px, 62%);
}

.metric-card {
  right: 0;
  bottom: 0;
  width: min(270px, 58%);
  background: var(--color-burgundy);
  color: var(--color-white);
}

.metric-card strong,
.metric-card .card-label {
  color: var(--color-white);
}

.metric-card small {
  color: rgba(255, 255, 255, 0.72);
}

.search-lines {
  display: grid;
  gap: 8px;
}

.search-lines span {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: var(--color-burgundy-soft);
}

.search-lines span:nth-child(2) {
  width: 72%;
}

.search-lines span:nth-child(3) {
  width: 48%;
  background: rgba(212, 28, 28, 0.16);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 34px;
}

.problem,
.services,
.method,
.cases,
.about,
.service-detail,
.service-process,
.final-cta {
  padding: 86px 0;
}

.problem-grid,
.services-grid,
.case-grid,
.profile-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.service-card,
.case-card,
.profile-card,
.service-detail-card,
.method-steps article {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-grid article:hover,
.service-card:hover,
.case-card:hover,
.profile-card:hover,
.service-detail-card:hover,
.method-steps article:hover {
  border-color: rgba(128, 0, 32, 0.26);
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(128, 0, 32, 0.12);
}

.problem-grid article {
  display: grid;
  gap: 22px;
  min-height: 240px;
  padding: 26px;
}

.problem-grid span {
  color: var(--color-red);
  font-weight: 900;
}

.problem-video {
  width: min(100%, 360px);
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.problem-video iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  background: var(--color-white);
}

.solution,
.difference {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.solution {
  padding: 76px 0;
}

.solution-inner,
.difference-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.solution h2,
.difference h2,
.solution p,
.difference p,
.solution .eyebrow,
.difference .eyebrow {
  color: var(--color-white);
}

.solution-copy {
  display: grid;
  gap: 24px;
}

blockquote {
  margin: 0;
  padding: 22px 0 0 24px;
  border-left: 3px solid var(--color-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
}

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

.service-card,
.case-card,
.profile-card,
.service-detail-card {
  display: grid;
  gap: 16px;
  min-height: 290px;
  padding: 26px;
}

.service-card h3,
.case-card h3,
.profile-card h3,
.service-detail-card h3 {
  color: var(--color-burgundy);
}

.service-card {
  color: inherit;
}

.service-card--featured {
  grid-column: 1 / -1;
  min-height: 300px;
  border-color: rgba(128, 0, 32, 0.32);
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.08), rgba(255, 255, 255, 0.94) 44%),
    var(--color-white);
}

.service-card--featured p {
  max-width: 760px;
}

.service-card--video {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.service-card--video::after {
  content: none;
  display: none;
}

.service-card__copy {
  display: grid;
  gap: 16px;
}

.service-card__link {
  align-self: end;
  justify-self: start;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 900;
}

.service-card__video {
  width: 100%;
  max-width: 390px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(128, 0, 32, 0.1);
}

.service-card__video iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: var(--color-white);
}

.service-card::after {
  content: "Ver servicio";
  align-self: end;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 900;
}

.service-card--video::after {
  content: none;
  display: none;
}

.instagram-feature {
  padding: 86px 0;
  background: var(--color-soft);
}

.instagram-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.instagram-video-frame {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.instagram-video-frame iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: 0;
  background: var(--color-white);
}

.service-detail-card {
  min-height: 330px;
}

.service-detail-card span {
  color: var(--color-red);
  font-size: 13px;
  font-weight: 900;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: method;
}

.method-steps article {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
}

.difference {
  padding: 86px 0;
}

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

.difference-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.difference-list h3 {
  color: var(--color-white);
  font-size: clamp(21px, 2vw, 28px);
}

.case-card {
  background: var(--color-soft);
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 46px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

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

.profile-card {
  align-content: start;
  gap: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(128, 0, 32, 0.04), rgba(255, 255, 255, 0)),
    var(--color-white);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile-card:nth-child(3) img {
  object-position: center center;
}

.profile-content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.profile-content p {
  font-size: 15px;
  line-height: 1.65;
}

.profile-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}

.profile-linkedin {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(214, 0, 28, 0.22);
  border-radius: 999px;
  color: var(--color-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(214, 0, 28, 0.06);
}

.profile-linkedin:hover,
.profile-linkedin:focus-visible {
  color: var(--color-white);
  background: var(--color-red);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(44px, 8vw, 86px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(128, 0, 32, 0.95), rgba(36, 23, 26, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(212, 28, 28, 0.35), transparent 35%);
  color: var(--color-white);
  text-align: center;
}

.final-cta-inner h2,
.final-cta-inner p,
.final-cta-inner .eyebrow {
  color: var(--color-white);
}

.final-cta-inner p {
  max-width: 680px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--color-line);
  background: var(--color-soft);
  color: var(--color-muted);
}

.site-footer strong {
  display: block;
  color: var(--color-burgundy);
  font-family: var(--font-logo);
  font-size: 25px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-weight: 780;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.footer-contact a,
.social-links a {
  color: var(--color-burgundy);
  font-weight: 850;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-burgundy);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

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

  .site-nav.is-open {
    position: fixed;
    inset: var(--header-height) 18px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open a {
    min-height: 44px;
    padding: 10px 12px;
  }

  .site-nav.is-open .nav-cluster {
    display: grid;
    min-height: auto;
  }

  .site-nav.is-open .nav-parent {
    min-height: 44px;
    padding: 10px 12px;
  }

  .site-nav.is-open .service-menu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 4px;
    padding: 6px;
    border-color: rgba(128, 0, 32, 0.12);
    background: var(--color-soft);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav.is-open .service-menu::before {
    display: none;
  }

  .site-nav.is-open .service-menu a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero,
  .service-hero,
  .solution-inner,
  .difference-inner,
  .about,
  .instagram-feature-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .services-grid,
  .problem-grid,
  .case-grid,
  .service-detail-grid,
  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instagram-video-frame {
    justify-self: start;
  }

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

  .service-card__video {
    justify-self: start;
  }

  .footer-contact {
    justify-items: center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 12px 18px;
  }

  .brand {
    width: 128px;
  }

  .brand-logo {
    height: 44px;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 18px;
    padding: 30px 0 24px;
  }

  .service-hero {
    gap: 22px;
    padding: 38px 0 34px;
  }

  h1 {
    font-size: clamp(36px, 10.6vw, 42px);
  }

  .hero-title {
    max-width: 13ch;
    font-size: clamp(31px, 8.4vw, 38px);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 74px;
  }

  .content-frame {
    position: relative;
    inset: auto;
    min-height: 74px;
  }

  .editor-grid {
    padding: 14px 18px;
  }

  .editor-grid strong,
  .metric-card strong,
  .search-card strong {
    font-size: 29px;
  }

  .search-card,
  .metric-card {
    display: none;
  }

  .editor-grid p,
  .video-tile {
    display: none;
  }

  .services-grid,
  .problem-grid,
  .case-grid,
  .service-detail-grid,
  .method-steps,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .problem,
  .services,
  .method,
  .cases,
  .about,
  .service-detail,
  .service-process,
  .final-cta,
  .difference,
  .instagram-feature {
    padding: 58px 0;
  }

  .instagram-video-frame {
    max-width: none;
  }

  .problem-video {
    width: min(100%, 340px);
    margin-top: 28px;
  }

  .instagram-video-frame iframe {
    min-height: 560px;
  }

  .service-card__video {
    max-width: none;
  }

  .service-card__video iframe {
    min-height: 520px;
  }

  .solution {
    padding: 58px 0;
  }

  .problem-grid article,
  .service-card,
  .case-card,
  .profile-card,
  .service-detail-card,
  .method-steps article {
    min-height: auto;
  }
}
