:root {
  color-scheme: dark;
  --page-bg: #1b1717;
  --page-bg-soft: #140f0f;
  --surface-card: rgba(237, 235, 221, 0.04);
  --surface-card-strong: rgba(237, 235, 221, 0.06);
  --surface-glass: rgba(27, 23, 23, 0.78);
  --hero-panel: linear-gradient(180deg, rgba(27, 23, 23, 0.98), rgba(18, 13, 13, 0.96));
  --cta-bg: linear-gradient(135deg, rgba(99, 0, 0, 0.2), rgba(129, 1, 0, 0.08));
  --chip-bg: rgba(237, 235, 221, 0.05);
  --line-soft: rgba(237, 235, 221, 0.1);
  --line-strong: rgba(237, 235, 221, 0.2);
  --text-main: #edebdd;
  --text-soft: rgba(237, 235, 221, 0.76);
  --text-muted: rgba(237, 235, 221, 0.48);
  --brand-strong: #810100;
  --hero-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  --card-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  --nav-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

html.light {
  color-scheme: light;
  --page-bg: #edebdd;
  --page-bg-soft: #e4dece;
  --surface-card: rgba(255, 255, 255, 0.12);
  --surface-card-strong: rgba(255, 255, 255, 0.08);
  --surface-glass: rgba(237, 235, 221, 0.64);
  --hero-panel: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 234, 0.96));
  --cta-bg: linear-gradient(135deg, rgba(99, 0, 0, 0.03), rgba(129, 1, 0, 0.015));
  --chip-bg: rgba(99, 0, 0, 0.05);
  --line-soft: rgba(27, 23, 23, 0.08);
  --line-strong: rgba(99, 0, 0, 0.18);
  --text-main: #1b1717;
  --text-soft: rgba(27, 23, 23, 0.74);
  --text-muted: rgba(27, 23, 23, 0.5);
  --brand-strong: #630000;
  --hero-shadow: 0 28px 70px rgba(27, 23, 23, 0.08);
  --card-shadow: 0 10px 30px rgba(27, 23, 23, 0.03);
  --nav-shadow: 0 16px 40px rgba(27, 23, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

[id] {
  scroll-margin-top: 8.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(129, 1, 0, 0.12), transparent 28%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-soft) 100%);
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0 0.8px, transparent 0.9px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.55) 0 0.7px, transparent 0.85px),
    radial-gradient(circle at 35% 75%, rgba(0, 0, 0, 0.45) 0 0.75px, transparent 0.9px),
    radial-gradient(circle at 65% 65%, rgba(0, 0, 0, 0.35) 0 0.65px, transparent 0.85px);
  background-size: 18px 18px, 23px 23px, 21px 21px, 27px 27px;
  mix-blend-mode: soft-light;
}

html.light body::before {
  opacity: 0.08;
}

html.dark body::before {
  opacity: 0.05;
}

::selection {
  background: rgba(129, 1, 0, 0.24);
}

.ambient-grid,
.ambient-orb {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
}

.ambient-grid {
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(100% - 1px), var(--line-soft) calc(100% - 1px)),
    linear-gradient(to bottom, transparent 0, transparent calc(100% - 1px), var(--line-soft) calc(100% - 1px));
  background-size: 160px 160px;
  mask-image: radial-gradient(circle at center, black 12%, transparent 82%);
  opacity: 0.1;
}

.ambient-orb {
  z-index: -1;
  filter: blur(120px);
  opacity: 0.3;
}

.ambient-orb-one {
  background: radial-gradient(circle, rgba(129, 1, 0, 0.24), transparent 58%);
  transform: translate(-22%, -30%);
}

.ambient-orb-two {
  background: radial-gradient(circle, rgba(237, 235, 221, 0.12), transparent 60%);
  transform: translate(60%, 8%);
}

.sticky.top-0 {
  position: sticky;
  isolation: isolate;
  padding-bottom: 0.8rem;
  background: linear-gradient(180deg, var(--page-bg) 0%, rgba(0, 0, 0, 0) 100%);
}

html.light .sticky.top-0 {
  background: linear-gradient(180deg, rgba(237, 235, 221, 0.96) 0%, rgba(237, 235, 221, 0) 100%);
}

html.dark .sticky.top-0 {
  background: linear-gradient(180deg, rgba(27, 23, 23, 0.96) 0%, rgba(27, 23, 23, 0) 100%);
}

.site-header-shell {
  width: min(80rem, calc(100vw - 2rem));
}

.site-header-bar {
  min-width: 0;
}

.site-brand {
  min-width: 0;
  flex: 1 1 auto;
}

.site-brand-copy {
  min-width: 0;
}

.site-brand-copy p:last-child {
  white-space: nowrap;
}

.site-brand-mark {
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0.3rem;
}

.site-nav {
  flex: 0 1 auto;
}

.site-header-actions {
  flex: 0 0 auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.16rem;
  padding: 0.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
}

.language-toggle-button {
  min-width: 2.55rem;
  height: 2.2rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.language-toggle-button.is-active {
  background: var(--chip-bg);
  color: var(--text-main);
}

.language-toggle-button:hover {
  color: var(--text-main);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--text-main);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 0.95rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.39rem) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.39rem) rotate(-45deg);
}

.nav-link,
.footer-link {
  color: inherit;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after,
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.footer-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.theme-toggle {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 0.24rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.theme-toggle:hover,
.button-primary:hover,
.button-secondary:hover,
.project-card:hover,
.portfolio-entry:hover {
  transform: translateY(-1px);
}

.service-card,
.project-card,
.portfolio-entry,
.feature-card,
.about-pillar,
.contact-details-panel,
.contact-form-panel,
.proof-item,
.portfolio-cta,
.project-about {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.service-card:hover,
.feature-card:hover,
.about-pillar:hover,
.proof-item:hover,
.contact-details-panel:hover,
.contact-form-panel:hover,
.portfolio-cta:hover,
.project-about:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 48px rgba(27, 23, 23, 0.1);
}

.nav-link:focus-visible,
.footer-link:focus-visible,
.language-toggle-button:focus-visible,
.theme-toggle:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.project-card:focus-visible,
.portfolio-entry:focus-visible,
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid rgba(129, 1, 0, 0.85);
  outline-offset: 3px;
}

.theme-toggle-track {
  position: relative;
  width: 4.45rem;
  height: 2.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  border-radius: 999px;
  background: var(--chip-bg);
  overflow: hidden;
}

.theme-toggle-thumb {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #edebdd, #ffffff);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, background 0.3s ease;
}

html.light .theme-toggle-thumb {
  transform: translateX(1.9rem);
  background: linear-gradient(145deg, #630000, #810100);
}

.theme-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.theme-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.button-primary {
  background: linear-gradient(135deg, #630000, #810100);
  color: #edebdd;
  box-shadow: 0 14px 30px rgba(99, 0, 0, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text-main);
}

.button-secondary:hover {
  background: var(--chip-bg);
}

.stat-label,
.card-kicker,
.section-eyebrow,
.project-meta,
.service-number,
.about-pillar-title,
.portfolio-entry-meta {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.portfolio-page-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.portfolio-page-subtitle,
.contact-body-copy,
.services-feature-band p:last-child,
.pricing-note p:last-child,
.faq-item p,
.portfolio-entry-copy p:last-child,
.project-copy p,
.about-pillar p,
.service-card p,
.feature-copy,
.stat-copy {
  color: var(--text-soft);
  line-height: 1.8;
}

.portfolio-page-subtitle {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 0.98rem;
}

.hero-stage,
.services-core-card,
.services-feature-band,
.pricing-note,
.contact-details-panel,
.contact-form-panel,
.faq-panel,
.portfolio-entry,
.portfolio-cta,
.project-about,
.service-card,
.project-card {
  border: 1px solid var(--line-soft);
  background: var(--surface-card);
  box-shadow: var(--card-shadow);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: auto;
  border-radius: 2rem;
  background: var(--hero-panel);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto 4% -5% 4%;
  height: 14rem;
  background: radial-gradient(circle at center, rgba(129, 1, 0, 0.14), transparent 72%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 6% 16% auto 16%;
  height: 11rem;
  background: radial-gradient(circle at center, rgba(237, 235, 221, 0.12), transparent 72%);
  pointer-events: none;
}

html.light .hero-stage::before,
html.light .hero-stage::after {
  display: none;
}

html.dark .hero-stage::after {
  background: radial-gradient(circle at center, rgba(99, 0, 0, 0.14), transparent 74%);
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-stage-editorial {
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-copy-center {
  max-width: 42rem;
}

.hero-copy-editorial {
  position: relative;
  max-width: 58rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.55rem 0.9rem;
  color: var(--text-main);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pill-editorial {
  margin-bottom: 1.35rem;
}

.hero-pill-avatars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-pill-avatars span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brand-strong);
  opacity: 0.85;
}

.hero-kicker {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
  color: var(--text-main);
}

.hero-title-editorial {
  margin-top: 1rem;
  max-width: 50rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
}

.hero-title-line {
  display: block;
}

.hero-title-script {
  display: block;
  margin-top: 0.12rem;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--brand-strong);
}

.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.18em 0.09em;
  margin: 0 0.06em;
  border: 1px solid var(--line-strong);
  border-radius: 0.2em;
  box-shadow: inset 0 0 0 1px rgba(237, 235, 221, 0.03);
}

.hero-highlight-warm {
  background: linear-gradient(135deg, rgba(99, 0, 0, 0.24), rgba(129, 1, 0, 0.12));
}

.hero-highlight-cool {
  background: linear-gradient(135deg, rgba(129, 1, 0, 0.18), rgba(27, 23, 23, 0.04));
}

.hero-description {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.85;
}

.hero-description-editorial {
  max-width: 39rem;
  margin-top: 1.45rem;
}

.hero-actions-center {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

.hero-footnote {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.35rem;
  background: rgba(99, 0, 0, 0.92);
  color: #edebdd;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(99, 0, 0, 0.16);
}

.hero-tag::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1px;
  background: rgba(99, 0, 0, 0.55);
}

.hero-tag-left {
  top: 4rem;
  left: 0;
}

.hero-tag-left::after {
  right: -0.95rem;
  top: 50%;
}

.hero-tag-right {
  top: 4.6rem;
  right: 1.5rem;
  background: rgba(129, 1, 0, 0.92);
}

.hero-tag-right::after {
  left: -0.95rem;
  top: 50%;
}

.hero-tag-bottom {
  right: 6rem;
  bottom: 5.8rem;
  background: rgba(27, 23, 23, 0.9);
}

.hero-tag-bottom::after {
  left: 50%;
  bottom: -0.7rem;
  width: 1px;
  height: 0.8rem;
}

.hero-columns {
  display: none;
}

.hero-summary {
  display: grid;
  gap: 0.9rem;
}

.summary-card,
.compact-card {
  border: 1px solid var(--line-soft);
  border-radius: 1.45rem;
  background: var(--surface-card-strong);
}

.summary-card {
  padding: 1.1rem 1.15rem;
}

.summary-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
}

.summary-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.feature-card,
.about-pillar,
.case-feature {
  position: relative;
}

.feature-media,
.service-photo,
.about-photo,
.photo-panel,
.mini-photo,
.portfolio-entry-media,
.project-header-media,
.gallery-tile,
.case-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.feature-media::before,
.service-photo::before,
.about-photo::before,
.photo-panel::before,
.mini-photo::before,
.portfolio-entry-media::before,
.project-header-media::before,
.gallery-tile::before,
.case-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-media::after,
.service-photo::after,
.about-photo::after,
.photo-panel::after,
.mini-photo::after,
.portfolio-entry-media::after,
.project-header-media::after,
.gallery-tile::after,
.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 19, 0.04), rgba(15, 17, 19, 0.36));
}

.feature-media,
.service-photo {
  min-height: 8rem;
}

.service-photo-a::before {
  background-image:
    linear-gradient(180deg, rgba(27, 23, 23, 0.08), rgba(27, 23, 23, 0.5)),
    url("../assets/services-images/graphic-design.webp");
}

.service-photo-b::before {
  background-image:
    linear-gradient(180deg, rgba(27, 23, 23, 0.08), rgba(27, 23, 23, 0.5)),
    url("../assets/services-images/web-development.webp");
}

.service-photo-c::before {
  background-image:
    linear-gradient(180deg, rgba(27, 23, 23, 0.08), rgba(27, 23, 23, 0.5)),
    url("../assets/services-images/video-editing.webp");
}

.service-photo-d::before {
  background-image:
    linear-gradient(180deg, rgba(27, 23, 23, 0.08), rgba(27, 23, 23, 0.5)),
    url("../assets/services-images/social-media-marketing.webp");
}

.feature-media-one::before,
.portfolio-entry-media-a::before,
.project-header-media-a::before,
.case-image-a::before,
.case-image-d::before {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.12), rgba(19, 23, 26, 0.56)),
    url("../assets/selected-work-images/rentautokton.webp");
}

.feature-media-two::before,
.portfolio-entry-media-b::before,
.project-header-media-b::before,
.case-image-e::before,
.case-image-h::before {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.12), rgba(19, 23, 26, 0.56)),
    url("../assets/selected-work-images/rimastours.webp");
}

.feature-media-three::before,
.portfolio-entry-media-c::before,
.project-header-media-c::before,
.case-image-i::before,
.case-image-l::before {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.12), rgba(19, 23, 26, 0.56)),
    url("../assets/selected-work-images/domusdecor.webp");
}

.about-value-media-clarity::before {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.08), rgba(19, 23, 26, 0.42)),
    url("../assets/about-images/clarity.webp");
}

.about-value-media-restraint::before {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.08), rgba(19, 23, 26, 0.42)),
    url("../assets/about-images/restraint.webp");
}

.about-value-media-consistency::before {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.08), rgba(19, 23, 26, 0.42)),
    url("../assets/about-images/consistency.webp");
}

.case-image-b::before,
.case-image-f::before,
.case-image-j::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 24px, transparent 24px 48px),
    linear-gradient(145deg, rgba(99, 0, 0, 0.16), rgba(19, 23, 26, 0.76));
}

.case-image-c::before,
.case-image-g::before,
.case-image-k::before {
  background-image:
    radial-gradient(circle at 72% 28%, rgba(237, 235, 221, 0.24), transparent 18%),
    linear-gradient(145deg, rgba(237, 235, 221, 0.08), rgba(129, 1, 0, 0.18));
}

.feature-title {
  margin: 1rem 0 0.55rem;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-core-card,
.service-card {
  border-radius: 1.75rem;
  padding: 1.35rem;
}

.services-feature-band,
.pricing-note,
.contact-details-panel,
.contact-form-panel,
.faq-panel,
.portfolio-cta,
.project-about {
  border-radius: 1.8rem;
  padding: 1.75rem;
}

.project-about p,
.portfolio-cta p {
  color: var(--text-soft);
  line-height: 1.8;
}

.service-card h3,
.project-copy h3,
.faq-item h3 {
  margin: 0.7rem 0 0.75rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-number {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.about-pillar,
.faq-item,
.contact-info-item {
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

.footer-rich-grid {
  display: grid;
  gap: 2rem;
}

.footer-prompt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-list {
  display: grid;
  gap: 0.7rem;
  color: var(--text-soft);
}

.footer-note {
  color: var(--text-soft);
  line-height: 1.8;
}

.brand-signature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 120%, rgba(129, 1, 0, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(27, 23, 23, 0.02), rgba(27, 23, 23, 0.08));
  padding: 2rem 1.5rem 1.4rem;
  text-align: center;
}

.brand-signature::before {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.brand-signature-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-signature-title {
  margin: 0.45rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(3.4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--text-main);
}

.brand-signature-copy {
  margin: 0.9rem auto 0;
  max-width: 36rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.brand-ending {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  height: clamp(8rem, 18vw, 12.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.brand-ending-title {
  margin: 0 auto;
  display: block;
  width: max-content;
  font-family: "Syne", sans-serif;
  font-size: clamp(13rem, 33vw, 28rem);
  line-height: 0.72;
  letter-spacing: -0.1em;
  color: var(--text-main);
  opacity: 0.16;
  text-wrap: nowrap;
  text-transform: lowercase;
  transform: translateY(22%);
  transform-origin: center center;
  pointer-events: none;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-icon {
  display: none;
}

.about-pillar-title {
  margin-bottom: 0.55rem;
}

.contact-layout,
.faq-panel,
.project-header,
.portfolio-cta,
.project-about {
  display: grid;
  gap: 1.7rem;
}

.proof-strip {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.proof-item {
  border: 1px solid var(--line-soft);
  border-radius: 1.35rem;
  background: var(--surface-card);
  padding: 1rem 1.05rem;
  box-shadow: var(--card-shadow);
}

.proof-label,
.contact-assurance-title {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-value {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.proof-copy,
.contact-assurance p,
.contact-form-note {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-info-list,
.faq-list,
.hero-service-list,
.detail-list {
  display: grid;
  gap: 0.9rem;
}

.contact-info-item span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-main);
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0 0.25rem;
}

.contact-assurance {
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

.contact-form-panel {
  display: grid;
  gap: 1.05rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-main);
  padding: 0.95rem 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
}

.form-status[data-state="idle"] {
  color: var(--text-muted);
}

.form-status[data-state="submitting"] {
  color: var(--text-soft);
}

.form-status[data-state="success"] {
  color: var(--text-main);
}

.form-status[data-state="error"] {
  color: #d28484;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cta-detail-list,
.project-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-detail-list {
  margin-top: 1.25rem;
}

.cta-detail-list span,
.project-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-entry {
  display: grid;
  gap: 1.25rem;
  border-radius: 1.8rem;
  padding: 1rem;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.portfolio-entry:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(27, 23, 23, 0.08);
}

.portfolio-entry-media,
.project-header-media,
.gallery-tile,
.case-image,
.project-visual {
  min-height: 15rem;
}

.portfolio-entry-copy {
  padding: 0.25rem 0.2rem 0.35rem;
}

.portfolio-entry-copy h2 {
  margin-top: 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.gallery-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(10rem, 14rem));
}

.gallery-tile-a {
  grid-row: span 2;
}

.gallery-tile-a::before {
  background-image:
    linear-gradient(145deg, rgba(237, 235, 221, 0.08), rgba(129, 1, 0, 0.18)),
    linear-gradient(180deg, rgba(19, 23, 26, 0.14), rgba(19, 23, 26, 0.74));
}

.gallery-tile-b::before {
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 46px, transparent 46px 48px),
    linear-gradient(145deg, rgba(99, 0, 0, 0.16), rgba(19, 23, 26, 0.72));
}

.gallery-tile-c::before {
  background-image:
    radial-gradient(circle at 72% 26%, rgba(237, 235, 221, 0.24), transparent 18%),
    linear-gradient(145deg, rgba(237, 235, 221, 0.08), rgba(129, 1, 0, 0.16));
}

.gallery-tile-d::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 24px, transparent 24px 48px),
    linear-gradient(180deg, rgba(19, 23, 26, 0.18), rgba(19, 23, 26, 0.76));
}

.gallery-tile-e::before {
  background-image:
    radial-gradient(circle at 28% 26%, rgba(237, 235, 221, 0.24), transparent 18%),
    linear-gradient(145deg, rgba(129, 1, 0, 0.2), rgba(19, 23, 26, 0.78));
}

.project-card {
  display: block;
  overflow: hidden;
  border-radius: 1.8rem;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.project-copy {
  display: grid;
  gap: 0.85rem;
}

.project-card-large .project-visual {
  min-height: 18rem;
}

.project-visual {
  position: relative;
  overflow: hidden;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.project-visual-a {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.12), rgba(19, 23, 26, 0.52)),
    url("../assets/selected-work-images/rentautokton.webp");
  background-size: cover;
  background-position: center;
}

.project-visual-a::before {
  display: none;
}

.project-visual-a::after {
  display: none;
}

.project-card:hover .project-visual::before,
.portfolio-entry:hover .portfolio-entry-media::before,
.service-card:hover .service-photo::before,
.feature-card:hover .feature-media::before {
  transform: scale(1.025);
}

.project-visual-b {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.12), rgba(19, 23, 26, 0.52)),
    url("../assets/selected-work-images/rimastours.webp");
  background-size: cover;
  background-position: center;
}

.project-visual-b::before {
  display: none;
}

.project-visual-c {
  background-image:
    linear-gradient(180deg, rgba(19, 23, 26, 0.12), rgba(19, 23, 26, 0.52)),
    url("../assets/selected-work-images/domusdecor.webp");
  background-size: cover;
  background-position: center;
}

.project-visual-c::before {
  display: none;
}

.project-visual-d {
  background:
    linear-gradient(145deg, rgba(237, 235, 221, 0.1), rgba(129, 1, 0, 0.16)),
    radial-gradient(circle at 62% 35%, rgba(237, 235, 221, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(19, 23, 26, 0.18), rgba(19, 23, 26, 0.74));
}

.project-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(237, 235, 221, 0.16);
  background: rgba(15, 17, 19, 0.42);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #edebdd;
}

html.light .project-label {
  background: rgba(237, 235, 221, 0.24);
  color: #1b1717;
}

html.light .brand-signature {
  background:
    radial-gradient(circle at 50% 120%, rgba(129, 1, 0, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
}

html.light .hero-stage,
html.light .services-core-card,
html.light .services-feature-band,
html.light .pricing-note,
html.light .contact-details-panel,
html.light .contact-form-panel,
html.light .faq-panel,
html.light .portfolio-entry,
html.light .portfolio-cta,
html.light .project-about,
html.light .service-card,
html.light .project-card {
  background: transparent;
  box-shadow: none;
}

html.light .summary-card,
html.light .compact-card {
  background: rgba(237, 235, 221, 0.08);
  box-shadow: none;
}

html.light .form-field input,
html.light .form-field textarea {
  background: rgba(237, 235, 221, 0.14);
}

html.light .form-field input:focus,
html.light .form-field textarea:focus {
  background: rgba(237, 235, 221, 0.2);
}

html.light .feature-media,
html.light .service-photo,
html.light .about-photo,
html.light .photo-panel,
html.light .mini-photo,
html.light .portfolio-entry-media,
html.light .project-header-media,
html.light .gallery-tile,
html.light .case-image {
  background-color: rgba(237, 235, 221, 0.04);
}

.project-copy {
  padding: 1.25rem;
}

.about-photo-stack,
.hero-photo-grid,
.about-photo-row {
  display: grid;
  gap: 0.85rem;
}

.about-photo,
.photo-panel,
.mini-photo {
  min-height: 10rem;
}

.about-photo-main {
  min-height: 13rem;
}

.about-photo-main::before {
  background-image:
    linear-gradient(145deg, rgba(237, 235, 221, 0.14), rgba(99, 0, 0, 0.14)),
    radial-gradient(circle at 20% 35%, rgba(237, 235, 221, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(19, 23, 26, 0.18), rgba(19, 23, 26, 0.72));
}

.about-photo-side::before {
  background-image:
    linear-gradient(145deg, rgba(99, 0, 0, 0.18), rgba(19, 23, 26, 0.72)),
    repeating-linear-gradient(90deg, rgba(237, 235, 221, 0.03) 0 30px, transparent 30px 32px);
}

.about-photo-side-alt::before {
  background-image:
    radial-gradient(circle at 68% 28%, rgba(237, 235, 221, 0.24), transparent 16%),
    linear-gradient(145deg, rgba(19, 23, 26, 0.18), rgba(129, 1, 0, 0.2));
}

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

.photo-panel-tall {
  min-height: 18rem;
}

.photo-panel-tall::before {
  background-image:
    linear-gradient(160deg, rgba(19, 23, 26, 0.1), rgba(129, 1, 0, 0.18)),
    radial-gradient(circle at 40% 25%, rgba(237, 235, 221, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(99, 0, 0, 0.16), rgba(19, 23, 26, 0.75));
}

.photo-panel-top::before {
  background-image:
    linear-gradient(145deg, rgba(237, 235, 221, 0.14), rgba(99, 0, 0, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 40px, rgba(19, 23, 26, 0.06) 40px 41px),
    linear-gradient(180deg, rgba(19, 23, 26, 0.24), rgba(19, 23, 26, 0.72));
}

.photo-panel-bottom::before {
  background-image:
    radial-gradient(circle at 65% 30%, rgba(237, 235, 221, 0.24), transparent 24%),
    linear-gradient(145deg, rgba(129, 1, 0, 0.18), rgba(19, 23, 26, 0.78));
}

.photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  border: 1px solid rgba(237, 235, 221, 0.18);
  border-radius: 999px;
  background: rgba(15, 17, 19, 0.35);
  padding: 0.55rem 0.85rem;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #edebdd;
}

.mini-photo-a::before {
  background-image:
    linear-gradient(150deg, rgba(237, 235, 221, 0.14), rgba(99, 0, 0, 0.14)),
    radial-gradient(circle at 28% 30%, rgba(237, 235, 221, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(19, 23, 26, 0.2), rgba(19, 23, 26, 0.68));
}

.mini-photo-b::before {
  background-image:
    linear-gradient(145deg, rgba(99, 0, 0, 0.16), rgba(19, 23, 26, 0.68)),
    repeating-linear-gradient(0deg, rgba(237, 235, 221, 0.02) 0 22px, transparent 22px 44px);
}

.project-header-media {
  min-height: 18rem;
}

.case-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-image {
  min-height: 14rem;
}

.case-image-wide {
  grid-column: span 2;
  min-height: 20rem;
}

.case-feature {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (min-width: 768px) {
  .portfolio-entry {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .contact-layout,
  .project-header,
  .portfolio-cta,
  .project-about,
  .faq-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .footer-rich-grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.75fr));
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .hero-copy-center {
    max-width: 45rem;
  }

  .service-card,
  .services-core-card {
    padding: 1.35rem;
  }

  .portfolio-entry {
    padding: 1.15rem;
  }

  .project-header-media {
    min-height: 21rem;
  }

  .case-image {
    min-height: 16rem;
  }

  .case-image-wide {
    min-height: 22rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: clamp(3.1rem, 5.2vw, 5.5rem);
  }

  .section-title {
    font-size: clamp(2rem, 3vw, 3.45rem);
  }

  .portfolio-page-title {
    font-size: clamp(3rem, 5vw, 5rem);
  }

  .service-card,
  .services-core-card {
    padding: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button-primary,
  .button-secondary,
  .theme-toggle,
  .theme-toggle-thumb,
  .project-card,
  .portfolio-entry {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 9.75rem;
  }

  .site-header-shell {
    width: calc(100vw - 2rem);
    padding-bottom: 0.9rem;
  }

  .site-header-bar {
    align-items: center;
  }

  .site-brand {
    gap: 0.8rem;
  }

  .site-brand-mark {
    width: 2.85rem;
    height: 2.85rem;
    padding: 0.28rem;
  }

  .site-brand-copy p:first-child {
    font-size: 0.54rem;
    letter-spacing: 0.32em;
  }

  .site-brand-copy p:last-child {
    font-size: 1.12rem;
    letter-spacing: 0.03em;
  }

  .site-header-actions {
    gap: 0.6rem;
  }

  .language-toggle-button {
    min-width: 2.25rem;
    height: 2.05rem;
    font-size: 0.68rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-nav-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    overflow: visible;
    white-space: normal;
  }

  .site-nav-mobile[hidden] {
    display: none;
  }

  .site-nav-mobile .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 2.4rem;
    border-bottom: 1px solid var(--line-soft);
    padding: 0.2rem 0;
    background: transparent;
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .site-nav-mobile .nav-link:last-child {
    border-bottom: none;
  }

  .site-nav-mobile .nav-link::after {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .hero-title-editorial {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-pill-editorial {
    width: auto;
    max-width: min(100%, 26rem);
    justify-content: center;
    padding: 0.65rem 1rem;
    gap: 0.6rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pill-editorial span:last-child {
    text-align: center;
    line-height: 1.45;
    letter-spacing: 0.12em;
  }

  .portfolio-page-title {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-description,
  .portfolio-page-subtitle {
    font-size: 0.94rem;
  }

  .hero-tag {
    display: inline-flex;
    min-height: 1.7rem;
    padding: 0 0.48rem;
    font-size: 0.5rem;
    letter-spacing: 0.09em;
  }

  .hero-tag::after {
    display: block;
  }

  .hero-tag-left {
    top: 4.8rem;
    left: 8%;
  }

  .hero-tag-right {
    top: 5.15rem;
    right: 8%;
  }

  .hero-tag-bottom {
    right: 14%;
    bottom: 5.95rem;
  }

  .services-feature-band,
  .pricing-note,
  .contact-details-panel,
  .contact-form-panel,
  .faq-panel,
  .portfolio-cta,
  .project-about,
  .hero-stage {
    border-radius: 1.5rem;
  }

  .theme-toggle-track {
    width: 4.1rem;
    height: 2.2rem;
  }

  .theme-toggle-thumb {
    width: 1.8rem;
    height: 1.8rem;
  }

  html.light .theme-toggle-thumb {
    transform: translateX(1.75rem);
  }

  .gallery-mosaic,
  .case-gallery,
  .hero-photo-grid,
  .about-photo-row {
    grid-template-columns: 1fr;
  }

  .gallery-tile-a,
  .case-image-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 14rem;
  }

  .project-card-large .project-visual,
  .project-header-media,
  .portfolio-entry-media,
  .case-image {
    min-height: 13rem;
  }
}

@media (max-width: 575px) {
  .sticky.top-0 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .site-header-shell {
    width: 100%;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-bottom: 0.8rem;
    border-radius: 1.35rem;
  }

  .site-header-bar {
    gap: 0.75rem;
  }

  .site-brand {
    gap: 0.65rem;
    max-width: calc(100% - 4.5rem);
  }

  .site-brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.24rem;
  }

  .site-brand-copy p:first-child {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
  }

  .site-brand-copy p:last-child {
    font-size: 1rem;
  }

  .site-nav-mobile {
    gap: 0.5rem;
  }

  .site-nav-mobile .nav-link {
    min-height: 2.1rem;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .hero-copy-editorial {
    gap: 0;
  }

  .hero-tag {
    min-height: 1.52rem;
    padding: 0 0.4rem;
    font-size: 0.44rem;
    letter-spacing: 0.08em;
  }

  .hero-tag-left {
    top: 4.5rem;
    left: 5%;
  }

  .hero-tag-right {
    top: 4.9rem;
    right: 4%;
  }

  .hero-tag-bottom {
    right: 8%;
    bottom: 5.55rem;
  }

  .theme-toggle-track {
    width: 3.9rem;
    height: 2.05rem;
  }

  .theme-toggle-thumb {
    width: 1.68rem;
    height: 1.68rem;
  }

  html.light .theme-toggle-thumb {
    transform: translateX(1.65rem);
  }

  .hero-stage {
    padding: 1.2rem !important;
  }

  .hero-title {
    font-size: clamp(2.15rem, 12vw, 3.05rem);
  }

  .hero-title-editorial {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .hero-pill-editorial {
    width: fit-content;
    max-width: min(100%, 100%);
    justify-content: center;
    padding: 0.7rem 0.9rem;
    gap: 0.7rem;
    border-radius: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pill-avatars {
    flex: 0 0 auto;
  }

  .hero-pill-editorial span:last-child {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .brand-signature {
    border-radius: 1.5rem;
    padding: 1.6rem 1rem 1.15rem;
  }

  .brand-signature-title {
    font-size: clamp(2.8rem, 18vw, 4.8rem);
  }

  .brand-signature-copy {
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .brand-ending {
    width: 100%;
    height: clamp(5rem, 26vw, 7.2rem);
    padding: 0;
  }

  .brand-ending-title {
    font-size: clamp(7.5rem, 42vw, 13rem);
    line-height: 0.72;
    letter-spacing: -0.09em;
    transform: translateY(24%);
  }

  .section-title {
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
  }

  .portfolio-page-title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero-description,
  .portfolio-page-subtitle,
  .contact-body-copy,
  .project-about p,
  .portfolio-cta p,
  .faq-item p,
  .service-card p,
  .feature-copy {
    font-size: 0.93rem;
    line-height: 1.72;
  }


  .hero-kicker {
    letter-spacing: 0.28em;
  }

  .hero-highlight {
    padding-left: 0.14em;
    padding-right: 0.14em;
  }

  .hero-socials {
    gap: 0.55rem;
  }

  .hero-social {
    min-height: 2.3rem;
    padding: 0 0.78rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .summary-card,
  .service-card,
  .services-core-card,
  .services-feature-band,
  .pricing-note,
  .contact-details-panel,
  .contact-form-panel,
  .faq-panel,
  .portfolio-cta,
  .project-about {
    padding: 1rem;
  }

  .project-copy {
    padding: 1rem;
  }

  .portfolio-entry {
    padding: 0.9rem;
  }

  .portfolio-entry-copy h2,
  .feature-title,
  .service-card h3,
  .project-copy h3,
  .faq-item h3 {
    font-size: 1.28rem;
  }

  .project-header-media,
  .portfolio-entry-media,
  .project-visual,
  .case-image,
  .gallery-tile {
    min-height: 12rem;
  }

  .case-image-wide {
    min-height: 14rem;
  }
}
