:root {
  --background: oklch(0.13 0.01 60);
  --foreground: oklch(0.97 0.005 80);
  --card: oklch(0.17 0.012 60);
  --primary: oklch(0.69 0.21 38);
  --primary-foreground: oklch(0.13 0.01 60);
  --primary-glow: oklch(0.78 0.18 45);
  --muted: oklch(0.22 0.01 60);
  --muted-foreground: oklch(0.72 0.012 80);
  --border: oklch(1 0 0 / 10%);
  --gradient-ember: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --shadow-ember: 0 20px 60px -20px color-mix(in oklab, var(--primary) 55%, transparent);
  --shadow-deep: 0 30px 80px -30px oklch(0 0 0 / 0.7);
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --container: 80rem;
  --header-h: 5.25rem;
}

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

html { scroll-behavior: smooth; }

body.poti-theme {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

picture,
.poti-img-cover {
  display: block;
  width: 100%;
  height: 100%;
}

.poti-img-cover,
.poti-hero__bg picture img,
.poti-hero__bg > picture img,
.poti-workshop picture img,
.poti-page-hero--image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poti-hero__bg picture,
.poti-workshop picture,
.poti-page-hero--image picture {
  position: absolute;
  inset: 0;
}

.poti-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.poti-section-head__copy { max-width: 48rem; }

.poti-service-row__body h3 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
}

.poti-workshop__lead {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.poti-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.poti-footer-logo,
.poti-footer-logo img {
  height: 2.5rem;
  width: auto;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.poti-container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.text-gradient-ember {
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.poti-label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.poti-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.poti-btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-ember);
}

.poti-btn--primary:hover { transform: scale(1.03); }

.poti-btn--ghost {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 40%, transparent);
  color: var(--foreground);
}

.poti-btn--ghost:hover { background: var(--card); }

/* Header / navigation */
.poti-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    135deg,
    oklch(1 0 0 / 0.98) 0%,
    oklch(0.995 0.012 45 / 0.96) 48%,
    oklch(0.99 0.025 38 / 0.94) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid oklch(0 0 0 / 8%);
  box-shadow:
    0 4px 24px oklch(0 0 0 / 8%),
    inset 0 1px 0 oklch(1 0 0 / 0.9);
  transition: box-shadow 0.4s, border-color 0.4s;
}

.poti-header.is-scrolled {
  border-bottom-color: oklch(0 0 0 / 12%);
  box-shadow:
    0 10px 40px oklch(0 0 0 / 12%),
    inset 0 1px 0 oklch(1 0 0 / 0.95);
}

body.poti-menu-open { overflow: hidden; }

.poti-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 1.25rem;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.poti-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 101;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.poti-logo:hover { transform: scale(1.02); }

.poti-logo__img,
.poti-logo picture,
.poti-logo img {
  height: clamp(3.25rem, 5.5vw, 4.25rem);
  width: auto;
  filter: drop-shadow(0 4px 14px oklch(0 0 0 / 8%));
  transition: filter 0.35s ease;
}

.poti-logo:hover img,
.poti-logo:hover picture img {
  filter: drop-shadow(0 6px 20px oklch(0 0 0 / 12%));
}

.poti-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.poti-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: oklch(0.38 0.01 60);
  background-image: var(--gradient-ember);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  transition: color 0.3s, background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.poti-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.poti-nav__link:hover,
.poti-nav__link.is-active {
  color: transparent;
  background-size: 100% 100%;
}

.poti-nav__link:hover::after,
.poti-nav__link.is-active::after { transform: scaleX(1); }

.poti-nav__chevron {
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.poti-nav__dropdown:hover .poti-nav__chevron,
.poti-nav__dropdown.is-open .poti-nav__chevron { transform: rotate(180deg); }

.poti-nav__dropdown { position: relative; z-index: 20; }

.poti-nav__dropdown.is-open { z-index: 40; }

.poti-nav__dropdown-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 18rem;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.poti-nav__dropdown-panel {
  border: 1px solid oklch(0 0 0 / 10%);
  border-radius: 1rem;
  background: oklch(1 0 0 / 0.98);
  padding: 0.5rem;
  box-shadow: 0 12px 40px oklch(0 0 0 / 14%);
}

.poti-nav__dropdown:hover .poti-nav__dropdown-menu,
.poti-nav__dropdown.is-open .poti-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.poti-nav__dropdown-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.poti-nav__dropdown-item:hover { background: oklch(0.96 0 0); }

.poti-nav__dropdown-num {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.poti-nav__dropdown-title {
  display: block;
  font-weight: 600;
  color: oklch(0.18 0.01 60);
}

.poti-nav__dropdown-sub {
  display: block;
  font-size: 0.75rem;
  color: oklch(0.48 0.01 60);
}

.poti-nav__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  z-index: 101;
}

.poti-nav__cta { display: none; }

.poti-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid oklch(0 0 0 / 10%);
  background: oklch(1 0 0 / 0.85);
  color: oklch(0.2 0 0);
  border-radius: 0.75rem;
  cursor: pointer;
  box-shadow: 0 2px 10px oklch(0 0 0 / 6%);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.poti-nav__toggle:hover,
.poti-nav__toggle.is-active {
  background: oklch(1 0 0);
  border-color: color-mix(in oklab, var(--primary) 35%, oklch(0 0 0 / 12%));
  box-shadow: 0 4px 16px oklch(0 0 0 / 10%);
}

.poti-nav__toggle-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}

.poti-nav__toggle.is-active .poti-nav__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.poti-nav__toggle.is-active .poti-nav__toggle-bar:nth-child(2) { opacity: 0; }

.poti-nav__toggle.is-active .poti-nav__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.poti-nav__backdrop {
  position: fixed;
  inset: 0;
  background: oklch(0 0 0 / 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  z-index: 110;
}

.poti-nav__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.poti-nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22rem, 88vw);
  height: 100dvh;
  background: linear-gradient(180deg, oklch(1 0 0) 0%, oklch(0.995 0.01 45) 100%);
  border-left: 1px solid oklch(0 0 0 / 8%);
  box-shadow: -12px 0 48px oklch(0 0 0 / 14%);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.poti-nav__mobile::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--gradient-ember);
  flex-shrink: 0;
}

.poti-nav__mobile.is-open { transform: translateX(0); }

.poti-nav__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid oklch(0 0 0 / 8%);
}

.poti-nav__mobile-logo,
.poti-nav__mobile-logo img,
.poti-nav__mobile-logo picture img {
  height: 2.75rem;
  width: auto;
  filter: drop-shadow(0 2px 8px oklch(0 0 0 / 8%));
}

.poti-nav__mobile-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.poti-nav__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid oklch(0 0 0 / 10%);
  border-radius: 0.75rem;
  background: oklch(0.98 0 0);
  color: oklch(0.2 0 0);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.poti-nav__close:hover {
  background: oklch(0.96 0 0);
  transform: scale(1.04);
}

.poti-nav__mobile-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1rem 2rem;
  overflow-y: auto;
}

.poti-nav__mobile-link,
.poti-nav__mobile-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 0.85rem;
  background: transparent;
  color: oklch(0.22 0.01 60);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateX(1.25rem);
  transition: background 0.25s, color 0.25s;
}

.poti-nav__mobile.is-open .poti-nav__mobile-link,
.poti-nav__mobile.is-open .poti-nav__mobile-accordion,
.poti-nav__mobile.is-open .poti-nav__mobile-cta {
  animation: poti-mobile-item-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.poti-nav__mobile.is-open .poti-nav__mobile-body > :nth-child(1) { animation-delay: 0.06s; }
.poti-nav__mobile.is-open .poti-nav__mobile-body > :nth-child(2) { animation-delay: 0.12s; }
.poti-nav__mobile.is-open .poti-nav__mobile-body > :nth-child(3) { animation-delay: 0.18s; }
.poti-nav__mobile.is-open .poti-nav__mobile-body > :nth-child(4) { animation-delay: 0.24s; }
.poti-nav__mobile.is-open .poti-nav__mobile-body > :nth-child(5) { animation-delay: 0.3s; }

.poti-nav__mobile-link:hover,
.poti-nav__mobile-accordion:hover {
  background: linear-gradient(90deg, color-mix(in oklab, var(--primary) 12%, transparent), transparent);
}

.poti-nav__mobile-accordion svg {
  transition: transform 0.3s ease;
}

.poti-nav__mobile-accordion.is-open svg { transform: rotate(180deg); }

.poti-nav__mobile-sub {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 0 0 0.75rem;
  margin-left: 0.5rem;
  border-left: 2px solid color-mix(in oklab, var(--primary) 35%, transparent);
  overflow: hidden;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s;
}

.poti-nav__mobile-sub > div {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.poti-nav__mobile-sub.is-open {
  grid-template-rows: 1fr;
  padding: 0.35rem 0 0.75rem 0.75rem;
}

.poti-nav__mobile-sub a {
  padding: 0.55rem 0.75rem;
  border-radius: 0.6rem;
  color: oklch(0.45 0.01 60);
  font-size: 0.925rem;
  transition: background 0.2s, color 0.2s;
}

.poti-nav__mobile-sub a:hover {
  background: oklch(0.97 0 0);
  color: oklch(0.2 0 0);
}

.poti-nav__mobile-cta {
  margin-top: 0.75rem;
  justify-content: center;
  opacity: 0;
  transform: translateX(1.25rem);
}

@keyframes poti-mobile-item-in {
  from {
    opacity: 0;
    transform: translateX(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 1024px) {
  .poti-nav { padding: 1rem 1.5rem; }
  .poti-nav__links { display: flex; }
  .poti-nav__end { margin-left: 0; }
  .poti-nav__cta { display: inline-flex; }
  .poti-nav__toggle,
  .poti-nav__backdrop,
  .poti-nav__mobile { display: none; }
}

@media (max-width: 1023px) {
  .poti-nav__links { display: none !important; }
}

/* Hero */
.poti-hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.poti-hero__bg {
  position: absolute;
  inset: 0;
}

.poti-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poti-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 40%, transparent), color-mix(in oklab, var(--background) 30%, transparent), var(--background));
}

.poti-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem 6rem;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.poti-hero__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.poti-hero__badge span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
}

.poti-hero h1 {
  max-width: 56rem;
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 0.95;
  font-weight: 700;
}

.poti-hero__lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.poti-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Marquee */
.poti-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 40%, transparent);
  padding: 1.5rem 0;
}

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

.poti-marquee__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.poti-marquee__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes poti-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.poti-section { padding: 8rem 0; position: relative; }

.poti-section--grit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 25% 30%, oklch(1 0 0 / 0.05) 1px, transparent 1px),
    radial-gradient(1px 1px at 70% 60%, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.5;
  pointer-events: none;
}

.poti-section h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  font-weight: 700;
}

.poti-grid-2 {
  display: grid;
  gap: 4rem;
}

.poti-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--border);
}

.poti-stats__item {
  background: var(--card);
  padding: 1.5rem;
}

.poti-stats__value {
  font-size: 2.25rem;
  font-weight: 700;
}

/* Service cards */
.poti-service-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.poti-service-row:last-child { margin-bottom: 0; }

.poti-service-row--reverse .poti-service-row__media { order: 2; }

.poti-service-row__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-deep);
}

.poti-service-row__media img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.poti-service-row__badge {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--card) 80%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary);
}

.poti-service-row__body p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.poti-list { margin: 2rem 0 0; padding: 0; list-style: none; }

.poti-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.poti-list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.poti-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* Workshop */
.poti-workshop {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.poti-workshop picture,
.poti-workshop > picture {
  position: absolute;
  inset: 0;
}

.poti-workshop img,
.poti-workshop picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poti-workshop__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 70%, transparent), color-mix(in oklab, var(--background) 40%, transparent), var(--background));
}

.poti-workshop__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 90vh;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem;
  width: min(100%, var(--container));
  margin-inline: auto;
}

/* Why grid */
.poti-why-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--border);
}

.poti-why-card {
  background: var(--card);
  padding: 2rem;
  transition: background 0.2s;
}

.poti-why-card:hover { background: var(--muted); }

.poti-why-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  font-weight: 700;
  color: var(--primary);
}

/* Contact */
.poti-contact {
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 30%, transparent);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.poti-contact__grid {
  display: grid;
  gap: 4rem;
}

.poti-contact-cards {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--border);
}

.poti-contact-cards > div {
  background: var(--card);
  padding: 1.5rem;
}

.poti-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 6rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* Page hero */
.poti-page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0 5rem;
}

.poti-page-hero--image picture {
  position: absolute;
  inset: 0;
}

.poti-page-hero--image img,
.poti-page-hero--image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poti-page-hero--image .poti-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 70%, transparent), color-mix(in oklab, var(--background) 85%, transparent), var(--background));
}

.poti-page-hero__inner {
  position: relative;
  padding-inline: 1.5rem;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.poti-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.poti-page-hero h1 {
  max-width: 48rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.poti-page-hero__desc {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Process / cards */
.poti-cards-3 {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--border);
}

.poti-cards-3 > div {
  background: var(--card);
  padding: 2rem;
}

/* Gallery */
.poti-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.poti-gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-deep);
}

.poti-gallery__item img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.poti-gallery__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, color-mix(in oklab, var(--background) 90%, transparent), transparent);
  font-size: 0.875rem;
}

.poti-highlight-cards li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: color-mix(in oklab, var(--card) 40%, transparent);
}

.poti-other-services {
  display: grid;
  gap: 1.5rem;
}

.poti-other-services a {
  display: block;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: color-mix(in oklab, var(--card) 60%, transparent);
  transition: border-color 0.2s;
}

.poti-other-services a:hover { border-color: color-mix(in oklab, var(--primary) 60%, transparent); }

.poti-cta-center { text-align: center; padding: 6rem 0; }

@media (min-width: 768px) {
  .poti-grid-2 { grid-template-columns: 5fr 7fr; }
  .poti-service-row { grid-template-columns: 7fr 5fr; }
  .poti-why-grid { grid-template-columns: repeat(2, 1fr); }
  .poti-contact__grid { grid-template-columns: 1fr 1fr; }
  .poti-cards-3 { grid-template-columns: repeat(3, 1fr); }
  .poti-gallery { grid-template-columns: repeat(3, 1fr); }
  .poti-gallery__item--wide { grid-column: span 2; grid-row: span 2; }
  .poti-other-services { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .poti-why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .poti-container { width: min(100% - 2rem, var(--container)); }
  .poti-section { padding: 4.5rem 0; }
  .poti-hero__content { padding-bottom: 4rem; }
  .poti-hero h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .poti-hero__actions { flex-direction: column; align-items: stretch; }
  .poti-hero__actions .poti-btn { justify-content: center; }
  .poti-service-row { margin-bottom: 4rem; }
  .poti-service-row--reverse .poti-service-row__media { order: 0; }
  .poti-section-head { margin-bottom: 3rem; }
  .poti-section-head .poti-btn { width: 100%; justify-content: center; }
  .poti-workshop { min-height: 70dvh; }
  .poti-workshop__content { padding: 6rem 1.25rem; min-height: 70dvh; }
  .poti-contact { padding: 4.5rem 0; }
  .poti-page-hero { padding-bottom: 3.5rem; }
  .poti-marquee__item { font-size: 1.125rem; }
  .poti-stats__value { font-size: 1.75rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .poti-nav { padding-inline: 1.5rem; }
  .poti-section { padding: 6rem 0; }
}
