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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Inter Fallback", system-ui, -apple-system, Segoe UI,
    Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

.card-img picture,
.gallery-item picture,
.gallery-grid>picture,
.post-img picture,
.split-media picture,
.svc-card .media picture,
.showcase-item picture,
.carousel-slide picture,
.hero-media picture,
.area-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}

.card-img img,
.gallery-item img,
.gallery-grid>picture img,
.post-img img,
.split-media img,
.split-media video,
.svc-card .media img,
.svc-card .media video,
.showcase-item img,
.carousel-slide img,
.hero-media img,
.hero-media video,
.area-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--brand);
  color: #fff;
}

:root {
  --brand: #e73d28;
  --brand-2: #c4321f;
  --brand-3: #ff6b4a;
  --brand-50: rgba(231, 61, 40, 0.08);
  --brand-100: rgba(231, 61, 40, 0.16);
  --ink: #f5efe3;
  --ink-2: #c8bba8;
  --ink-3: #9a8c7c;
  --ink-4: #5c4f44;
  --line: #3d2e22;
  --line-2: #4a3a2c;
  --bg: #1a1410;
  --bg-2: #241a12;
  --bg-3: #2d2018;
  --warm: #0f0907;
  --warm-2: #1a0f08;
  --gold: #c4914d;
  --card: #241a12;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.18), 0 2px 4px rgba(0, 0, 0, 0.18);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 12px 28px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.35), 0 32px 80px rgba(0, 0, 0, 0.45);
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --max: 1240px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.9vw, 3.1rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}

em {
  font-style: normal;
  color: var(--brand);
  font-weight: inherit;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-2);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.5;
  color: var(--ink-2);
}

.muted {
  color: var(--ink-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

.eyebrow.no-bar {
  padding-left: 0;
}

.eyebrow.no-bar::before {
  display: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: var(--section) 0;
  position: relative;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-2);
}

.section-cream {
  background: var(--bg);
}

.section-dark {
  background: var(--warm);
  color: #f3ebda;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #faf3e2;
}

.section-dark p {
  color: #c8bba8;
}

.section-dark .eyebrow {
  color: var(--brand-3);
}

.section-dark .eyebrow::before {
  background: var(--brand-3);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.4rem, 4.5vw, 3.6rem);
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 18px rgba(231, 61, 40, 0.32);
}

.btn-primary:hover {
  background: var(--brand-2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 26px rgba(231, 61, 40, 0.42);
}

.btn-secondary {
  background: var(--bg-3);
  color: var(--ink);
  border-color: var(--line-2);
}

.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn-ghost:hover {
  background: var(--bg-3);
  color: var(--ink);
  border-color: var(--brand);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-lg {
  padding: 1.1rem 1.9rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
}

.btn-arrow {
  position: relative;
  padding-right: 2.6rem;
}

.btn-arrow::after {
  content: "→";
  position: absolute;
  right: 1.3rem;
  transition: transform 0.3s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(26, 20, 16, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: var(--bg);
}

@supports (backdrop-filter: blur(1px)) {
  @media (min-width: 1025px) {
    .site-header {
      background: rgba(26, 20, 16, 0.78);
      backdrop-filter: saturate(1.4) blur(14px);
      -webkit-backdrop-filter: saturate(1.4) blur(14px);
    }

    .site-header.is-scrolled {
      background: rgba(26, 20, 16, 0.94);
    }
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.85rem var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
}

.brand-l1 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand-l2 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

@media (min-width: 1025px) {
  .brand-name {
    flex-direction: row;
    gap: 0.4rem;
    align-items: baseline;
  }

  .brand-l2 {
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    text-transform: none;
    color: var(--ink-3);
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .brand-l1 {
    font-size: 1rem;
  }

  .brand-l2 {
    font-size: 0.7rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }
}

.btn-cta-header {
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 18px rgba(231, 61, 40, 0.32);
}

.btn-cta-header:hover {
  background: var(--brand-2);
}

@media (max-width: 720px) {
  .btn-cta-header {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0 auto 0 1.2rem;
  padding: 0;
  flex: 1;
}

.nav-links a {
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(26, 20, 16, 0.04);
}

.nav-links .has-sub {
  position: relative;
}

.nav-links .has-sub>a::after {
  content: "›";
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink-3);
  transition: transform 0.25s var(--ease);
}

.nav-links .has-sub:hover>a::after {
  transform: rotate(90deg) translateX(2px);
}

.sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--bg-2);
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s var(--ease);
  z-index: 5;
}

.has-sub:hover>.sub,
.has-sub:focus-within>.sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub li {
  display: block;
}

.sub a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.sub a:hover {
  background: var(--bg-2);
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease);
}

.nav-phone:hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1.2rem;
  background: var(--card);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}

.nav-toggle:hover {
  background: var(--bg-2);
}

.nav-toggle .bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-toggle .bars span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

body.nav-open .nav-toggle .bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle .bars span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle .bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-close {
  display: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.6);
  z-index: 85;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.nav-open .nav-backdrop {
  display: block;
  opacity: 1;
}

.nav-drawer-head {
  display: none;
}

.nav-drawer-foot {
  display: none;
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    height: 100vh;
    width: min(92vw, 400px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    padding: 0;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: -24px 0 60px rgba(26, 20, 16, 0.18);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    z-index: 90;
    visibility: hidden;
    pointer-events: none;
    border-radius: 24px 0 0 24px;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    margin-top: 70px;
  }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: saturate(1.4);
  }

  .nav-drawer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 540;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  .nav-drawer-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .nav-close {
    display: inline-flex;
    position: static;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-3);
    color: var(--ink);
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
    font-family: "Inter", sans-serif;
    font-weight: 300;
  }

  .nav-close:hover {
    background: var(--brand);
    color: #fff;
    transform: rotate(90deg);
  }

  .nav-links>li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(232, 224, 211, 0.6);
  }

  .nav-links>li>a,
  .nav-links>li.has-sub>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.6rem;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    line-height: 1.2;
  }

  .nav-links>li>a:hover,
  .nav-links>li.has-sub>a:hover {
    background: var(--bg-2);
    color: var(--brand);
  }

  .nav-links>li>a:active {
    background: var(--brand-100);
  }

  .nav-links .has-sub>a::after {
    content: "" !important;
    display: block;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    margin-left: 1rem;
    margin-right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='%23847468' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 7l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(0deg) !important;
    transition: transform 0.3s var(--ease) !important;
    color: transparent !important;
    font-size: 0 !important;
  }

  .nav-links .has-sub.is-open>a::after {
    transform: rotate(180deg) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='%23E15A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 7l5 5 5-5'/%3E%3C/svg%3E") !important;
  }

  .nav-links .has-sub.is-open>a {
    color: var(--brand);
    background: var(--bg-2);
  }

  .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--bg-3);
    margin: 0;
    padding: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    list-style: none;
  }

  .has-sub.is-open>.sub {
    max-height: 600px;
  }

  .sub li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sub a {
    display: block;
    padding: 0.9rem 1.6rem 0.9rem 2.6rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink-2);
    border-bottom: 1px solid rgba(216, 204, 185, 0.4);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
  }

  .sub a:hover {
    color: var(--brand);
    background: rgba(231, 61, 40, 0.04);
  }

  .sub li:last-child a {
    border-bottom: 0;
  }

  .nav-drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.5rem 1.5rem 2.2rem;
    background: linear-gradient(180deg, transparent, var(--bg-2));
    margin-top: auto;
    border-top: 1px solid var(--line);
  }

  .nav-drawer-foot .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }

  .nav-drawer-foot .nav-foot-trust {
    text-align: center;
    font-size: 0.78rem;
    color: var(--ink-3);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta {
    order: 2;
    margin-left: auto;
  }

  .nav-cta .btn {
    padding: 0.55rem 1rem;
    font-size: 0.86rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  background: var(--bg);
}

.hero-video {
  color: #fff;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
}

.hero-video .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video .hero-media video,
.hero-video .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 12, 6, 0.55) 0%,
      rgba(20, 12, 6, 0.25) 30%,
      rgba(20, 12, 6, 0.35) 60%,
      rgba(20, 12, 6, 0.75) 100%);
}

.hero-video .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-video h1,
.hero-video p,
.hero-video .eyebrow {
  color: #fff;
}

.hero-video .eyebrow {
  color: #ffd9b8;
}

.hero-video .eyebrow::before {
  background: #ffb07a;
}

.hero-video em {
  color: #ffb07a;
  font-style: italic;
}

.hero-video .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
}

.hero-copy {
  max-width: 780px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 760px;
}

.hero-trust span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.hero-trust strong {
  color: #fff;
  font-weight: 600;
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.18);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  pointer-events: none;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-page {
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 0%,
      var(--brand-50),
      transparent 70%);
  pointer-events: none;
}

.hero-page .container {
  position: relative;
}

.hero-page h1 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
}

.hero-page .lead {
  max-width: 62ch;
}

.hero-page .hero-cta {
  margin-top: 2.2rem;
}

.crumbs {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-bottom: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.crumbs a {
  color: var(--ink-3);
  transition: color 0.2s;
}

.crumbs a:hover {
  color: var(--brand);
}

.crumbs>*:not(:last-child)::after {
  content: "›";
  margin-left: 0.45rem;
  color: var(--ink-4);
}

.trust-bar {
  background: var(--warm);
  color: var(--ink);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.4rem;
  font-size: 0.88rem;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-2);
}

.trust-item strong {
  color: #fff;
  font-weight: 600;
}

.trust-item .ico {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-wrap {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  white-space: nowrap;
}

.marquee span .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.owners-grid h2 {
  margin-bottom: 1.2rem;
}

.owners-sig {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: var(--brand);
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

@media (max-width: 840px) {
  .owners-grid {
    grid-template-columns: 1fr;
  }
}

.carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  will-change: opacity;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.carousel-slide.active img {
  transform: scale(1.08);
}

.carousel-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 0.92rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  padding: 5rem 1.4rem 3rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  z-index: 2;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transition: all 0.25s var(--ease);
  border: 0;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 8px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(36, 26, 18, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 3;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow);
  opacity: 0;
}

.carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow.prev {
  left: 1rem;
}

.carousel-arrow.next {
  right: 1rem;
}

.carousel-arrow:hover {
  background: var(--bg-2);
  transform: translateY(-50%) scale(1.06);
}

.showcase {
  position: relative;
}

.showcase-track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0.4rem 0 2rem;
  scrollbar-width: none;
  mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask: linear-gradient(90deg,
      transparent,
      #000 4%,
      #000 96%,
      transparent);
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-track::after {
  content: "";
  flex: 0 0 0.5rem;
}

.showcase-item {
  flex: 0 0 min(78vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.showcase-item:hover img {
  transform: scale(1.04);
}

.showcase-item .label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  background: rgba(26, 20, 16, 0.7);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4/5;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  color: #fff;
  isolation: isolate;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.svc-card .media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-card .media img,
.svc-card .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.svc-card:hover .media img,
.svc-card:hover .media video {
  transform: scale(1.05);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(20, 12, 6, 0.05) 0%,
      rgba(20, 12, 6, 0.2) 40%,
      rgba(20, 12, 6, 0.85) 100%);
}

.svc-card .body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2rem 1.7rem;
}

.svc-card .number {
  position: absolute;
  top: 1.4rem;
  left: 1.7rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-4);
  z-index: 2;
  letter-spacing: 0.08em;
}

.svc-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
  line-height: 1.05;
}

.svc-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  max-width: 32ch;
}

.svc-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.25s var(--ease);
}

.svc-card:hover .arrow {
  gap: 0.85rem;
}

.svc-card .arrow::after {
  content: "→";
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}

.card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

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

.card-body {
  padding: 1.5rem 1.5rem 1.7rem;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.card:hover .card-link::after {
  transform: translateX(3px);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}

@media (max-width: 980px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .process {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: 2rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.process-step:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}

.process-step .num {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.process-step h4 {
  margin-bottom: 0.45rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--ink-3);
  margin: 0;
}

.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
  transition: padding 0.25s var(--ease);
}

.faq details[open] {
  padding-bottom: 1.6rem;
}

.faq summary {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  line-height: 1.3;
}

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

.faq summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  font-family: "Inter", sans-serif;
}

.faq details[open] summary::after {
  content: "−";
  background: var(--brand);
  color: #fff;
  transform: rotate(180deg);
}

.faq summary:hover::after {
  background: var(--brand);
  color: #fff;
}

.faq details p {
  margin-top: 1rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 65ch;
}

.faq details p:last-child {
  margin-bottom: 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.area-tile {
  display: block;
  padding: 1.3rem 1.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.area-tile:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--bg-3);
}

.area-tile .name {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
  display: block;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.area-tile .post {
  font-size: 0.82rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.areas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.areas li {
  padding: 0.4rem 0;
}

.areas a {
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.2s;
}

.areas a:hover {
  color: var(--brand);
}

.areas .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 0.55rem;
}

.cta-strip {
  background: var(--warm);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-strip .container {
  position: relative;
}

.cta-strip h2 {
  color: #fff;
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-strip .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-strip .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (max-width: 760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  padding: 2rem 1.5rem;
  background: var(--card);
  text-align: center;
}

.stat .v {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat .l {
  font-size: 0.85rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.quote-block {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 1.4rem 0;
}

.quote-block .mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--brand);
  display: block;
  margin-bottom: 1rem;
  font-style: normal;
}

.quote-block p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  color: var(--ink);
  font-style: normal;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.quote-block .who {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

@media (max-width: 840px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }
}

.split-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--bg-2);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 60%,
      rgba(20, 12, 6, 0.18) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media .tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-4);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.split-body h2 {
  margin-bottom: 1.2rem;
}

.split-body ul.checks {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.split-body ul.checks li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  color: var(--ink-2);
  font-size: 0.99rem;
}

.split-body ul.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.78rem;
}

.site-footer {
  background: var(--warm);
  color: #c8bba8;
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  color: #faf3e2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand span {
  color: rgba(250, 243, 226, 0.55);
  font-weight: 400;
}

.site-footer h4 {
  color: #faf3e2;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-family: "Inter", sans-serif;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.6rem;
}

.site-footer ul a {
  color: rgba(200, 187, 168, 0.85);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.site-footer ul a:hover {
  color: #faf3e2;
}

.site-footer p {
  color: rgba(200, 187, 168, 0.85);
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer p strong {
  color: #faf3e2;
}

.site-footer a {
  color: inherit;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.83rem;
  color: rgba(200, 187, 168, 0.6);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 0.5rem;
  padding: 0.7rem;
  background: rgba(26, 20, 16, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 60;
  box-shadow: 0 -8px 24px rgba(26, 20, 16, 0.08);
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .carousel-slide.active img {
    transform: none;
  }

  .marquee {
    animation: none;
  }
}

.form {
  display: grid;
  gap: 1.1rem;
  max-width: 580px;
}

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

@media (max-width: 560px) {
  .form .row {
    grid-template-columns: 1fr;
  }
}

.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.95rem 1.05rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-3);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(231, 61, 40, 0.12);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.form .help {
  font-size: 0.83rem;
  color: var(--ink-3);
  margin-top: 0.3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: grid;
  gap: 1.3rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-row .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-row strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-row a,
.contact-row p {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item,
.gallery-grid>picture {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  display: block;
}

.gallery-item img,
.gallery-grid>picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery-item:hover img,
.gallery-grid>picture:hover img {
  transform: scale(1.05);
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .posts {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.post-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

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

.post-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  font-size: 0.78rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.post-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.post-card p {
  font-size: 0.93rem;
  color: var(--ink-3);
  margin-bottom: 1rem;
  flex: 1;
}

.post-card .card-link {
  margin-top: auto;
}

.center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

hr.rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 3rem 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #faf3e2;
}

.text-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.text-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.text-content ul {
  padding-left: 1.3rem;
}

.text-content ul li {
  margin-bottom: 0.5rem;
  color: var(--ink-2);
}

.text-content p {
  font-size: 1.02rem;
  line-height: 1.65;
}

.text-content a {
  color: var(--brand);
  font-weight: 500;
  border-bottom: 1px solid var(--brand-100);
  transition: border-color 0.2s;
}

.text-content a:hover {
  border-bottom-color: var(--brand);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.compact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 0;
}

.compact-stats .v {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  color: var(--brand);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.compact-stats .l {
  font-size: 0.85rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  font-weight: 600;
}

.section-warm {
  background: var(--bg-3);
}

.contact-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  overflow: visible;
}

.contact-headline {
  max-width: 760px;
  margin: 0 0 2.5rem;
}

.contact-headline h1 {
  margin-bottom: 1.2rem;
  max-width: 18ch;
}

.contact-headline .lead {
  max-width: 62ch;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-side {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  list-style: none;
  margin: 0;
}

.contact-side-title {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin: 0 0 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-2);
  line-height: 1;
}

.contact-side .contact-quick-row {
  background: #fff;
}

.contact-meta {
  list-style: none;
  padding: 1.1rem 0 0;
  margin: 0.2rem 0 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  gap: 0.95rem;
}

.contact-meta li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.9rem;
  align-items: start;
  font-size: 0.95rem;
  padding: 0;
  list-style: none;
}

.contact-meta li span {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  padding-top: 0.2rem;
}

.contact-meta li strong {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .contact-meta li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .contact-meta li span {
    padding-top: 0;
  }
}

.contact-quick {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.contact-quick-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  text-decoration: none;
}

.contact-quick-row:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-quick-row .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-quick-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.95rem;
}

.contact-quick-text strong {
  color: var(--ink-3);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-quick-text span {
  color: var(--ink-3);
  font-size: 0.85rem;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

.contact-meta li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.95rem;
}

.contact-meta li span {
  flex-shrink: 0;
  width: 7rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
}

.contact-meta li strong {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--brand-100), transparent 50%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

.contact-card-head {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.contact-card-head .pill {
  margin-bottom: 0.9rem;
}

.contact-card-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.contact-card-head .muted {
  font-size: 0.95rem;
  margin: 0;
  color: var(--ink-3);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: none;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
}

.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .contact-form .field-row {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-3);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-4);
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(231, 61, 40, 0.14);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C8BBA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  margin-top: 0.6rem;
  width: 100%;
  justify-content: center;
}

.form-foot {
  font-size: 0.92rem;
  color: var(--ink-2);
  margin: 0;
  text-align: left;
  line-height: 1.5;
  padding: 1rem 1.2rem;
  background: rgba(36, 167, 76, 0.12);
  border: 1px solid rgba(36, 167, 76, 0.3);
  border-radius: var(--r);
}

.form-foot.whatsapp-note strong {
  color: #5dd97e;
  font-weight: 700;
}

.form-foot a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand-100);
}

.form-consent {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin: 0.6rem 0 0;
  line-height: 1.55;
  text-align: left;
}

[hidden] {
  display: none !important;
}

.contact-success {
  text-align: center;
  padding: 1rem 0 0.5rem;
  animation: fadeUp 0.5s var(--ease);
}

.contact-success-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(36, 167, 76, 0.18);
  color: #5dd97e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.4rem;
  font-weight: 700;
  border: 2px solid rgba(93, 217, 126, 0.4);
}

.contact-success h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-success .lead {
  max-width: 38ch;
  margin: 0 auto 1.8rem;
  color: var(--ink-2);
}

.contact-success .lead strong {
  color: var(--ink);
  font-weight: 700;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.contact-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 840px) {
  .contact-promise {
    grid-template-columns: 1fr;
  }
}

.contact-promise-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  text-align: center;
}

.contact-promise-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.contact-promise-item p {
  font-size: 0.95rem;
  color: var(--ink-3);
  margin: 0;
}

.ico-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto;
}

.form .field {
  display: flex;
  flex-direction: column;
}

/* Top nav polish v86 */
@media (min-width: 1025px) {
  .nav {
    gap: 1.2rem;
    padding: 0.7rem var(--pad);
  }

  .nav-links {
    gap: 0.1rem;
    margin: 0 auto 0 0.8rem;
  }

  .nav-links a {
    padding: 0.55rem 0.75rem;
    font-size: 0.93rem;
    white-space: nowrap;
    letter-spacing: -0.005em;
  }

  .nav-links .has-sub>a::after {
    margin-left: 0.3rem;
    font-size: 0.85rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .brand-l1 {
    font-size: 1.05rem;
  }

  .brand-l2 {
    font-size: 1.05rem;
    color: var(--ink-3);
    font-weight: 400;
  }

  .nav-cta {
    gap: 0.5rem;
  }

  .nav-phone {
    padding: 0.5rem 0.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .btn-cta-header {
    padding: 0.62rem 1rem;
    font-size: 0.88rem;
    white-space: nowrap;
    letter-spacing: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .nav-links a {
    padding: 0.5rem 0.55rem;
    font-size: 0.88rem;
  }

  .nav-phone {
    display: none;
  }

  .btn-cta-header {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* Use the poster that is actually included in the package. */
.hero-video .hero-media { background: #1a1410 url("images/hero-poster.jpg") center center / cover no-repeat; }

/* Consolidated utility classes and site styles */

/* Helper class for noscript GTM iframes */
.gtm-noscript {
  display: none;
  visibility: hidden;
}

/* Button groups and layouts */
.btn-group {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-group-center {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-group-mt-16 {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* Spacing and margin utilities */
.mt-12 {
  margin-top: 1.2rem;
}

.mb-25 {
  margin-bottom: 2.5rem;
}

.mb-20-auto {
  margin: 0 auto 2rem;
}

.mb-8 {
  margin-bottom: 0.8rem;
}

/* Hero WhatsApp notice banner details */
.hero-whatsapp-notice {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: var(--ink-3);
}

.text-whatsapp-green {
  color: #1f8a3f;
}

/* Blog/Before-After styling */
.blog-meta-text {
  color: var(--ink-3);
  font-size: 0.86rem;
}

.blog-meta-date {
  color: var(--ink-3);
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
}

.blog-hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Footer layout custom adjustments */
.footer-contact-info {
  margin-top: 1.1rem;
}

.footer-hours-info {
  font-size: 0.84rem;
  margin-top: 1rem;
}

/* Hero background adjustments */
.hero-bg-dark {
  background: #1a1410;
}

/* Section styling for Error and Thank You pages */
.error-section {
  text-align: center;
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(231, 61, 40, 0.04) 0%, rgba(26, 20, 16, 0) 70%);
  position: relative;
  overflow: hidden;
}

.error-visual {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.error-svg {
  animation: floatSqueegee 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(231, 61, 40, 0.2));
}

@keyframes floatSqueegee {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  letter-spacing: -2px;
}

.error-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 900px;
  text-align: left;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  background: var(--bg-3);
  box-shadow: var(--shadow);
}

.service-card .card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.4;
}

.highlight-card {
  border-color: rgba(231, 61, 40, 0.35);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(231, 61, 40, 0.05) 100%);
}

.highlight-card:hover {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--bg-3) 0%, rgba(231, 61, 40, 0.09) 100%);
}

@media (max-width: 600px) {
  .error-services-grid {
    grid-template-columns: 1fr;
  }

  .error-code {
    font-size: 6rem;
  }
}

.thank-you-section {
  text-align: center;
  padding: 6rem 0;
}

/* Form validation styles */
.contact-form .field.has-error input,
.contact-form .field.has-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
  background: rgba(239, 68, 68, 0.02);
}

.contact-form .error-message {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ef4444;
  margin-top: 0.35rem;
  line-height: 1.3;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

/* ============================================================
   Myjemy Na Zewnątrz — Poland localisation layer, 2026-09
   ============================================================ */
:root {
  --brand: #ff741f;
  --brand-2: #d85a11;
  --brand-3: #ff9a5e;
  --brand-50: rgba(255, 116, 31, 0.08);
  --brand-100: rgba(255, 116, 31, 0.16);
}
.brand { gap: .7rem; }
.brand-dot {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, var(--brand-3), var(--brand));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 8px 22px rgba(0,0,0,.22);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; position: relative;
}
.brand-dot::before { content:""; width: 15px; height: 20px; border: 3px solid #fff; border-top: 0; border-radius: 3px 3px 9px 9px; transform: rotate(45deg); opacity:.96; }
.brand-name .brand-l1 { letter-spacing: -.025em; }
.brand-name .brand-l2 { color: var(--brand); letter-spacing: .08em; font-size: .64rem; text-transform: uppercase; }
.hero-kicker { display:flex; flex-wrap:wrap; gap:.55rem; margin-bottom:1rem; }
.hero-kicker .pill { border-color: rgba(255,255,255,.16); }
.hero-trust span { white-space: normal; }
.pro-audience { display:flex; gap:.55rem; flex-wrap:wrap; margin:1.1rem 0 0; }
.pro-audience span { border:1px solid var(--line-2); background:rgba(255,255,255,.025); color:var(--ink-2); padding:.48rem .72rem; border-radius:999px; font-size:.9rem; }
.service-focus-note { margin-top:1.5rem; padding:1rem 1.1rem; border:1px solid var(--line-2); border-left:3px solid var(--brand); border-radius:var(--r); background:rgba(255,255,255,.02); color:var(--ink-2); }
.b2b-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1rem; margin-top:2rem; }
.b2b-card { padding:1.3rem; border:1px solid var(--line-2); border-radius:var(--r); background:var(--card); }
.b2b-card .num { color:var(--brand); font-weight:800; font-size:.82rem; letter-spacing:.08em; }
.b2b-card h3 { margin-top:.55rem; font-size:1.12rem; }
.b2b-card p { font-size:.95rem; margin-bottom:0; }
.method-tags { display:flex; flex-wrap:wrap; gap:.55rem; margin-top:1rem; }
.method-tags span { background:var(--brand-50); border:1px solid var(--brand-100); color:var(--ink); padding:.5rem .7rem; border-radius:999px; font-size:.88rem; }
.location-intro { max-width:850px; }
.location-links { display:flex; flex-wrap:wrap; gap:.55rem; margin-top:1.2rem; }
.location-links a { border:1px solid var(--line-2); border-radius:999px; padding:.46rem .72rem; color:var(--ink-2); }
.location-links a:hover { border-color:var(--brand); color:var(--ink); }
.note-box { margin:1.2rem 0; border:1px solid var(--line-2); border-left:3px solid var(--brand); padding:1rem 1.1rem; border-radius:var(--r); background:rgba(255,255,255,.025); }
.note-box strong { color:var(--ink); }
.contact-direct { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; margin-top:1.3rem; }
.contact-direct .b2b-card a { color:var(--brand-3); font-weight:650; }
.form .field textarea { min-height:140px; resize:vertical; }
.form .field select, .form .field input, .form .field textarea { width:100%; }
.form-consent { font-size:.82rem; line-height:1.45; color:var(--ink-3); }
.form-consent a { text-decoration:underline; text-underline-offset:2px; }
.contact-status { padding:1rem 1.1rem; border-radius:var(--r); margin-bottom:1rem; border:1px solid var(--line-2); }
.contact-status.success { border-color:rgba(66,184,131,.5); background:rgba(66,184,131,.08); }
.contact-status.error { border-color:rgba(255,116,31,.55); background:var(--brand-50); }
.company-data-slot[hidden] { display:none !important; }
.seo-copy h2 { margin-top:1.65rem; }
.seo-copy h3 { margin-top:1.3rem; }
.seo-copy ul { color:var(--ink-2); }
.footer-contact-info a { overflow-wrap:anywhere; }
.footer-meta { gap:1rem; }
.hero-page .lead { max-width:850px; }
@media (max-width: 980px) { .b2b-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) { .b2b-grid, .contact-direct { grid-template-columns:1fr; } .brand-name .brand-l1 { font-size:.9rem; } }

/* V2: portable subpages, keyboard navigation and working enquiry/gallery flows. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
main:focus, #formularz:focus { outline: none; }
main, section[id], .showcase-grid[id], .faq[id], #formularz { scroll-margin-top: 110px; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 200; padding: .8rem 1rem; background: var(--brand); color: #171717; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.reveal { opacity: 1; transform: none; }
.nav-links > li { white-space: nowrap; }
.nav-links .has-sub > a { display: block; padding-right: 2.35rem; }
.nav-links .has-sub > a::after { display: none !important; }
.sub-toggle { position: absolute; right: 0; top: 0; width: 34px; height: 100%; max-height: 44px; border: 0; border-radius: 8px; background: transparent; color: var(--ink); font: inherit; font-size: 1.2rem; cursor: pointer; }
.sub-toggle:hover, .sub-toggle[aria-expanded="true"] { background: var(--brand-50); color: var(--brand); }
.nav-links .has-sub > .sub, .nav-links .has-sub:hover > .sub, .nav-links .has-sub:focus-within > .sub { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-4px); }
.nav-links .has-sub.is-open > .sub { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.nav-links a.is-active { color: var(--brand); background: var(--brand-50); }
.nav-drawer-brand { font-family: inherit; font-weight: 650; }
.page-jumps { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.page-jumps .container { display: flex; align-items: center; flex-wrap: wrap; gap: .65rem 1.5rem; padding-top: 1rem; padding-bottom: 1rem; }
.page-jumps a { color: var(--ink-2); font-size: .91rem; padding: .5rem 0; }
.page-jumps a:hover { color: var(--brand); }
.page-jumps .jump-cta { margin-left: auto; color: var(--brand); font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.1rem; }
.related-card { display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); transition: border-color .2s, transform .2s; }
.related-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.related-card h3 { font-size: 1.17rem; line-height: 1.3; }
.related-card p { font-size: .95rem; flex: 1; }
.related-arrow { color: var(--brand); font-weight: 650; font-size: .9rem; margin-top: 1rem; display: flex; justify-content: space-between; }
.download-brief { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--r); padding: 1.5rem; margin-top: 2rem; }
.download-brief p { margin: .3rem 0 0; font-size: .94rem; }
.download-brief .btn { flex: 0 0 auto; }
.contact-grid { align-items: start; }
.contact-card, .contact-grid > div { min-width: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem 1.1rem; }
.form-grid .field { margin: 0; min-width: 0; }
.form-grid .field-wide { grid-column: 1 / -1; }
.form .field input, .form .field select, .form .field textarea { font-family: inherit; font-size: 16px; min-height: 48px; }
.form-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.form-actions .btn { font-size: .95rem; }
.form .form-consent { margin-top: 1.2rem; }
.form-helper { font-size: .83rem; color: var(--ink-3); margin-top: .85rem; }
.btn[disabled] { opacity: .65; cursor: default; transform: none; }
.setup-note { font-size: .88rem; line-height: 1.5; }
.setup-note strong { display: block; }
.showcase-item { cursor: zoom-in; }
.showcase-item .zoom-hint { position: absolute; top: .7rem; right: .7rem; padding: .35rem .65rem; border-radius: 6px; background: rgba(0,0,0,.7); color: #fff; font-size: .8rem; z-index: 2; }
.showcase-item:focus-visible { outline-offset: 5px; }
.gallery-dialog { max-width: min(1120px,94vw); width: 94vw; max-height: 94dvh; padding: 3.5rem 1.25rem 1.25rem; border: 1px solid var(--line); border-radius: 18px; background: #181818; color: #fff; }
.gallery-dialog::backdrop { background: rgba(0,0,0,.82); }
.gallery-dialog figure { margin: 0; }
.gallery-dialog img { width: 100%; height: 62dvh; object-fit: contain; }
.gallery-dialog figcaption { padding: .9rem .3rem; font-size: .93rem; text-align: center; color: #fff; }
.gallery-close { position: absolute; top: .55rem; right: .7rem; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #333; color: #fff; font-size: 1.7rem; cursor: pointer; }
.gallery-controls { display: flex; justify-content: space-between; gap: 1rem; }
.gallery-controls .btn { font-size: .9rem; }
body.gallery-open { overflow: hidden; }
@media (min-width: 1025px) { .nav-links > .nav-drawer-head, .nav-links > .nav-drawer-foot { display: none; } .nav-links a { padding-left: .6rem; padding-right: .6rem; font-size: .88rem; } .sub a { padding: .75rem .9rem; } }
@media (max-width: 1024px) {
  body.nav-open .nav-links { top: 0; height: 100dvh; margin-top: 0; padding-bottom: env(safe-area-inset-bottom); }
  .nav-links .has-sub > a { padding-right: 4.5rem; }
  .sub-toggle { right: .6rem; top: .35rem; width: 46px; height: 46px; max-height: none; }
  .nav-links .has-sub > .sub { transform: none; max-height: 0; }
  .nav-links .has-sub.is-open > .sub { max-height: 720px; }
  .nav-links .nav-drawer-foot { padding: 1.2rem 1.5rem 2rem; }
  .nav-links { z-index: 110; }
  .nav-drawer-head { padding: 1rem; }
  .nav-drawer-brand { font-size: 1rem; }
}
@media (max-width: 700px) {
  .related-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .page-jumps .container { gap: .25rem 1.25rem; }
  .page-jumps .jump-cta { margin-left: 0; }
  .download-brief { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .gallery-dialog { width: 96vw; padding: 3.5rem .8rem 1rem; }
  .gallery-dialog img { height: 58dvh; }
  .gallery-controls .btn { padding: .65rem .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Closed mobile drawers must not extend the visual viewport. */
@media (max-width: 1024px) {
  .nav-links { display: none; transform: none; }
  body.nav-open .nav-links { display: flex; transform: none; }
}
/* Long Polish action labels wrap instead of overflowing a narrow viewport. */
.btn { max-width: 100%; white-space: normal; text-align: center; }
@media (min-width: 1025px) and (max-width: 1360px) { .brand-name .brand-l2 { display: none; } }
@media (min-width: 1025px) and (max-width: 1140px) { .nav-cta { display: none; } }
/* Keep the last desktop dropdown inside the screen, even while collapsed. */
@media (min-width: 1025px) { #nav-firma { left: auto; right: 0; } }
@media (max-width: 360px) {
  .nav { gap: .5rem; }
  .brand { min-width: 0; gap: .5rem; }
  .brand-dot { width: 30px; height: 30px; }
  .brand-name .brand-l1 { font-size: .8rem; }
  .brand-name .brand-l2 { font-size: .52rem; }
  .nav-toggle { min-width: 44px; width: 44px; height: 44px; flex: 0 0 44px; }
}
