:root {
  --black: #070809;
  --ink: #151516;
  --paper: #f4f2ec;
  --white: #ffffff;
  --red: #e0182d;
  --cyan: #60c9c1;
  --muted: #7a7a74;
  --line: rgba(21, 21, 22, .14);
  --line-dark: rgba(255, 255, 255, .15);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

body.sd-page-redesign {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

body.sd-page-redesign img {
  display: block;
  max-width: 100%;
}

body.sd-page-redesign a {
  color: inherit;
  text-decoration: none;
}

body.sd-page-redesign .mobile-panel a,
body.sd-page-redesign .mobile-panel a:visited {
  color: white !important;
}

body.sd-page-redesign .mobile-panel a:hover,
body.sd-page-redesign .mobile-panel a:focus-visible {
  color: var(--cyan) !important;
}

body.sd-page-redesign a:focus-visible,
body.sd-page-redesign button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 8, 9, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  min-height: 66px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 18px;
  align-items: center;
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, .82);
  transition: color .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
}

.nav-item > .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid rgba(255, 255, 255, .68);
  border-bottom: 2px solid rgba(255, 255, 255, .68);
  flex: 0 0 auto;
  transform: translateY(-2px) rotate(45deg);
  transition: border-color .18s ease, transform .18s ease;
}

.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
  border-color: var(--red);
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
  position: fixed;
  top: 68px;
  left: 50vw;
  z-index: 65;
  width: min(1020px, calc(100vw - 64px));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(9, 10, 12, .96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 12px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: white;
  cursor: pointer;
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-panel {
  display: none;
}

.button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--black);
  color: white;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-red,
.button-red:visited,
.button-red:hover,
.button-red:focus,
.button-red:active {
  background: var(--red);
  color: white;
}

.button-line,
.button-line:visited,
.button-line:hover,
.button-line:focus,
.button-line:active {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: white;
}

.page-hero {
  padding: 70px 0 56px;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .96), rgba(7, 8, 9, .68)),
    url("assets/studio-detail.jpg") center / cover;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .84);
}

.kicker {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .92;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

body.sd-page-redesign .page-hero h1 {
  color: white !important;
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: .92 !important;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.hero-panel > span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.hero-metrics {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.hero-metrics div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  padding-top: 10px;
}

.hero-metrics b {
  color: var(--red);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 24px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
  text-transform: uppercase;
}

.page-body {
  padding: 56px 0 76px;
}

.body-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}

.side-nav h2 {
  margin: 0;
  padding: 18px;
  background: var(--black);
  color: white;
  font-size: 15px;
  text-transform: uppercase;
}

.side-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.side-nav a:hover,
.side-nav a:focus-visible {
  color: var(--red);
}

.content-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 28px;
}

.child-grid {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.child-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
  padding: 18px;
}

.child-card span {
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.child-card b {
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

/* About: curated studio narrative replaces the migrated Avada layout and stock imagery. */
body.page-id-91 .body-layout {
  grid-template-columns: minmax(0, 1fr);
}

body.page-id-91 .side-nav {
  display: none;
}

body.page-id-91 .content-panel {
  padding: clamp(24px, 4vw, 56px);
}

.about-studio {
  display: grid;
  gap: clamp(38px, 6vw, 78px);
}

.about-studio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  align-items: end;
  gap: 42px;
}

.about-studio-intro .kicker,
.about-studio-secondary .kicker {
  margin-top: 0;
  color: var(--red);
}

.about-studio-intro h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 68px);
  line-height: .96;
  text-transform: uppercase;
}

.about-studio-intro > p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-studio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black);
  color: white;
}

.about-studio-feature figure,
.about-studio-secondary figure {
  margin: 0;
}

.about-studio-primary-media {
  min-height: 560px;
}

.about-studio-primary-media img,
.about-studio-secondary figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-studio-story {
  align-self: center;
  padding: clamp(30px, 5vw, 68px);
}

.about-studio-story > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-studio-story h3,
.about-studio-secondary h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
}

.about-studio-story p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.75;
}

.about-studio-story p + p {
  margin-top: 14px;
}

.about-studio-link {
  width: fit-content;
  margin-top: 25px;
  display: inline-flex;
  color: white !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline !important;
  text-decoration-color: var(--red) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 7px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-principles article {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, .1);
  border-radius: 16px;
  background: linear-gradient(145deg, #1d1d1e 0%, #111112 100%);
  box-shadow: 0 14px 28px rgba(19, 17, 16, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.about-principles article::after {
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  content: "";
  transition: transform .4s ease, border-color .28s ease;
}

.about-principles article:hover,
.about-principles article:focus-within {
  z-index: 1;
  transform: translateY(-8px);
  border-color: rgba(228, 0, 36, .72);
  box-shadow: 0 24px 40px rgba(19, 17, 16, .2);
}

.about-principles article:hover::after,
.about-principles article:focus-within::after {
  transform: scale(1.25);
  border-color: rgba(228, 0, 36, .65);
}

.about-principle-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(228, 0, 36, .3);
  transition: transform .28s ease, background .28s ease;
}

.about-principles article:hover .about-principle-mark,
.about-principles article:focus-within .about-principle-mark {
  transform: rotate(-10deg) scale(1.08);
  background: #f21a3c;
}

.about-principles h3 {
  position: relative;
  z-index: 1;
  margin: 32px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-principles p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.7;
}

.about-mission {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  align-items: end;
  gap: 42px;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 16px;
  background: #eceae3;
}

.about-mission .kicker,
.about-vision-head .kicker,
.about-reasons-head .kicker {
  margin-top: 0;
  color: var(--red);
}

.about-mission h3,
.about-vision-head h3,
.about-reasons-head h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.about-mission > p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-vision {
  display: grid;
  gap: 28px;
}

.about-vision-head {
  max-width: 680px;
}

.about-studio-secondary {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding-top: clamp(8px, 2vw, 24px);
}

.about-studio-secondary h3 {
  color: var(--ink);
}

.about-studio-secondary p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-studio-secondary figure {
  min-height: 400px;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
}

.about-studio-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-studio-actions .about-studio-link {
  margin-top: 0;
  color: var(--ink) !important;
}

.about-reasons {
  display: grid;
  gap: 30px;
  margin-right: calc(clamp(24px, 4vw, 56px) * -1);
  margin-left: calc(clamp(24px, 4vw, 56px) * -1);
  padding: clamp(36px, 5vw, 70px) clamp(24px, 4vw, 56px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #e9e6df;
  background-position: center;
  background-size: cover;
}

.about-reasons::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .34), transparent 52%);
  pointer-events: none;
}

.about-reasons-head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.about-reasons-grid article {
  min-height: 198px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  background: rgba(255, 255, 255, .46);
  box-shadow: 0 14px 30px rgba(30, 24, 19, .07);
  backdrop-filter: blur(5px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.about-reasons-grid article:hover,
.about-reasons-grid article:focus-within {
  transform: translateY(-7px);
  border-color: rgba(224, 24, 45, .36);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 42px rgba(30, 24, 19, .16);
}

.about-reason-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(224, 24, 45, .26);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.about-reasons-grid article:hover .about-reason-icon,
.about-reasons-grid article:focus-within .about-reason-icon {
  transform: scale(1.08) rotate(-5deg);
  background: #be1023;
  box-shadow: 0 14px 24px rgba(190, 16, 35, .34);
}

.about-reasons-grid b {
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color .25s ease;
}

.about-reasons-grid article:hover b,
.about-reasons-grid article:focus-within b {
  color: var(--red);
}

.about-reasons-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.services-catalog-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.services-catalog-head .kicker {
  margin-top: 0;
  color: var(--red);
}

.services-catalog-head h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  text-transform: uppercase;
}

.services-catalog-head p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #f8f7f3;
  scroll-margin-top: 92px;
}

.service-detail-card:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  min-height: 430px;
  background: #111;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.service-detail-content {
  align-self: center;
  padding: clamp(28px, 4vw, 54px);
}

.service-detail-content h3 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3.2vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.service-detail-content > p {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-detail-content ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-detail-content li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.service-detail-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 2px;
  background: var(--red);
}

.service-detail-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.service-detail-actions .button-red,
.service-detail-actions .button-red:visited,
.service-detail-actions .button-red:hover,
.service-detail-actions .button-red:focus-visible {
  color: white !important;
}

.service-contact-link {
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.service-contact-link:hover,
.service-contact-link:focus-visible {
  color: var(--red) !important;
}

.package-comparison {
  margin-bottom: 42px;
}

.package-comparison-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.package-comparison-head h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.package-comparison-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.package-summary-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.package-summary-card.is-popular {
  border-color: rgba(224, 24, 45, .5);
  box-shadow: inset 0 3px 0 var(--red);
}

.package-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(224, 24, 45, .1);
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-summary-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.package-price {
  margin: 16px 0 20px;
  color: var(--red);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.package-meta {
  margin: 0;
  display: grid;
  gap: 12px;
}

.package-meta div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.package-meta dt,
.package-includes b {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.package-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.package-includes {
  margin-top: 18px;
}

.package-includes ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.package-includes li + li {
  margin-top: 7px;
}

.package-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.package-card-cta {
  min-height: 46px;
  margin-top: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.package-includes + .package-card-cta,
.package-note + .package-card-cta {
  margin-top: 20px;
}

.package-card-cta:hover,
.package-card-cta:focus-visible {
  background: #bd1023;
  color: white;
}

.portfolio-gallery-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.portfolio-gallery-head h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-gallery-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-filters {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-filters button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-filters button[aria-pressed="true"],
.portfolio-filters button:hover,
.portfolio-filters button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

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

.portfolio-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.portfolio-grid figure[hidden] {
  display: none;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.portfolio-grid figcaption {
  padding: 14px;
  display: grid;
  gap: 6px;
}

.portfolio-grid figcaption b {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.portfolio-grid figcaption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.portfolio-empty {
  padding: 28px;
  border: 1px dashed rgba(224, 24, 45, .45);
  border-radius: var(--radius);
  background: rgba(224, 24, 45, .05);
}

.portfolio-empty[hidden] {
  display: none;
}

.portfolio-empty strong {
  color: var(--ink);
  font-size: 18px;
  text-transform: uppercase;
}

.portfolio-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.visual-proof,
.service-proof,
.service-faq {
  margin-top: 42px;
}

.visual-proof-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.visual-proof-head h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.visual-proof-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.visual-proof-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.visual-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.visual-proof-grid figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.visual-credential {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
}

.visual-credential > div:first-child {
  max-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
}

.visual-credential img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: contain;
}

.visual-credential h3 {
  margin: 10px 0 12px;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.visual-credential p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
}

.service-proof-head,
.service-faq-head {
  margin-bottom: 20px;
}

.service-proof-head h2,
.service-faq-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  color: white;
}

.service-proof-grid article {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.service-proof-grid article:last-child {
  border-right: 0;
}

.service-proof-grid b {
  color: var(--red);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 24px;
}

.service-proof-grid h3 {
  margin: 18px 0 10px;
  color: white;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.55;
}

.service-faq-list {
  display: grid;
  gap: 10px;
}

.service-faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.service-faq-list summary {
  min-height: 58px;
  padding: 16px 50px 16px 18px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.service-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.service-faq-list details[open] summary::after {
  content: "−";
}

.service-faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.sd-page-content {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.sd-page-content > *:first-child {
  margin-top: 0;
}

.sd-page-content > *:last-child {
  margin-bottom: 0;
}

.sd-page-content h2,
.sd-page-content h3,
.sd-page-content h4 {
  margin: 28px 0 12px;
  color: var(--ink);
  line-height: 1.05;
  text-transform: uppercase;
}

.sd-page-content h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

.sd-page-content h3 {
  font-size: 24px;
}

.sd-page-content p,
.sd-page-content ul,
.sd-page-content ol {
  margin: 0 0 16px;
}

.sd-page-content ul,
.sd-page-content ol {
  padding-left: 22px;
}

.sd-page-content a {
  color: var(--red);
  font-weight: 800;
}

.sd-page-content .service-inline-cta {
  width: fit-content;
  min-height: 44px;
  margin: 0 0 20px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.sd-page-content .service-inline-cta:hover,
.sd-page-content .service-inline-cta:focus-visible {
  background: var(--red) !important;
  color: white !important;
}

/* Services hub: let the migrated service rows use the available page width. */
body.page-id-126 .body-layout {
  grid-template-columns: minmax(0, 1fr);
}

body.page-id-126 .side-nav {
  display: none;
}

body.page-id-126 .content-panel {
  padding: clamp(24px, 4vw, 52px);
}

body.page-id-126 .child-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

body.page-id-126 .child-card {
  min-height: 176px;
  padding: 24px;
  background: #f7f6f2;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.page-id-126 .child-card:only-child {
  grid-column: 1 / -1;
  min-height: 132px;
}

body.page-id-126 .child-card:hover,
body.page-id-126 .child-card:focus-visible {
  border-color: rgba(220, 0, 36, .5);
  box-shadow: 0 16px 34px rgba(16, 17, 18, .1);
  transform: translateY(-3px);
}

body.page-id-126 .child-card:hover span,
body.page-id-126 .child-card:focus-visible span {
  color: var(--ink) !important;
}

body.page-id-126 .sd-page-content .fusion-builder-row {
  display: block !important;
  margin: 0 0 28px !important;
  padding: clamp(26px, 4vw, 52px) !important;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf6;
}

body.page-id-126 .sd-page-content .fusion-layout-column {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  flex: none;
}

body.page-id-126 .sd-page-content .fusion-layout-column:not(:has(h2, h3, h4, p, ul, ol, figure, img)) {
  display: none !important;
}

body.page-id-126 .sd-page-content .fusion-column-wrapper {
  min-height: 0 !important;
}

body.page-id-126 .sd-page-content h2,
body.page-id-126 .sd-page-content h3 {
  max-width: 720px;
  scroll-margin-top: 110px;
}

body.page-id-126 .sd-page-content p {
  max-width: 68ch;
}

body.page-id-126 .sd-page-content .service-inline-cta,
body.page-id-126 .sd-page-content .service-inline-cta:visited {
  min-height: 50px;
  padding: 0 22px;
  background: var(--black) !important;
  color: white !important;
  font-size: 13px;
}

body.page-id-126 .sd-page-content .service-inline-cta:hover,
body.page-id-126 .sd-page-content .service-inline-cta:focus-visible,
body.page-id-126 .sd-page-content .service-inline-cta:active {
  background: var(--red) !important;
  color: white !important;
}

.sd-page-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.sd-page-content figure,
.sd-page-content .fusion-imageframe {
  display: block;
  width: 100% !important;
  max-width: 760px !important;
  margin: 24px auto !important;
}

.sd-page-content .fusion-imageframe img {
  width: 100% !important;
  height: auto !important;
  max-height: 780px;
  object-fit: contain;
}

.sd-page-content .fusion-builder-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
}

.sd-page-content .fusion-layout-column {
  float: none !important;
  min-width: min(100%, 300px);
  flex: 1 1 340px;
}

.sd-page-content .fusion-fullwidth,
.sd-page-content .fusion-builder-row,
.sd-page-content .fusion-layout-column,
.sd-page-content .fusion-column-wrapper {
  max-width: 100% !important;
}

.single-layout {
  max-width: 980px;
}

.sd-single-panel {
  padding: clamp(22px, 4vw, 46px);
}

.post-featured-media {
  margin: 0 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}

.post-featured-media img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
}

.sd-single-content {
  max-width: 860px;
  margin: 0 auto;
}

.sd-page-content .fusion-fullwidth {
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  background-color: transparent !important;
}

.page-cta {
  padding: 0 0 78px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .96), rgba(7, 8, 9, .78)),
    image-set(url("assets/paintwork-768.webp") 1x, url("assets/paintwork-1600.webp") 2x) center / cover;
  padding: 30px;
  color: white;
}

.cta-band .kicker {
  margin-top: 0;
}

.cta-band h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: white;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  padding: 28px 0;
  background: var(--black);
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .nav-dropdown {
  top: 100px;
}

body.admin-bar .side-nav {
  top: 124px;
}

@media (max-width: 1320px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    left: 22px;
    right: 22px;
    top: 66px;
    z-index: 45;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: auto;
    max-height: calc(100svh - 82px);
    background: rgba(7, 8, 9, .98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .42);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  body.menu-open .nav {
    border-bottom-color: transparent;
  }

  .mobile-panel a {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-panel a:first-child {
    border-top: 0;
  }

  .body-layout {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
  }

  body.page-id-126 .child-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sd-page-redesign .buttonizer,
  body.sd-page-redesign #buttonizer-backdrop,
  body.sd-page-redesign .vi-wcaio-menu-cart,
  body.sd-page-redesign .vi-wcaio-sidebar-cart-icon-wrap,
  body.sd-page-redesign #fb-root {
    display: none !important;
  }
}

.contact-form-section {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111214;
  color: white;
}

.contact-form-section h2 {
  margin: 10px 0 20px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-intro {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.5;
}

.form-label {
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.form-label span[aria-hidden="true"] {
  color: var(--red);
}

.form-optional {
  color: rgba(255, 255, 255, .52);
  font-weight: 600;
}

.contact-form .field {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .08) !important;
  color: white !important;
  box-shadow: none;
}

.contact-form .field::placeholder {
  color: rgba(255, 255, 255, .58);
}

.contact-form .field:focus {
  border-color: rgba(224, 24, 45, .9);
  box-shadow: 0 0 0 3px rgba(224, 24, 45, .18);
}

textarea.field {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status-success {
  background: rgba(96, 201, 193, .18);
  color: #d5fffb;
}

.form-status-error {
  background: rgba(224, 24, 45, .2);
  color: #ffe0e5;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-studio-intro,
  .about-studio-feature,
  .about-studio-secondary,
  .about-mission {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-mission > p {
    margin-top: 4px;
  }

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

  .about-studio-feature {
    min-height: 0;
  }

  .about-studio-primary-media {
    min-height: 430px;
  }

  .about-studio-story {
    padding: 36px;
  }

  .service-detail-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-detail-card:nth-child(even) .service-detail-media {
    order: 0;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 380px;
  }

}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 58px;
  }

  .mobile-panel {
    left: 14px;
    right: 14px;
    top: 58px;
    max-height: calc(100svh - 72px);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 10px;
  }

  .page-hero {
    padding: 42px 0 36px;
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: .98;
  }

  .page-hero p {
    font-size: 15px;
  }

  .hero-panel {
    padding: 18px;
  }

  body.page-id-126 .content-panel {
    padding: 18px;
  }

  body.page-id-91 .content-panel {
    padding: 18px;
  }

  .about-studio {
    gap: 42px;
  }

  .about-studio-intro {
    gap: 18px;
  }

  .about-studio-intro h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-studio-primary-media {
    min-height: 285px;
  }

  .about-studio-story {
    padding: 28px 22px 30px;
  }

  .about-principles {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .about-principles article {
    min-height: 0;
    padding: 26px 22px 28px;
  }

  .about-principles h3 {
    margin-top: 24px;
  }

  .about-studio-secondary {
    gap: 26px;
  }

  .about-studio-secondary figure {
    min-height: 280px;
  }

  .about-mission {
    gap: 20px;
    padding: 26px 22px;
  }

  .about-reasons {
    gap: 22px;
  }

  .about-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-reasons-grid article {
    min-height: 0;
    gap: 8px;
    padding: 16px 10px 14px;
    border-radius: 12px;
  }

  .about-reason-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .about-reasons-grid b {
    font-size: 14px;
    line-height: 1.15;
  }

  .about-reasons-grid span {
    font-size: 12px;
    line-height: 1.42;
  }

  .services-catalog-head {
    margin-bottom: 24px;
  }

  .service-detail-list {
    gap: 16px;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 260px;
    max-height: 320px;
  }

  .service-detail-content {
    padding: 24px 20px 26px;
  }

  .service-detail-content h3 {
    font-size: clamp(27px, 8.2vw, 36px);
  }

  body.page-id-126 .child-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body.page-id-126 .child-card {
    min-height: 140px;
    padding: 20px;
  }

  body.page-id-126 .sd-page-content .fusion-builder-row {
    margin-bottom: 18px !important;
    padding: 22px !important;
  }

  .page-body {
    padding: 34px 0 52px;
  }

  .content-panel {
    padding: 20px;
  }

  .child-grid {
    grid-template-columns: 1fr;
  }

  .package-comparison-grid {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-filters button:first-child {
    grid-column: 1 / -1;
  }

  .package-summary-card {
    padding: 20px;
  }

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

  .visual-proof-grid,
  .visual-credential {
    grid-template-columns: 1fr;
  }

  .visual-credential img {
    height: 230px;
  }

  .service-proof-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .service-proof-grid article:last-child {
    border-bottom: 0;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

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

  .contact-form-section {
    padding: 20px;
  }

  body.sd-page-redesign .buttonizer,
  body.sd-page-redesign #buttonizer-backdrop,
  body.sd-page-redesign .vi-wcaio-menu-cart,
  body.sd-page-redesign .vi-wcaio-sidebar-cart-icon-wrap,
  body.sd-page-redesign #fb-root {
    display: none !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
