:root {
  --bg: #0d0d0d;
  --bg-soft: #181818;
  --surface: rgba(22, 22, 22, 0.82);
  --surface-strong: #252525;
  --surface-light: #f5efe8;
  --card: rgba(30, 30, 30, 0.9);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f5f3ef;
  --text-muted: #b8b0a7;
  --text-dark: #17130f;
  --accent: #ff9f1c;
  --accent-strong: #ff6a00;
  --accent-warm: #ffd166;
  --success: #78d1a5;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.26);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: #0a0a0a;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  max-width: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 62rem 36rem at 7% 3%, rgba(255, 205, 84, 0.42), transparent 64%),
    radial-gradient(ellipse 54rem 32rem at 93% 18%, rgba(255, 125, 58, 0.35), transparent 66%),
    radial-gradient(ellipse 58rem 34rem at 9% 36%, rgba(255, 225, 112, 0.32), transparent 66%),
    radial-gradient(ellipse 56rem 34rem at 92% 55%, rgba(255, 156, 44, 0.35), transparent 66%),
    radial-gradient(ellipse 60rem 36rem at 11% 76%, rgba(255, 210, 92, 0.30), transparent 68%),
    radial-gradient(ellipse 52rem 32rem at 88% 96%, rgba(255, 112, 82, 0.32), transparent 66%),
    linear-gradient(180deg, #0d0b0a 0%, #1a130f 32%, #221a12 68%, #121110 100%);
  line-height: 1.7;
  overscroll-behavior-x: none;
}

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

iframe {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  isolation: isolate;
  width: min(100% - 32px, var(--container));
  max-width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 42px) 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell::before {
  display: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--container));
  max-width: 100%;
  min-height: var(--header-height);
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px var(--card-border);
  transform: translateX(-50%);
}

.main-banner {
  display: block;
  width: 100%;
  max-width: 1354px;
  height: auto;
  aspect-ratio: 1354 / 602;
  margin: 1.5rem auto 2rem;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

body[data-page="home"] .main-banner {
  align-self: center;
  width: 100%;
  max-width: 1354px;
  height: auto;
  aspect-ratio: 1354 / 602;
  margin: 1.5rem auto 2rem;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-logo {
  width: clamp(136px, 16vw, 188px);
  height: auto;
  object-fit: contain;
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: auto;
  padding-left: 24px;
  border-left: 1px solid var(--card-border);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.header-contact a {
  color: var(--text-muted);
  white-space: nowrap;
  max-width: 100%;
  transition: color 0.2s ease;
}

.header-contact a:hover {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-nav>a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-muted);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-nav a[aria-current="page"],
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 143, 31, 0.14);
}

.site-nav>a:hover,
.site-nav>a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.site-nav a.nav-link:hover,
.site-nav a.nav-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
}

.nav-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.85;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-muted);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

main {
  flex: 1;
  display: grid;
  gap: 28px;
}

.section {
  padding: 34px 0;
}

.hero,
.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

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

.hero-copy,
.inner-copy,
.story-layout,
.about-highlights,
.contact-card,
.content-card,
.story-card,
.image-slot,
.service-card,
.highlight {
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.inner-copy,
.about-copy {
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .hero-copy {
  display: grid;
  align-content: center;
  min-height: clamp(420px, 58vh, 640px);
  padding: clamp(34px, 6vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 177, 90, 0.24), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(255, 143, 31, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 18, 0.94);
}

.hero .hero-copy h1,
.hero .hero-text {
  max-width: 920px;
}

.hero .hero-points {
  grid-template-columns: repeat(3, minmax(0, max-content));
  align-items: start;
}

.hero-copy h1,
.inner-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-text,
.inner-text,
.section-heading p,
.about-copy p,
.content-card p,
.story-card p,
.contact-card p,
.process-step p,
.service-card p,
.highlight p,
.image-slot p {
  color: var(--text-muted);
}

.eyebrow,
p.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 14px 30px rgba(255, 143, 31, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-points,
.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-clean-hero .hero-points {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  text-align: left;
}

.hero-points li,
.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
}

.hero-points li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  box-shadow: 0 0 0 6px rgba(255, 143, 31, 0.12);
}

.service-clean-hero .hero-points li {
  flex: 1;
  min-width: 250px;
  padding-left: 26px;
}

.service-clean-hero .hero-points li::before {
  position: absolute;
  display: block;
  margin-right: 0;
}

.hero-panel,
.story-layout {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.card-index,
.story-tag {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 143, 31, 0.16);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.service-card h3,
.process-step h3,
.highlight strong,
.content-card h2,
.story-card h2,
.contact-card h2,
.section-heading h2,
.about-copy h2,
.image-slot strong {
  display: block;
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-grid {
  display: grid;
  gap: 32px;
}

.about-section {
  display: flex;
  flex-direction: column;
}

.about-highlights {
  margin-top: auto;
}


.section-heading {
  max-width: 760px;
}

.section-heading h2,
.about-copy h2,
.content-card h2,
.story-card h2,
.contact-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cards,
.process-grid,
.image-story-grid,
.content-grid,
.about-section {
  display: grid;
  gap: 18px;
}

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

.service-card,
.content-card,
.process-step,
.story-card,
.image-slot,
.highlight {
  padding: 24px;
  border-radius: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card .button {
  margin-top: auto;
}

.service-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.service-card li {
  position: relative;
  padding-left: 26px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  box-shadow: 0 0 0 6px rgba(255, 143, 31, 0.12);
}

.service-card li+li {
  margin-top: 8px;
}

.service-media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  margin: 0 0 24px;
  border-radius: 22px;
  background: #050505;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.service-media:hover {
  transform: scale(1.03);
}

.service-media img {
  width: min(96%, 420px);
  height: auto;
  border-radius: 28px;
  transition: transform 0.4s ease;
}

.service-media-editoria img {
  width: min(96%, 420px);
}

.service-media:hover img {
  transform: scale(1.05);
}

.about-section {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.about-copy {
  height: 100%;
  border-radius: var(--radius-xl);
}

.about-highlights {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-content: stretch;
  gap: 16px;
  height: 100%;
  padding: 16px;
  border-radius: var(--radius-xl);
}

.highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.process-step {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 40px;
  align-items: end;
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(135deg,
      rgba(255, 143, 31, 0.18),
      rgba(255, 177, 90, 0.1)),
    rgba(16, 16, 16, 0.96);
}

.final-cta-card {
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.contact-details a {
  font-size: 1.02rem;
  font-weight: 700;
}

.contact-vat {
  align-self: center;
  justify-self: start;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
}

.contact-map {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

body[data-page="home"] .hero-copy,
body[data-page="home"] .section-heading,
body[data-page="home"] .service-card {
  text-align: center;
}

body[data-page="home"] .section-heading {
  margin-right: auto;
  margin-left: auto;
}

body[data-page="home"] .eyebrow,
body[data-page="home"] .hero-actions {
  justify-content: center;
}

body[data-page="home"] .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

body[data-page="home"] .hero .hero-copy h1,
body[data-page="home"] .hero .hero-text {
  margin-right: auto;
  margin-left: auto;
}

body[data-page="home"] .hero .hero-points {
  justify-content: center;
}

body[data-page="home"] .hero-points li {
  padding-left: 0;
}

body[data-page="home"] .hero-points li::before {
  position: static;
  display: inline-block;
  margin-right: 12px;
  vertical-align: 0.08em;
}

body[data-page="home"] .service-card ul {
  padding-left: 0;
}



.final-cta-points {
  margin-top: 24px;
}

.cta-small-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 18px;
  padding: 24px 6px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content {
  max-width: 920px;
  margin-inline: auto;
}

.privacy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.privacy-content p,
.privacy-content li {
  color: var(--text-muted);
  line-height: 1.75;
}

.privacy-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.privacy-content a {
  color: var(--text);
  text-underline-offset: 4px;
}

.subpage-main .section {
  padding-top: 28px;
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-width: 0;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)),
    rgba(20, 20, 20, 0.9);
}

.story-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  overflow-wrap: anywhere;
}

.story-card-featured {
  flex: 1.2 1 auto;
  min-height: 240px;
  background:
    radial-gradient(circle at top right,
      rgba(255, 143, 31, 0.2),
      transparent 38%),
    rgba(255, 255, 255, 0.05);
}

.inner-hero .story-card-featured h2 {
  font-size: clamp(1.35rem, 1.55vw, 1.9rem);
  line-height: 1.22;
  max-width: 18ch;
}

.inner-hero .story-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.image-story-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.image-slot {
  display: flex;
  align-items: end;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 143, 31, 0.06), rgba(14, 14, 14, 0.84)),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.01));
}

.image-slot-large {
  min-height: 100%;
}

.media-showcase {
  display: grid;
  gap: 22px;
  overflow-x: hidden;
  overflow-x: clip;
}

.media-frame {
  min-width: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.media-frame {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 340px;
  background:
    radial-gradient(circle at top right, rgba(255, 177, 90, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.98);
  transition: transform 0.4s ease;
}

.media-frame:hover {
  transform: scale(1.02);
}

.media-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-frame-web {
  background:
    radial-gradient(circle at top right, rgba(106, 169, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.98);
}

.media-frame-print {
  background:
    radial-gradient(circle at top right, rgba(255, 177, 90, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.98);
}

.media-frame-sign {
  background:
    radial-gradient(circle at top right, rgba(120, 209, 165, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.98);
}

.media-frame-edit {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 129, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.98);
}

.media-frame-studio {
  background:
    radial-gradient(circle at top right, rgba(196, 167, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(15, 15, 15, 0.98);
}

.media-mockup {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(248, 243, 236, 0.92);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.media-mockup::before,
.media-mockup::after {
  content: "";
  position: absolute;
}

.media-mockup-browser {
  top: 40px;
  left: 28px;
  right: 96px;
  bottom: 92px;
}

.media-mockup-browser::before {
  left: 0;
  right: 0;
  top: 0;
  height: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(90deg, rgba(255, 143, 31, 0.2), rgba(0, 0, 0, 0.04));
}

.media-mockup-browser::after {
  left: 18px;
  right: 18px;
  bottom: 22px;
  height: 48%;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 143, 31, 0.12), rgba(201, 101, 0, 0.24));
}

.media-mockup-phone {
  width: 92px;
  right: 24px;
  top: 66px;
  bottom: 48px;
  border-radius: 24px;
}

.media-mockup-phone::before {
  left: 14px;
  right: 14px;
  top: 18px;
  bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(106, 169, 255, 0.14), rgba(255, 143, 31, 0.16));
}

.media-mockup-sheet {
  width: 140px;
  height: 190px;
  left: 34px;
  top: 54px;
  transform: rotate(-7deg);
}

.media-mockup-sheet::before,
.media-mockup-card::before {
  left: 14px;
  right: 14px;
  top: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 143, 31, 0.18);
}

.media-mockup-sheet::after,
.media-mockup-card::after {
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 54%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 177, 90, 0.12), rgba(201, 101, 0, 0.18));
}

.media-mockup-card {
  width: 176px;
  height: 104px;
  right: 30px;
  bottom: 58px;
  transform: rotate(8deg);
}

.media-mockup-store {
  left: 24px;
  right: 24px;
  bottom: 34px;
  height: 128px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 243, 236, 0.98), rgba(235, 225, 213, 0.94));
}

.media-mockup-store::before {
  left: 22px;
  right: 22px;
  top: 26px;
  height: 16px;
  border-radius: 999px;
  background: rgba(120, 209, 165, 0.22);
}

.media-mockup-store::after {
  left: 30px;
  right: 30px;
  bottom: 18px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
}

.media-mockup-signboard {
  left: 48px;
  right: 48px;
  top: 56px;
  height: 86px;
  border-radius: 18px;
}

.media-mockup-signboard::before {
  left: 22px;
  right: 22px;
  top: 24px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 209, 165, 0.22), rgba(255, 143, 31, 0.18));
}

.media-mockup-signboard::after {
  width: 36px;
  height: 36px;
  right: 20px;
  bottom: 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);
}

.media-mockup-video {
  top: 38px;
  left: 28px;
  right: 28px;
  height: 180px;
}

.media-mockup-video::before {
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid rgba(255, 143, 31, 0.84);
  transform: translate(-40%, -50%);
}

.media-mockup-video::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
}

.media-mockup-photo {
  width: 124px;
  height: 148px;
  right: 26px;
  bottom: 30px;
  transform: rotate(7deg);
}

.media-mockup-photo::before {
  width: 22px;
  height: 22px;
  left: 16px;
  top: 16px;
  border-radius: 50%;
  background: rgba(255, 143, 31, 0.22);
}

.media-mockup-photo::after {
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 56%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 107, 129, 0.14), rgba(0, 0, 0, 0.08));
}

.media-label {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
  overflow-wrap: anywhere;
}

.media-caption strong {
  display: block;
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.media-caption p {
  margin: 0;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.content-card p:not(.eyebrow),
.content-card ul,
.include-body p,
.print-gallery-item p {
  text-align: left;
}

.media-showcase-items {
  display: grid;
  gap: 32px;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background: #121212;
}

.showcase-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.showcase-copy h3,
.showcase-copy p,
.showcase-copy li,
.content-card h2,
.content-card p,
.content-card li {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .showcase-item {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0;
    border: none;
    background: transparent;
  }

  .showcase-item.is-reversed {
    flex-direction: row-reverse;
  }

  .showcase-item .media-frame,
  .showcase-item .showcase-copy {
    flex: 1;
  }

  .showcase-copy {
    border: 1px solid var(--card-border);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    border-radius: 24px;
  }
}

/* Include cards (sezione "Cosa include") */
.include-grid {
  margin-bottom: 32px;
}

.include-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.include-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.include-card-large {
  background:
    radial-gradient(circle at top right,
      rgba(255, 143, 31, 0.16),
      transparent 42%),
    var(--card);
}

.include-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 143, 31, 0.14);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.include-body strong {
  display: block;
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.include-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.value-card {
  min-height: 100%;
}

.print-showcase-grid {
  display: grid;
  /* Imposta 3 colonne affiancate su desktop */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.print-showcase-grid.has-active {
  grid-template-columns: minmax(0, 1fr);
}

.print-box {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    max-height 0.35s ease,
    padding 0.35s ease,
    margin 0.35s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.print-box:hover:not(.is-active) {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(255, 159, 28, 0.15);
}

.print-showcase-grid.has-active .print-box.is-active {
  grid-column: 1 / -1;
  animation: print-box-open 0.32s ease;
}

.print-showcase-grid.has-active .print-box.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  border-color: transparent;
  box-shadow: none;
}

.print-box-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.print-toggle {
  min-width: 170px;
  margin-top: auto;
}

.print-dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

.print-box.is-open .print-dropdown {
  max-height: 900px;
  margin-top: 22px;
  opacity: 1;
}

@keyframes print-box-open {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.print-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.print-gallery-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.print-gallery-item strong {
  display: block;
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

.print-gallery-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.print-preview {
  position: relative;
  min-height: 150px;
  margin-bottom: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 143, 31, 0.18), rgba(255, 177, 90, 0.12)),
    rgba(16, 16, 16, 0.94);
  overflow: hidden;
}

.print-preview::before,
.print-preview::after {
  content: "";
  position: absolute;
  border-radius: 12px;
  background: rgba(248, 243, 236, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.print-preview::after {
  background:
    linear-gradient(180deg, rgba(255, 143, 31, 0.18), rgba(248, 243, 236, 0.98));
}

.print-preview-card-horizontal::before {
  width: 86px;
  height: 54px;
  left: 22px;
  top: 48px;
}

.print-preview-card-horizontal::after {
  width: 86px;
  height: 54px;
  right: 18px;
  top: 34px;
}

.print-preview-card-vertical::before {
  width: 52px;
  height: 88px;
  left: 34px;
  top: 28px;
}

.print-preview-card-vertical::after {
  width: 52px;
  height: 88px;
  right: 34px;
  top: 38px;
}

.print-preview-card-premium::before {
  width: 98px;
  height: 58px;
  left: 26px;
  top: 42px;
  transform: rotate(-8deg);
}

.print-preview-card-premium::after {
  width: 98px;
  height: 58px;
  right: 22px;
  top: 34px;
  transform: rotate(6deg);
}

.print-preview-flyer-a5::before,
.print-preview-flyer-a5::after,
.print-preview-flyer-a4::before,
.print-preview-flyer-a4::after,
.print-preview-flyer-fold::before,
.print-preview-flyer-fold::after,
.print-preview-booklet::before,
.print-preview-booklet::after,
.print-preview-brochure::before,
.print-preview-brochure::after,
.print-preview-catalog::before,
.print-preview-catalog::after,
.print-preview-letterhead::before,
.print-preview-letterhead::after,
.print-preview-folder::before,
.print-preview-folder::after,
.print-preview-postcard::before,
.print-preview-postcard::after {
  width: 76px;
  height: 102px;
  top: 24px;
}

.print-preview-flyer-a5::before,
.print-preview-booklet::before,
.print-preview-letterhead::before {
  left: 20px;
}

.print-preview-flyer-a5::after,
.print-preview-booklet::after,
.print-preview-letterhead::after {
  right: 20px;
}

.print-preview-flyer-a4::before,
.print-preview-brochure::before,
.print-preview-folder::before {
  left: 40px;
}

.print-preview-flyer-a4::after,
.print-preview-brochure::after,
.print-preview-folder::after {
  width: 58px;
  height: 92px;
  right: 24px;
  top: 34px;
}

.print-preview-flyer-fold::before,
.print-preview-catalog::before,
.print-preview-postcard::before {
  width: 54px;
  height: 98px;
  left: 18px;
}

.print-preview-flyer-fold::after,
.print-preview-catalog::after,
.print-preview-postcard::after {
  width: 54px;
  height: 98px;
  right: 18px;
}

.print-preview-folder::before {
  transform: skewY(-6deg);
}

.print-preview-folder::after {
  transform: skewY(6deg);
}

.print-preview-postcard::before,
.print-preview-postcard::after {
  height: 74px;
  top: 40px;
}

.blog-hero {
  align-items: stretch;
}

.blog-highlight {
  min-width: 0;
}

.blog-feed-section {
  display: grid;
  gap: 28px;
}

.blog-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.blog-post {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow-soft);
}

.blog-post-featured {
  height: 100%;
}

.blog-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 143, 31, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.04);
}

.blog-post-featured .blog-media {
  aspect-ratio: 16 / 10;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-post:hover .blog-media img {
  transform: scale(1.04);
}

.blog-post-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 143, 31, 0.12);
  color: var(--accent-warm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.blog-post p {
  margin: 0;
  color: var(--text-muted);
}

body[data-page="editoria"] .editoria-intro-grid .content-card:first-child {
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(24, 24, 24, 0.92);
}

.service-clean-hero .inner-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 209, 102, 0.2), transparent 30%),
    radial-gradient(circle at 14% 90%, rgba(255, 106, 0, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 18, 0.94);
}

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

.service-clean-hero .inner-copy h1,
.service-clean-hero .inner-text {
  max-width: 900px;
}

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

.service-clean-hero .hero-points {
  width: min(100%, 820px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.service-intro-grid .content-card:first-child {
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(24, 24, 24, 0.92);
}

body[data-page="error-404"] .eyebrow::before {
  display: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.78s ease,
    transform 0.78s ease;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.js .reveal.reveal-from-left {
  transform: translateX(-90vw);
}

html.js .reveal.reveal-from-right {
  transform: translateX(90vw);
}

html.js .showcase-item .showcase-copy.reveal,
html.js .content-grid .content-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

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

html.js .media-frame.reveal.is-visible:hover {
  transform: scale(1.02);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 36px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  padding: 0;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.94);
  color: white;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.email-fallback-notice {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  background: rgba(8, 8, 8, 0.92);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.email-fallback-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 820px) {
  .showcase-item {
    gap: 14px;
    padding: 16px;
    overflow: hidden;
  }

  .showcase-copy {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    box-sizing: border-box;
  }

  .showcase-copy > :first-child,
  .showcase-copy .feature-list {
    margin-top: 0;
  }

  .showcase-copy > :last-child {
    margin-bottom: 0;
  }

  .showcase-copy h3 {
    font-size: clamp(1.15rem, 6vw, 1.45rem);
    line-height: 1.16;
  }

  .showcase-copy p,
  .showcase-copy li {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .showcase-copy .feature-list {
    padding-right: 2px;
  }

  .showcase-copy .feature-list li,
  .content-card .feature-list li {
    padding-left: 22px;
  }

  .showcase-copy h3,
  .showcase-copy p,
  .showcase-copy li {
    overflow-wrap: anywhere;
  }

  .media-frame {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    min-height: 0;
  }

  .media-frame:hover {
    transform: none;
  }

  .media-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  html.js .reveal.reveal-from-left,
  html.js .reveal.reveal-from-right {
    transform: translateY(12px);
  }

  html.js .showcase-item .reveal {
    transition-duration: 0.55s;
  }
}

@media (max-width: 1080px) {

  .hero,
  .about-section,
  .contact-card,
  .image-story-grid,
  .blog-feed,
  .print-showcase-grid,
  .cards,
  .process-grid,
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inner-hero,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-card-featured,
  .image-slot-large,
  .contact-card>div:first-child,
  .contact-actions,
  .contact-vat {
    grid-column: 1 / -1;
  }

  .contact-vat {
    justify-self: start;
    text-align: left;
  }

  .story-card-featured {
    grid-row: auto;
  }

  .story-card {
    min-height: 0;
  }

  .contact-card {
    align-items: start;
  }

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

  .include-card-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, var(--container));
    padding-top: calc(var(--header-height) + 30px);
  }

  body {
    background:
      radial-gradient(ellipse 28rem 22rem at 0% 3%, rgba(255, 205, 84, 0.36), transparent 66%),
      radial-gradient(ellipse 26rem 20rem at 100% 20%, rgba(255, 125, 58, 0.30), transparent 68%),
      radial-gradient(ellipse 28rem 22rem at 0% 42%, rgba(255, 225, 112, 0.27), transparent 68%),
      radial-gradient(ellipse 26rem 20rem at 100% 64%, rgba(255, 156, 44, 0.28), transparent 68%),
      radial-gradient(ellipse 28rem 22rem at 0% 88%, rgba(255, 210, 92, 0.26), transparent 70%),
      linear-gradient(180deg, #0d0b0a 0%, #1a130f 32%, #221a12 68%, #121110 100%);
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, var(--container));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    overflow: hidden;
    padding: 10px 14px;
  }

  .brand {
    flex: 0 0 auto;
    grid-column: 1;
  }

  .brand-logo {
    width: clamp(112px, 30vw, 150px);
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }

  .header-contact {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2px;
    width: auto;
    min-width: 0;
    max-width: 100%;
    justify-self: center;
    align-items: flex-start;
    margin-right: 0;
    margin-top: 0;
    padding-left: 12px;
    border-left: 1px solid var(--card-border);
    font-size: 0.78rem;
    line-height: 1.2;
    grid-column: 2;
  }

  .header-contact a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 6px auto 0;
    padding-top: 6px;
  }

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

  .site-nav>a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-inline: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease,
      margin-top 0.2s ease,
      padding 0.2s ease,
      visibility 0.2s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    margin-top: 8px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    max-height: 320px;
    text-align: center;
  }

  .nav-dropdown-menu a {
    text-align: center;
  }

  .nav-dropdown:not(.is-open):focus-within .nav-dropdown-menu {
    margin-top: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .nav-dropdown.is-open .nav-caret {
    transform: rotate(225deg) translateY(1px);
  }

  .hero,
  .inner-hero,
  .about-section,
  .cards,
  .blog-feed,
  .process-grid,
  .content-grid,
  .image-story-grid,
  .print-showcase-grid,
  .story-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .print-gallery {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .inner-copy,
  .about-copy,
  .hero-panel,
  .story-layout,
  .contact-card {
    padding: 24px;
  }

  .contact-map iframe {
    height: 260px;
  }

  .media-frame {
    width: 100%;
    min-height: 0;
  }

  .media-caption {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 100%;
    padding: 14px;
    border-radius: 0;
    background: rgba(8, 8, 8, 0.84);
    backdrop-filter: none;
  }

  .media-caption p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-copy h1,
  .inner-copy h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero .hero-points {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero .hero-points {
    justify-content: stretch;
    text-align: left;
  }

  body[data-page="home"] .hero-points li {
    width: 100%;
  }

  .service-clean-hero .hero-points {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: left;
  }

  .service-clean-hero .hero-points li {
    width: 100%;
  }

  .section-heading h2,
  .about-copy h2,
  .content-card h2,
  .story-card h2,
  .contact-card h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {

  .hero-copy,
  .inner-copy,
  .about-copy,
  .service-card,
  .content-card,
  .print-box,
  .process-step,
  .story-card,
  .image-slot,
  .highlight,
  .contact-card,
  .hero-panel,
  .story-layout {
    padding: 20px;
  }

  .main-banner {
    height: auto;
    width: 100%;
    border-radius: 20px;
  }

  body[data-page="home"] .main-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 2rem;
    border-radius: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .media-frame {
    min-height: 0;
  }

  .media-label {
    top: 12px;
    left: 12px;
    min-height: 30px;
    padding: 5px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .media-caption {
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px;
    border-radius: 0;
    background: rgba(8, 8, 8, 0.9);
  }

  .media-caption strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .back-to-top {
    right: 14px;
    bottom: 24px;
  }

  .contact-map iframe {
    height: 220px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, var(--container));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    overflow: hidden;
    padding: 10px 14px;
  }

  .brand {
    flex: 0 0 auto;
    grid-column: 1;
  }

  .brand-logo {
    width: clamp(112px, 30vw, 150px);
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }

  .header-contact {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2px;
    width: auto;
    min-width: 0;
    max-width: 100%;
    justify-self: center;
    align-items: flex-start;
    margin-right: 0;
    margin-top: 0;
    padding-left: 12px;
    border-left: 1px solid var(--card-border);
    font-size: 0.78rem;
    line-height: 1.2;
    grid-column: 2;
  }

  .header-contact a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 6px auto 0;
    padding-top: 6px;
    max-height: min(60vh, 320px);
    overflow-y: auto;
  }

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

  .site-nav>a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-inline: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease,
      margin-top 0.2s ease,
      padding 0.2s ease,
      visibility 0.2s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    margin-top: 8px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    max-height: 320px;
    text-align: center;
  }

  .nav-dropdown-menu a {
    text-align: center;
  }

  .nav-dropdown:not(.is-open):focus-within .nav-dropdown-menu {
    margin-top: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
}
