:root {
  --paper: #fbfaf7;
  --surface: #fff;
  --soft: #f3eee6;
  --line: #ded7cc;
  --ink: #242628;
  --muted: #696661;
  --red: #c91f25;
  --red-dark: #95171d;
  --gold: #c7a15d;
  --olive: #4e6258;
  --shadow: 0 22px 55px rgba(32, 29, 24, 0.13);
  --radius: 8px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.intro-active-root {
  overflow: hidden;
}

html.intro-active-root.intro-skip {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

html.intro-skip body.intro-active {
  overflow-x: hidden;
  overflow-y: auto;
}

.intro-loader {
  align-items: center;
  background: #fff;
  display: grid;
  inset: 0;
  justify-items: center;
  pointer-events: none;
  position: fixed;
  z-index: 999;
  animation: introVeilFade 1200ms ease 3.35s forwards;
}

html.intro-skip .intro-loader {
  display: none;
}

.intro-loader img {
  filter: blur(10px);
  max-width: calc(100vw - 40px);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  width: min(56vw, 760px);
  animation:
    introLogoReveal 2450ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms forwards,
    introLogoDissolve 900ms ease 2.85s forwards;
}

@keyframes introLogoReveal {
  0% {
    filter: blur(12px);
    opacity: 0;
    transform: translateY(14px) scale(0.95);
  }

  66%,
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLogoDissolve {
  to {
    filter: blur(12px);
    opacity: 0;
    transform: translateY(-6px) scale(1.035);
  }
}

@keyframes introVeilFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader {
    display: none;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.93);
  border-bottom: 1px solid rgba(36, 38, 40, 0.08);
  display: flex;
  gap: 22px;
  height: var(--header);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(16px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

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

.brand img {
  height: auto;
  max-height: 54px;
  object-position: left center;
  width: 222px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
}

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

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 22px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  min-height: 42px;
  padding: 0 15px;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
}

.hero {
  align-items: end;
  color: #fff;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  padding: calc(var(--header) + 46px) clamp(18px, 6vw, 76px) 46px;
  position: relative;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 15, 15, 0.86), rgba(14, 15, 15, 0.58) 42%, rgba(14, 15, 15, 0.16)),
    linear-gradient(0deg, rgba(14, 15, 15, 0.48), rgba(14, 15, 15, 0) 46%);
  z-index: -1;
}

.hero-content {
  max-width: 940px;
}

.eyebrow,
.section-kicker,
.mini-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffdedd;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 1060px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.7vw, 1.25rem);
  line-height: 1.85;
  max-width: 820px;
}

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

.stat-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 68px);
  max-width: 940px;
  padding-top: 20px;
}

.stat-strip strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.stat-strip span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 8px;
}

.section,
.page-hero {
  padding: clamp(70px, 10vw, 118px) clamp(18px, 6vw, 76px);
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding-top: calc(var(--header) + clamp(56px, 8vw, 110px));
}

.page-hero.with-image {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 66px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
}

.page-hero.with-image img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(22px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  margin-bottom: 38px;
}

.section-heading h2,
.designer-copy h2,
.contact-cta h2,
.two-column h2,
.narrow-copy h2 {
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.section-heading p,
.designer-copy p,
.contact-cta p,
.rich-copy p,
.narrow-copy p,
.muted {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.card-grid,
.project-grid,
.article-grid,
.package-grid,
.detail-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card,
.project-card,
.article-card,
.package-card,
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.image-card img,
.project-card img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  width: 100%;
}

.image-card > div,
.project-card > div,
.article-card,
.package-card,
.detail-card {
  padding: clamp(20px, 3vw, 30px);
}

.image-card h3,
.project-card h3,
.article-card h3,
.package-card h3,
.detail-card h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
}

.image-card p,
.project-card p,
.article-card p,
.package-card p,
.detail-card p {
  color: var(--muted);
  line-height: 1.72;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

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

.package-card span {
  color: var(--red);
  display: block;
  font-size: 1.5rem;
  font-weight: 950;
  margin-bottom: 18px;
}

.package-card ul,
.designer-copy ul,
.hero-bullets {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.package-card li,
.designer-copy li,
.hero-bullets li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.package-card li::before,
.designer-copy li::before,
.hero-bullets li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.65em;
  width: 7px;
}

.upgrade-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 20px;
  padding: clamp(22px, 3vw, 34px);
}

.upgrade-panel > div {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.upgrade-panel p {
  color: var(--muted);
  line-height: 1.68;
  margin: 8px 0 0;
}

.designer-section {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
}

.designer-copy p,
.dark-section .section-heading p,
.contact-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.designer-copy .award-line {
  border-left: 3px solid var(--red);
  color: #fff2dd;
  font-weight: 900;
  margin: 26px 0 18px;
  padding-left: 16px;
}

.designer-media {
  position: relative;
}

.designer-media img {
  aspect-ratio: 3 / 4.3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.designer-media div {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  bottom: 18px;
  color: var(--ink);
  left: 18px;
  padding: 16px 18px;
  position: absolute;
  right: 18px;
}

.designer-media strong,
.designer-media span {
  display: block;
}

.designer-media span {
  color: var(--muted);
  margin-top: 4px;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.step-grid {
  display: grid;
  gap: 1px;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: 64px minmax(170px, 0.35fr) minmax(0, 1fr);
  padding: 22px;
}

.step-card:hover,
.step-card:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.step-card span {
  color: #ffdedd;
  font-weight: 950;
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
  margin: 0;
}

.contact-cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.contact-cta h2,
.contact-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}

.custom-section {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
}

.custom-section img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.custom-section h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
}

.custom-section p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.dark-section .custom-section p {
  color: rgba(255, 255, 255, 0.72);
}

.two-column,
.contact-layout,
.case-sections {
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.rich-copy-section {
  background: #fff;
}

.rich-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.rich-card-grid,
.detail-matrix,
.detail-panel-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rich-card,
.detail-matrix article,
.detail-panel-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
}

.rich-card h3,
.detail-matrix strong,
.detail-panel-grid strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.rich-card p,
.detail-matrix p {
  color: var(--muted);
  line-height: 1.76;
}

.detail-process {
  border-top: 1px solid var(--line);
  display: grid;
}

.detail-process div {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 70px minmax(0, 1fr);
  padding: 20px 0;
}

.detail-process span {
  color: var(--red);
  font-weight: 950;
}

.detail-process strong {
  font-size: 1.08rem;
  line-height: 1.65;
}

.detail-panel-section {
  background: var(--ink);
  color: #fff;
}

.detail-panel-heading {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  margin-bottom: 30px;
}

.detail-panel-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.82;
}

.detail-panel-grid div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-list div,
.contact-panel,
.case-sections article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

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

.case-sections p {
  color: var(--muted);
  line-height: 1.76;
}

.narrow-copy {
  margin: 0 auto;
  max-width: 980px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb em {
  font-style: normal;
}

.project-card span,
.article-card span {
  color: var(--red);
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 14px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label,
.admin-form label,
.login-card label {
  display: grid;
  gap: 8px;
}

.contact-form .full,
.contact-form .form-note,
.contact-form button,
.contact-form .form-success {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

label span {
  font-size: 0.88rem;
  font-weight: 850;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-success {
  background: #edf4ef;
  border: 1px solid #cfe4d4;
  border-radius: var(--radius);
  color: #31573c;
  padding: 12px 14px;
}

.site-footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 28px clamp(18px, 6vw, 76px);
}

.site-footer img {
  height: auto;
  max-height: 48px;
  object-position: left center;
  width: 188px;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mobile-sticky-cta {
  background: var(--red);
  bottom: 14px;
  box-shadow: 0 14px 34px rgba(201, 31, 37, 0.28);
  color: #fff;
  display: none;
  font-weight: 950;
  left: 14px;
  min-height: 50px;
  place-items: center;
  position: fixed;
  right: 14px;
  z-index: 25;
}

.admin-body {
  background: #f4f0ea;
  min-height: 100vh;
}

.login-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  margin: 10vh auto;
  max-width: 440px;
  padding: 34px;
}

.login-card img {
  height: 54px;
  object-fit: contain;
  width: 170px;
}

.login-card h1 {
  margin-bottom: 0;
}

.admin-header {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 42px);
}

.admin-header strong,
.admin-header span {
  display: block;
}

.admin-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin-top: 4px;
}

.admin-header nav {
  display: flex;
  gap: 16px;
}

.admin-app {
  display: grid;
  gap: 20px;
  grid-template-columns: 240px minmax(0, 1fr);
  padding: clamp(18px, 4vw, 42px);
}

.admin-tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  padding: 12px;
  position: sticky;
  top: 18px;
}

.admin-tabs button {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 12px;
  text-align: left;
}

.admin-tabs button.active {
  background: var(--ink);
  color: #fff;
}

.admin-panel {
  display: grid;
  gap: 18px;
}

.admin-toolbar {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 16px;
}

.admin-form,
.editor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

.admin-form .wide,
.editor-card .wide {
  grid-column: 1 / -1;
}

.editor-card h3 {
  margin-bottom: 0;
}

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

.nested-list {
  display: grid;
  gap: 12px;
}

.nested-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  padding: 14px;
}

.danger {
  background: #fff0f0;
  color: #a51414;
}

.secondary {
  background: var(--soft);
  color: var(--ink);
}

.save-status {
  color: var(--olive);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
  }

  .card-grid,
  .project-grid,
  .article-grid,
  .package-grid,
  .detail-grid,
  .upgrade-panel > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .designer-section,
  .two-column,
  .contact-layout,
  .page-hero.with-image,
  .case-sections,
  .custom-section {
    grid-template-columns: 1fr;
  }
}

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

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    padding: 0 14px;
  }

  .intro-loader img {
    width: min(78vw, 460px);
  }

  .brand {
    min-width: 154px;
  }

  .brand img {
    height: auto;
    max-height: 40px;
    width: 150px;
  }

  .site-nav {
    align-items: stretch;
    background: var(--paper);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px;
    position: fixed;
    right: 0;
    top: var(--header);
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 1.06rem;
    padding: 15px 0;
  }

  .nav-toggle {
    align-items: center;
    background: var(--red) !important;
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(32, 29, 24, 0.1);
    color: #fff !important;
    display: flex !important;
    font-size: 0.92rem;
    font-weight: 950;
    justify-content: center;
    position: fixed;
    left: 172px;
    right: auto;
    top: 13px;
    width: 62px;
    z-index: 60;
  }

  .nav-toggle::before {
    content: none;
  }

  .nav-toggle span {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
    line-height: 1.06;
    max-width: 100%;
    word-break: break-all;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
    line-height: 1.78;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .stat-strip,
  .card-grid,
  .project-grid,
  .article-grid,
  .package-grid,
  .detail-grid,
  .rich-card-grid,
  .detail-matrix,
  .detail-panel-grid,
  .upgrade-panel > div,
  .contact-form,
  .editor-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .detail-panel-heading,
  .detail-process div {
    grid-template-columns: 1fr;
  }

  .step-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .step-card p {
    grid-column: 2;
  }

  .site-footer,
  .admin-app {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .admin-tabs {
    position: static;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}

@media (max-width: 600px) {
  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

.package-section {
  background: #f1ede6;
}

.video-case-section {
  align-items: center;
  background:
    linear-gradient(90deg, #f7f4ee 0%, #f7f4ee 46%, #202123 46%, #202123 100%);
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.46fr) minmax(420px, 1fr);
}

.video-case-copy {
  max-width: 620px;
}

.video-case-copy h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.7rem);
  line-height: 1.06;
  margin-bottom: 22px;
}

.video-case-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.video-case-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.video-case-points span {
  border: 1px solid rgba(36, 38, 40, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 9px 14px;
}

.video-case-media {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  position: relative;
}

.video-case-media video {
  aspect-ratio: 16 / 9;
  background: #111;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.video-case-caption {
  align-items: center;
  background: rgba(17, 17, 17, 0.82);
  bottom: 0;
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 3vw, 28px);
  position: absolute;
  right: 0;
}

.video-case-caption span {
  color: #ffdfdc;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-case-caption strong {
  font-size: 1.04rem;
}

.package-section .package-grid {
  border: 1px solid var(--line);
  gap: 0;
}

.package-section .package-card {
  background: rgba(255, 255, 255, 0.68);
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-rows: auto auto auto;
  min-height: 360px;
  overflow: visible;
  padding: clamp(24px, 3.2vw, 38px);
}

.package-section .package-card:last-child {
  border-right: 0;
}

.package-card .package-index {
  color: rgba(36, 38, 40, 0.28);
  display: block;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 0;
}

.package-card .package-price {
  color: var(--red);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 18px;
}

.package-section .package-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.package-section .package-card li {
  border-top: 1px solid rgba(36, 38, 40, 0.1);
  margin-bottom: 0;
  padding: 10px 0 10px 20px;
}

.package-section .upgrade-panel {
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  margin-top: 24px;
}

.package-section .upgrade-panel > div {
  display: block;
}

.package-section .upgrade-panel > div:last-child {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.upgrade-panel-head h3 {
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
}

.package-section .upgrade-panel article {
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.designer-section {
  background:
    linear-gradient(90deg, #202123 0%, #202123 54%, #2b2c2d 54%, #2b2c2d 100%);
  color: #fff;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  overflow: hidden;
}

.designer-section .section-kicker {
  color: #ffdfdc;
}

.designer-section .designer-copy {
  max-width: 720px;
}

.designer-section .designer-copy h2 {
  max-width: 760px;
}

.designer-section .designer-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.designer-stats {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 18px;
  padding: 18px 0;
}

.designer-stats strong,
.designer-stats span {
  display: block;
}

.designer-stats strong {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.designer-stats span {
  color: rgba(255, 255, 255, 0.58);
  margin-top: 6px;
}

.designer-resume-highlights {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 24px;
}

.designer-resume-highlights article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}

.designer-resume-highlights strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.designer-resume-highlights p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.68;
  margin: 0;
}

.designer-showcase {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 1fr) minmax(200px, 0.42fr);
}

.designer-portrait-card {
  background: #303133;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  margin: 0;
  padding: 12px;
}

.designer-portrait-card img {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.designer-portrait-card figcaption {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 16px 4px 2px;
}

.designer-portrait-card strong,
.designer-portrait-card span {
  display: block;
}

.designer-portrait-card strong {
  font-size: 1.5rem;
}

.designer-portrait-card span {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  text-align: right;
}

.designer-award-card {
  background: #f7f3ec;
  border-radius: var(--radius);
  color: var(--ink);
  padding: clamp(22px, 3vw, 34px);
}

.designer-award-card p {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.designer-award-card strong {
  display: block;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1;
  margin-bottom: 16px;
}

.designer-award-card span {
  color: var(--muted);
  line-height: 1.72;
}

.designer-project-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  grid-column: 1 / -1;
  padding: clamp(18px, 2.4vw, 26px);
}

.designer-project-card p {
  color: #ffdfdc;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.designer-project-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.designer-project-card ul {
  columns: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.designer-project-card li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 6px;
  break-inside: avoid;
}

.designer-project-card li::before {
  color: var(--gold);
  content: "· ";
  font-weight: 950;
}

.construction-section {
  background: #202123;
}

.construction-section .step-grid {
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.construction-section .step-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  min-height: 250px;
  padding: 24px;
}

.construction-section .step-card span {
  color: #ffdfdc;
  font-size: 1.1rem;
}

.construction-section .step-card strong {
  font-size: 1.1rem;
  line-height: 1.45;
}

.projects-section {
  background: #fff;
}

.projects-section .project-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
}

.projects-section .project-card {
  border-color: rgba(36, 38, 40, 0.12);
}

.projects-section .project-card:first-child img {
  aspect-ratio: 1.55 / 1;
}

.projects-section .project-card h3,
.insights-section .article-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.insights-section {
  background: #f7f4ee;
}

.insights-section .article-card {
  border-top: 3px solid var(--red);
  display: grid;
  min-height: 310px;
}

.insights-section .article-card .text-link {
  align-self: end;
}

.contact-cta {
  background: #1f2021;
  text-align: left;
}

.contact-cta-inner {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(26px, 4vw, 42px) 0;
}

.contact-cta .section-kicker,
.contact-cta h2,
.contact-cta p {
  margin-left: 0;
  margin-right: 0;
}

.contact-cta p {
  max-width: 760px;
}

@media (max-width: 1120px) {
  .video-case-section,
  .designer-section,
  .designer-showcase,
  .package-section .upgrade-panel,
  .projects-section .project-grid {
    grid-template-columns: 1fr;
  }

  .video-case-section {
    background: #f7f4ee;
  }

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

@media (max-width: 820px) {
  .package-section .package-grid {
    border: 0;
    gap: 14px;
  }

  .package-section .package-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: auto;
  }

  .package-section .upgrade-panel > div:last-child,
  .construction-section .step-grid,
  .designer-stats,
  .designer-resume-highlights,
  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .video-case-media video {
    aspect-ratio: 16 / 10;
  }

  .video-case-caption {
    align-items: start;
    background: #202123;
    display: grid;
    gap: 6px;
    position: static;
  }

  .video-case-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .designer-section {
    background: #202123;
  }

  .designer-showcase {
    gap: 14px;
  }

  .designer-portrait-card figcaption {
    align-items: start;
    display: grid;
  }

  .designer-portrait-card span {
    text-align: left;
  }

  .designer-project-card ul {
    columns: 1;
  }

  .contact-cta .button {
    width: 100%;
  }
}
