/* Puthawala theme — ported from Next.js globals + Elementor widgets */

/* Palette matched to https://demo2.themelexus.com/bocpak/ */
:root {
  --ink: #000000;
  --paper: #ffffff;
  --fog: #e9eeff;
  --mute: #555555;
  --soft: #999999;
  --line: #e7e7e7;
  --mark: #2757ff;
  --mark-ink: #ffffff;
  --sale: #f9ee71;
  --gutter: 12px;
  --max: 100%;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --radius: 6px;
  --background: var(--paper);
  --foreground: var(--ink);
}

@media (min-width: 640px) {
  :root {
    --gutter: 20px;
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 28px;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
  }
}


* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-shadow: none !important;
}

html {
  scroll-behavior: auto;
}

html.has-smooth-scroll {
  /* ScrollSmoother owns scrolling on desktop */
  scroll-behavior: auto;
}

body {
  background: #ffffff;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', ui-sans-serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* GSAP ScrollSmoother shell — only when active (desktop) */
html.has-smooth-scroll #smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  max-width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

html.has-smooth-scroll #smooth-content {
  overflow: visible;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
}

/* Mobile / tablet: normal document scroll */
#smooth-wrapper {
  width: 100%;
  max-width: 100vw;
}

#smooth-content {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  #smooth-wrapper {
    position: static;
    height: auto;
    overflow: visible;
  }
}

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

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

.shell {
  width: calc(100% - var(--gutter) * 2);
  max-width: none;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease);
}

.btn:hover {
  background: #222;
}

.btn-mark {
  background: var(--mark);
  color: var(--mark-ink);
}

.btn-mark:hover {
  background: #1e48e0;
}

.field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.95rem 0 0.75rem;
  font: inherit;
  color: var(--ink);
  outline: none;
}

.field:focus {
  border-bottom-color: var(--mark);
}

.field::placeholder {
  color: var(--soft);
}

textarea.field {
  min-height: 110px;
  resize: vertical;
}

.pic {
  position: relative;
  overflow: hidden;
  background: var(--fog);
  border-radius: var(--radius);
}

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

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

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee-slide var(--pth-marquee-duration, 40s) linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
  }
}

/* Aardvark handwritten font (How it works / Made for) */
@font-face {
  font-family: "Hello Organichand";
  src: url('../fonts/hello-organichand.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.handwritten {
  font-family: "Hello Organichand", cursive;
  font-weight: 400;
}

.split-word,
.split-char {
  display: inline-block;
}

/* Services cards — tablet horizontal scroll centering (mobile uses 2×2 grid) */
@media (min-width: 768px) and (max-width: 991px) {
  .flow-list {
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(1.25rem, calc((100% - min(17rem, 78vw)) / 2));
    padding-inline: max(1.25rem, calc((100% - min(17rem, 78vw)) / 2)) !important;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }

  .flow-list-item {
    scroll-snap-align: center;
  }
}

/* Made for — mid handwritten offset (Aardvark box__text-outer) */
.box-mid-text {
  transform: rotate(6deg);
}

@media (min-width: 992px) {
  .box-mid-text {
    transform: rotate(6deg) translate(27.5em, -2.5em);
  }
}

.font-marcellus {
  font-family: 'Marcellus', ui-serif, Georgia, serif;
}

/* Soft rounded panels — mild radius so corners don’t dominate */
.panel {
  position: relative;
  border-radius: 1.25rem;
  width: 100%;
  /* no overflow/clip — keeps position:sticky working inside panels */
}

.panel-inner {
  position: relative;
  padding: clamp(2rem, 5vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .panel {
    border-radius: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .panel {
    border-radius: 2rem;
  }
}

@media (max-width: 767px) {
  .panel-inner {
    padding: 1.75rem 1rem;
  }

  /* CTA box sequence — full-viewport panel + scrub track on phones */
  .box [data-box-sequence] {
    height: auto !important;
  }

  @media (prefers-reduced-motion: no-preference) {
    .box [data-box-sequence] {
      height: 240svh !important;
    }
  }

  .box [data-box-sequence] > [data-box-pin] {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh;
    width: 100%;
  }

  .box [data-box-sequence-element] {
    height: 100% !important;
    min-height: 100% !important;
    width: 100% !important;
    clip-path: inset(0.4rem round 1.15rem) !important;
  }

  .logo-engraved--header {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet: keep horizontal service/category rails instead of cramped 4-up */
  .flow-list {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
}

/*
 * Footer — match CTA inset width (0.75rem); balanced height; grey→white fade
 */
.cust-footer-main {
  width: 100%;
  /* Tight to CTA — same horizontal inset as CTA clip-path: inset(0.75rem …) */
  padding: 0.35rem 0.75rem 0.75rem;
  background: #ffffff;
  box-sizing: border-box;
}

.cust-footer-main .footer-wrapper {
  display: flex;
  width: 100%;
  height: clamp(283px, 19.5vw, 354px);
  gap: 8%;
  padding: 0.85rem 1.75rem 0.75rem;
  /* Match CTA round 2rem */
  border-radius: 2rem;
  background: linear-gradient(
    180deg,
    #e8e8e8 0%,
    #f2f2f2 28%,
    #fafafa 62%,
    #ffffff 100%
  );
  position: relative;
  z-index: 2;
}

.cust-footer-main .footer-left-wrap {
  width: 50%;
  height: 100%;
}

.cust-footer-main .foot-left {
  width: 100%;
  padding-top: 2vw;
}

.cust-footer-main .foot-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.cust-footer-main .foot-accordion {
  display: none;
}

.cust-footer-main .foot-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cust-footer-main .foot-links .foot-heading {
  margin-bottom: 0.5vw;
  font-size: clamp(13px, 0.85vw, 15px);
  font-weight: 600;
  color: #000;
}

.cust-footer-main .foot-links li {
  font-size: clamp(12px, 0.7vw, 14px);
  line-height: 1.35;
}

.cust-footer-main .foot-links a {
  color: #000;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.cust-footer-main .foot-links a:hover {
  opacity: 1;
}

/* Exact Bluorng foot_right / foot_logo / foot_bag */
.cust-footer-main .foot-right {
  display: flex;
  width: 40%;
  height: 100%;
  justify-content: flex-end;
}

.cust-footer-main .foot-logo {
  display: flex;
  width: 50%;
  height: 100%;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.logo-engraved {
  font-family: "Hello Organichand", cursive;
  line-height: 0.9;
  letter-spacing: -0.02em;
  background-color: #666;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: rgba(245, 245, 245, 0.5) 3px 5px 1px;
}

.logo-engraved--header {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.logo-engraved--footer {
  font-size: clamp(2.25rem, 3.2vw, 4rem);
}

.logo-engraved--light {
  background-color: #c8c8c8;
  text-shadow: rgba(0, 0, 0, 0.25) 2px 3px 1px;
}

.cust-footer-main .foot-engraved {
  font-family: "Hello Organichand", cursive;
  font-size: clamp(2.25rem, 3.2vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  background-color: #666;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: rgba(245, 245, 245, 0.5) 3px 5px 1px;
}

.cust-footer-main .foot-bag {
  display: flex;
  width: 50%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.cust-footer-main .foot-bag-visual {
  display: flex;
  width: 100%;
  height: 82%;
  align-items: flex-end;
  justify-content: center;
}

.cust-footer-main .foot-bag-img {
  width: auto !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* slight scale like Bluorng bag canvas */
  transform: scale(0.92);
  transform-origin: bottom center;
}

.cust-footer-main .foot-copyright {
  margin: 0.35vw 0 0;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.cust-footer-main .foot-copyright span {
  font-size: clamp(9px, 0.5vw, 11px);
  color: #000;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 950px) {
  .cust-footer-main {
    height: auto;
    padding: 0.35rem 0.75rem 0.75rem;
  }

  .cust-footer-main .footer-wrapper {
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .cust-footer-main .footer-left-wrap {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0.35rem 1.15rem 0.85rem;
    border-radius: 1.25rem;
    background: linear-gradient(
      180deg,
      #e8e8e8 0%,
      #f2f2f2 28%,
      #fafafa 62%,
      #ffffff 100%
    );
  }

  .cust-footer-main .foot-left {
    padding: 0.35rem 0.15rem 0.25rem;
  }

  .cust-footer-main .foot-links {
    display: none;
  }

  .cust-footer-main .foot-accordion {
    display: block;
  }

  .cust-footer-main .foot-accordion .foot-acc-trigger {
    -webkit-tap-highlight-color: transparent;
  }

  .cust-footer-main .foot-right {
    width: 100%;
    height: auto;
    margin: 0.75rem 0 0;
    padding: 1.25rem 1.5rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(
      180deg,
      #f2f2f2 0%,
      #fafafa 50%,
      #ffffff 100%
    );
    justify-content: center;
  }

  .cust-footer-main .foot-logo {
    display: none;
  }

  .cust-footer-main .foot-bag {
    width: 100%;
    height: auto;
    align-items: center;
  }

  .cust-footer-main .foot-bag-visual {
    height: min(48vw, 240px);
    max-width: 220px;
  }

  .cust-footer-main .foot-bag-img {
    transform: scale(1);
  }

  .cust-footer-main .foot-copyright {
    margin-top: 0.75rem;
  }

  .cust-footer-main .foot-copyright span {
    font-size: 0.65rem;
  }
}

/* Bocpak Home 3 button slip hover */
.btn-slip {
  position: relative;
}

.btn-slip::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  opacity: 0;
  transition:
    opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    transform 0.2s;
}

.btn-slip:hover::before {
  transform: translateY(0);
  opacity: 1;
}


/* ========== Elementor / WordPress reset helpers ========== */
.elementor-widget-puthawala-header .elementor-widget-container,
.elementor-widget-puthawala-footer .elementor-widget-container,
.elementor-widget-puthawala-hero .elementor-widget-container,
.elementor-widget-puthawala-cta .elementor-widget-container,
.elementor-widget-puthawala-portfolio .elementor-widget-container {
  margin: 0 !important;
}

.pth-main { min-height: 40vh; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.pth-section { background: var(--paper); padding: 1rem var(--gutter); }
@media (min-width: 768px) { .pth-section { padding-block: 1.5rem; } }

.pth-panel {
  position: relative;
  border-radius: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) { .pth-panel { border-radius: 1.75rem; } }
@media (min-width: 1024px) { .pth-panel { border-radius: 2rem; } }

.pth-panel-inner {
  position: relative;
  padding: clamp(2rem, 5vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.pth-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5em;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: transform 0.25s var(--ease), filter 0.2s;
}
.pth-quote-btn:hover { filter: brightness(0.96); }

.pth-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 6px;
  color: #fff;
}
.pth-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--mark);
  flex-shrink: 0;
}

/* Header */
.pth-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 0.5rem max(0.75rem, var(--gutter));
}
.pth-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 3rem;
  max-width: none;
  margin-inline: auto;
  padding-inline: 0.65rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  background: var(--pth-header-bg, rgba(255,255,255,0.8));
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.pth-header.is-scrolled .pth-header__bar {
  border-color: var(--line);
  background: rgba(255,255,255,0.95);
}
@media (min-width: 768px) {
  .pth-header__bar { height: 3.5rem; border-radius: 1rem; padding-inline: 0.85rem; }
}
.pth-header__nav { display: none; align-items: center; gap: 0.15rem; }
@media (min-width: 1280px) { .pth-header__nav { display: flex; } }
.pth-header__link {
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  transition: background 0.2s, color 0.2s;
}
.pth-header__link:hover,
.pth-header__link.is-active { background: var(--fog); color: var(--ink); }
.pth-header__actions { display: flex; align-items: center; gap: 0.4rem; }
.pth-header__cta {
  height: 2.25rem;
  padding-inline: 0.7rem;
  font-size: 11px;
  background: #f9a220;
  color: #000;
}
@media (min-width: 640px) {
  .pth-header__cta { font-size: 12px; padding-inline: 0.9rem; }
  .pth-header__cta-short { display: none; }
}
@media (max-width: 639px) {
  .pth-header__cta-full { display: none; }
}
@media (min-width: 768px) {
  .pth-header__cta { height: 2.5rem; font-size: 13px; }
}
.pth-header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 6px;
  background: var(--fog);
}
.pth-header__burger span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.pth-header.is-open .pth-header__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pth-header.is-open .pth-header__burger span:nth-child(2) { opacity: 0; }
.pth-header.is-open .pth-header__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1280px) { .pth-header__burger { display: none; } }

.pth-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
}
.pth-mobile-menu[hidden] { display: none !important; }
.pth-mobile-menu__backdrop { position: absolute; inset: 0; background: var(--fog); }
.pth-mobile-menu__panel { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.pth-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.65rem max(0.75rem, var(--gutter));
  padding: 0.55rem 0.65rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.pth-mobile-menu__close {
  width: 2.25rem; height: 2.25rem; border-radius: 6px;
  background: var(--ink); color: #fff; font-size: 1.4rem; line-height: 1;
}
.pth-mobile-menu__nav {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1rem max(0.75rem, var(--gutter)) 2.5rem;
  overflow-y: auto;
}
.pth-mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 1rem; padding: 1rem 1.25rem; background: var(--paper);
  font-size: 1.25rem; font-weight: 800;
}
.pth-mobile-menu__num {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 6px;
  font-size: 12px; font-weight: 700;
}
.pth-mobile-menu__cta {
  margin-top: 1rem; height: 3rem; width: 100%;
  background: #f9a220; color: #000; border-radius: 0.75rem; font-size: 1.05em;
}
@media (min-width: 1280px) { .pth-mobile-menu { display: none !important; } }

/* Hero */
.pth-hero { padding-top: 4.5rem; }
@media (min-width: 768px) { .pth-hero { padding-top: 6rem; } }
.pth-hero__inner { padding-bottom: 0; }
.pth-hero__copy { max-width: 56rem; margin-inline: auto; text-align: center; }
.pth-hero__eyebrow { font-size: clamp(1.15em, 3vw, 1.5em); opacity: 0.8; }
.pth-hero__title {
  margin-top: 0.75rem;
  font-size: clamp(1.85rem, 8.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.pth-hero__features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin: 1.5rem 0 0; padding: 0; list-style: none;
}
.pth-hero__features li {
  border-radius: 0.85rem; padding: 0.5rem 0.85rem;
  font-size: 12px; font-weight: 800;
}
.pth-hero__cta-wrap { margin-top: 1.75rem; display: flex; justify-content: center; }
.pth-hero__cta { height: 2.75rem; padding-inline: 1.25rem; font-size: 0.95em; }
.pth-hero__marquee { position: relative; margin-top: 1.5rem; overflow: hidden; padding: 1rem 0 1.5rem; }
.pth-hero__track { display: flex; width: max-content; gap: 0.75rem; padding-inline: 1rem; will-change: transform; }
.pth-hero__card {
  position: relative; flex-shrink: 0;
  width: 140px; height: 160px; overflow: hidden; border-radius: 1.25rem;
}
.pth-hero__card img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) {
  .pth-hero__card { width: 180px; height: 200px; }
  .pth-hero__track { gap: 1rem; }
}
@media (min-width: 768px) {
  .pth-hero__card { width: 220px; height: 250px; }
}

/* Experiences */
.pth-experiences__title {
  max-width: 18ch; margin-inline: auto; text-align: center;
  font-size: clamp(1.75rem, 6vw, 3.75rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.04em;
}
@media (min-width: 768px) { .pth-experiences__title { max-width: none; } }
.pth-experiences__row {
  display: flex; flex-direction: column; align-items: center; gap: 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 1024px) {
  .pth-experiences__row {
    flex-direction: row; align-items: stretch; justify-content: space-between; gap: 2rem;
  }
}
.pth-experiences__side { width: 100%; max-width: 24rem; }
@media (min-width: 1024px) {
  .pth-experiences__side { width: 26%; max-width: none; }
  .pth-experiences__side--end { align-self: flex-end; padding-bottom: 2.5rem; }
}
.pth-experiences__side h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 800; }
.pth-experiences__side p { margin-top: 0.75rem; color: var(--mute); line-height: 1.6; }
.pth-experiences__center { width: 100%; display: flex; flex-direction: column; align-items: center; }
@media (min-width: 1024px) { .pth-experiences__center { width: 42%; } }
.pth-experiences__visual {
  position: relative; aspect-ratio: 1; width: 100%; max-width: 420px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; overflow: hidden;
  background-color: #f7f7f7;
  background-image: linear-gradient(#ececec 1px, transparent 1px), linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 28px 28px;
}
.pth-experiences__visual img { width: 78%; height: 78%; object-fit: contain; }
.pth-experiences__caption { margin-top: 1.25rem; max-width: 20rem; text-align: center; font-size: 1.25em; opacity: 0.75; }

/* Services — match Next.js Services.tsx card layout */
.pth-services__panel { overflow: hidden; border-radius: 1.25rem; }
@media (min-width: 768px) { .pth-services__panel { border-radius: 1.75rem; } }
@media (min-width: 1024px) { .pth-services__panel { border-radius: 2rem; } }
.pth-services__header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem;
  padding: 2.5rem 1rem 0;
}
@media (min-width: 640px) {
  .pth-services__header { align-items: center; gap: 1rem; padding: 3rem 2rem 0; }
}
@media (min-width: 768px) { .pth-services__header { gap: 2rem; padding: 5rem 3.5rem 0; } }
@media (min-width: 1024px) { .pth-services__header { padding: 6em 5rem 0; } }
.pth-services__header h2 {
  margin-top: 0.25rem;
  font-size: clamp(1.75rem, 7vw, 3.75rem); font-weight: 800; letter-spacing: -0.04em;
}
.pth-services__header .handwritten {
  font-size: clamp(1.1em, 2vw, 1.4em); line-height: 1.35; letter-spacing: -0.02em; opacity: 0.8;
}
.pth-services__cta {
  height: 2.5rem; padding-inline: 0.75rem; border-radius: 0.5em;
  font-size: 0.9em; font-weight: 700; letter-spacing: -0.03em; flex-shrink: 0;
}
@media (min-width: 640px) {
  .pth-services__cta { height: 3em; padding-inline: 0.8125em; font-size: 1.15em; }
}
@media (min-width: 768px) { .pth-services__cta { font-size: 1.25em; } }
.pth-services__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
  padding: 1.5rem 1rem 3rem; overflow: visible;
}
@media (min-width: 640px) {
  .pth-services__list { gap: 0.875rem; padding-inline: 2rem; }
}
@media (min-width: 768px) {
  .pth-services__list {
    display: flex; gap: 1rem; overflow-x: auto;
    padding: 3.5rem 2.5rem 4rem; scrollbar-width: none; -ms-overflow-style: none;
  }
  .pth-services__list::-webkit-scrollbar { display: none; }
}
@media (min-width: 1024px) {
  .pth-services__list { overflow: visible; padding: 5rem 3.5rem 6rem; }
}
.pth-services__item { min-width: 0; width: 100%; }
@media (min-width: 768px) and (max-width: 1023px) {
  .pth-services__item { width: min(17rem, 78vw); flex-shrink: 0; scroll-snap-align: center; }
}
@media (min-width: 1024px) { .pth-services__item { flex: 1 1 0; min-width: 0; width: auto; } }
.pth-services__card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 0.65rem;
  height: 100%; min-height: 17.5rem; border-radius: 1.25rem;
  padding: 1.25rem 0.75rem 0.9rem; text-align: left; will-change: transform;
}
@media (min-width: 640px) { .pth-services__card { min-height: 19rem; padding: 1.75rem 1rem 1.25rem; } }
@media (min-width: 768px) { .pth-services__card { min-height: 26rem; padding: 2.25rem 1.25rem 1.5rem; } }
@media (min-width: 1024px) { .pth-services__card { min-height: 28rem; padding: 2.5rem 1.5rem 1.5rem; } }
.pth-services__card > .handwritten {
  display: block; text-align: center; flex-shrink: 0;
  font-size: clamp(1.15em, 2vw, 1.875em); line-height: 1; letter-spacing: -0.02em;
}
.pth-services__img {
  display: flex; align-items: center; justify-content: center; flex: 1;
  min-height: 0; max-width: 7.5rem; margin-inline: auto; width: 100%; overflow: hidden;
}
@media (min-width: 640px) { .pth-services__img { max-width: 10rem; } }
@media (min-width: 768px) { .pth-services__img { max-width: 14rem; } }
.pth-services__img img { width: 100%; height: auto; max-height: 100%; object-fit: contain; }
.pth-services__card h3 {
  font-size: clamp(0.95rem, 1.5vw, 1.35rem); font-weight: 800;
  line-height: 1.35; letter-spacing: -0.02em;
}
.pth-services__card p {
  margin-top: 0.4rem; font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  color: rgba(0,0,0,0.75); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) {
  .pth-services__card p { display: block; -webkit-line-clamp: unset; overflow: visible; }
}

/* Brands */
.pth-brands { position: relative; z-index: 10; margin-top: 2rem; overflow: hidden; border-block: 1px solid var(--line); }
.pth-brands__row { display: flex; }
.pth-brands__cell {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  height: 88px; width: 210px; flex-shrink: 0;
  border-right: 1px solid var(--line); padding-inline: 1.25rem;
  font-size: 15px; font-weight: 600; color: var(--mute); white-space: nowrap;
}
@media (min-width: 768px) {
  .pth-brands__cell { height: 100px; width: 230px; font-size: 1rem; }
}
.pth-brands__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--mute); opacity: 0.5; }

/* Projects */
.pth-projects__panel { position: relative; overflow: hidden; }
.pth-projects__overlay {
  pointer-events: none; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0.07; background-repeat: repeat-y; background-position: 78% top; background-size: 28%;
}
.pth-projects__row { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .pth-projects__row { flex-direction: row; gap: 0; } }
.pth-projects__aside { width: 100%; }
@media (min-width: 1024px) { .pth-projects__aside { width: 37.5%; padding-right: 2rem; } }
.pth-projects__aside h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 800;
  line-height: 0.95; letter-spacing: -0.045em;
}
.pth-projects__feature { display: flex; gap: 1.25rem; margin-top: 3rem; }
.pth-projects__feature h3 { font-size: 1.35rem; font-weight: 800; }
.pth-projects__feature p { margin-top: 0.6rem; color: var(--mute); font-size: 15px; line-height: 1.6; }
.pth-projects__btn {
  display: inline-flex; align-items: center; gap: 1rem; margin-top: 3.5rem;
  border-radius: 6px; padding: 1rem 1.75rem; font-size: 15px; font-weight: 700;
  transition: transform 0.3s;
}
.pth-projects__btn:hover { transform: translateX(0.5rem); }
.pth-projects__stack { width: 100%; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .pth-projects__stack { width: 62.5%; align-items: flex-end; } }
.pth-projects__card { width: 100%; max-width: 550px; margin-bottom: 3rem; }
.pth-projects__card:last-child { margin-bottom: 0; }
.pth-projects__media { aspect-ratio: 550/596; width: 100%; overflow: hidden; }
.pth-projects__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s; }
.pth-projects__card:hover .pth-projects__media img { transform: scale(0.95); }
.pth-projects__caption { background: var(--paper); padding: 1rem 1.25rem; }
.pth-projects__caption h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 14px; font-weight: 800; }
.pth-projects__caption p { margin-top: 0.35rem; padding-left: 18px; font-size: 14px; color: var(--mute); line-height: 1.55; }

/* Categories */
.pth-categories__panel { overflow: hidden; }
.pth-categories__header { padding: 3rem 1.25rem 0; }
@media (min-width: 768px) { .pth-categories__header { padding: 4rem 3.5rem 0; } }
.pth-categories__header h2 {
  margin-top: 0.5rem; font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.04em;
}
.pth-categories__list {
  display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 2rem 1.25rem 0.5rem; scrollbar-width: none;
}
.pth-categories__list::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .pth-categories__list {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
    overflow: visible; scroll-snap-type: none; padding: 3.5rem 3.5rem 0;
  }
}
.pth-categories__item {
  width: min(16.5rem, 78vw); flex-shrink: 0; scroll-snap-align: center; text-align: left; padding: 0;
}
@media (min-width: 1024px) { .pth-categories__item { width: auto; } }
.pth-categories__item article {
  display: flex; flex-direction: column; justify-content: space-between; gap: 0.75rem;
  min-height: 22rem; border-radius: 1.25rem; padding: 1.75rem 1rem 1.25rem;
  transition: transform 0.3s;
}
.pth-categories__item:hover article { transform: scale(1.03); }
.pth-categories__item .handwritten { text-align: center; font-size: 1.35em; }
.pth-categories__img { flex: 1; display: flex; align-items: center; justify-content: center; max-width: 12rem; margin-inline: auto; width: 100%; }
.pth-categories__img img { width: 100%; height: auto; object-fit: contain; }
.pth-categories__item p { font-size: 0.85rem; color: rgba(0,0,0,0.75); line-height: 1.55; }
.pth-categories__nav {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 1.5rem; padding-bottom: 3rem;
}
@media (min-width: 1024px) { .pth-categories__nav { display: none; } }
.pth-categories__nav button {
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 1.4rem; line-height: 1;
}
.pth-categories__nav button:disabled { opacity: 0.35; }
.pth-categories__nav p { min-width: 4.5rem; text-align: center; font-size: 13px; font-weight: 700; }

/* About */
.pth-about__grid { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) { .pth-about__grid { flex-direction: row; gap: 3.5rem; } }
.pth-about__copy { width: 100%; }
@media (min-width: 1024px) { .pth-about__copy { width: 48%; } }
.pth-about__copy h2 {
  margin-top: 0.5rem; font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.045em;
}
.pth-about__body { margin-top: 1.25rem; max-width: 42ch; color: var(--mute); line-height: 1.65; }
.pth-about__cta { margin-top: 2rem; height: auto; padding: 0.9rem 1.5rem; background: #f9a220; color: #000; border-radius: 6px; }
.pth-about__media { width: 100%; }
@media (min-width: 1024px) { .pth-about__media { width: 52%; } }
.pth-about__figure { position: relative; overflow: hidden; border-radius: 1.25rem; }
.pth-about__figure img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
@media (min-width: 640px) { .pth-about__figure img { aspect-ratio: 5/4; } }
.pth-about__badges {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pth-about__badges span {
  border-radius: 6px; background: var(--paper); padding: 0.35rem 0.75rem;
  font-size: 12px; font-weight: 800;
}
.pth-about__highlights {
  display: grid; gap: 0.75rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .pth-about__highlights { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.pth-about__highlights article {
  display: flex; flex-direction: column; border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
}
.pth-about__highlights h3 { margin-top: 1.25rem; font-size: 1.15rem; font-weight: 800; }
.pth-about__highlights p { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(0,0,0,0.75); line-height: 1.55; }

/* Portfolio horizontal */
.pth-portfolio { position: relative; background: var(--paper); }
.pth-portfolio__pin {
  display: flex; height: 100svh; align-items: stretch; overflow: hidden;
  padding: 0.5rem;
}
.pth-portfolio__panel {
  display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden;
}
.pth-portfolio__header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1rem 0.5rem; flex-shrink: 0;
}
@media (min-width: 768px) { .pth-portfolio__header { padding: 2.25rem 2.5rem 1rem; } }
.pth-portfolio__header h2 {
  margin-top: 0.25rem; font-size: clamp(1.5rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.04em;
}
.pth-portfolio__count { font-size: 12px; font-weight: 600; color: var(--mute); }
.pth-portfolio__viewport {
  position: relative; flex: 1; min-height: 0; display: flex; align-items: center; overflow: hidden;
  padding-bottom: 1.5rem;
}
.pth-portfolio__track {
  display: flex; height: 100%; max-height: min(52svh, 440px); width: max-content;
  align-items: stretch; gap: 1.5rem; padding-inline: 1.25rem; will-change: transform;
}
.pth-portfolio__card {
  position: relative; height: 100%; width: min(70vw, 240px); flex-shrink: 0;
  overflow: hidden; border-radius: 6px; background: var(--fog);
}
@media (min-width: 640px) { .pth-portfolio__card { width: 280px; } }
@media (min-width: 768px) { .pth-portfolio__card { width: 320px; } }
.pth-portfolio__card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.pth-portfolio__card:hover img { transform: scale(1.05); }
.pth-portfolio__tag {
  position: absolute; left: 0.75rem; top: 0.75rem; border-radius: 6px;
  background: var(--paper); padding: 0.25rem 0.6rem;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
}
.pth-portfolio__card h3 {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  color: #fff; font-size: 0.95rem; font-weight: 800;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Process / Why */
.pth-process header, .pth-why header { margin-bottom: 2.5rem; }
.pth-process h2, .pth-why h2 {
  margin-top: 0.5rem; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em;
}
.pth-process__list {
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .pth-process__list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1024px) { .pth-process__list { display: flex; flex-direction: row; } }
.pth-process__card {
  flex: 1; border-radius: 6px; padding: 1.75rem 1.25rem;
}
.pth-process__card h3 { margin-top: 2rem; font-size: 1.35rem; font-weight: 800; }
.pth-process__card p { margin-top: 1rem; color: rgba(0,0,0,0.75); line-height: 1.65; }
.pth-why__list { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .pth-why__list { flex-direction: row; gap: 1.25rem; } }
.pth-why__list article {
  flex: 1; display: flex; flex-direction: column; align-items: flex-start;
  border-radius: 1.25rem; padding: 2rem 1.5rem 2rem; will-change: transform;
}
@media (min-width: 768px) {
  .pth-why__list article { padding: 2.5rem 1.75rem 2.5rem; }
}
.pth-why__list .handwritten { font-size: 1.5em; line-height: 1; letter-spacing: -0.02em; }
.pth-why__list h3 {
  margin-top: 2rem; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .pth-why__list h3 { margin-top: 2.5rem; font-size: 1.45rem; }
}
.pth-why__list p {
  margin-top: 1rem; color: rgba(0,0,0,0.75); line-height: 1.65; font-size: 0.95rem;
}
@media (min-width: 768px) { .pth-why__list p { margin-top: 1.25rem; } }

/* Industries */
.pth-industries__header {
  display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .pth-industries__header { flex-direction: row; align-items: center; justify-content: space-between; }
}
.pth-industries__header h2 {
  margin-top: 0.5rem; font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.045em; line-height: 1.02;
}
.pth-industries__cta { height: 3rem; padding-inline: 1.5rem; border-radius: 6px; }
.pth-industries__grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem 1rem; padding-top: 1.5rem;
}
@media (min-width: 400px) { .pth-industries__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .pth-industries__grid { grid-template-columns: repeat(3, 1fr); gap: 3.5rem 1.5rem; } }
@media (min-width: 1024px) { .pth-industries__grid { grid-template-columns: repeat(4, 1fr); } }
.pth-industries__tile { position: relative; }
.pth-industries__tile.is-open { z-index: 40; }
.pth-industries__peek {
  position: absolute; bottom: 100%; left: 0; right: 0; z-index: 0;
  margin-bottom: -12px; border-radius: 1.25rem; padding: 1.25rem;
  opacity: 0; transform: translateY(78%) scale(0.96);
  pointer-events: none; transition: opacity 0.35s, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.pth-industries__tile.is-open .pth-industries__peek {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.pth-industries__peek .handwritten { font-size: 1.5em; }
.pth-industries__peek h3 { margin-top: 0.75rem; font-size: 1.15rem; font-weight: 800; }
.pth-industries__focus {
  margin-top: 0.5rem; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(0,0,0,0.55);
}
.pth-industries__peek p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(0,0,0,0.75); line-height: 1.55; }
.pth-industries__peek .pth-quote-btn {
  margin-top: 1.25rem; height: 2.5rem; padding-inline: 1rem;
  background: var(--ink); color: #fff; border-radius: 6px; font-size: 13px;
}
.pth-industries__wall {
  position: relative; z-index: 10; display: flex; align-items: center; gap: 0.75rem;
  width: 100%; border-radius: 1rem; padding: 0.9rem 1rem; text-align: left;
}
.pth-industries__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 6px; background: rgba(0,0,0,0.1);
  font-size: 11px; font-weight: 700;
}
.pth-industries__name { flex: 1; font-size: 13px; font-weight: 800; }
.pth-industries__plus {
  display: inline-flex; width: 1.75rem; height: 1.75rem; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(0,0,0,0.1); transition: transform 0.3s;
}
.pth-industries__tile.is-open .pth-industries__plus { transform: rotate(45deg); }
.pth-industries__hint { margin-top: 1.5rem; text-align: center; font-size: 12px; color: var(--mute); }
@media (min-width: 768px) { .pth-industries__hint { display: none; } }

/* CTA sequence — match Next.js Cta.tsx / Aardvark box */
.pth-cta { position: relative; z-index: 0; background: var(--paper); }
.pth-cta .pth-cta__sequence { position: relative; width: 100%; height: auto; }
@media (prefers-reduced-motion: no-preference) {
  .pth-cta .pth-cta__sequence { height: 300svh; }
}
.pth-cta__pin {
  display: flex; width: 100%; align-items: stretch; justify-content: center;
  height: auto; min-height: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .pth-cta__pin { min-height: 100svh; }
}
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  .pth-cta__pin { min-height: 46.25em; }
}
.pth-cta__element {
  position: relative; display: flex; width: 100%;
  min-height: min(100svh, 46.25em);
  align-items: flex-end; justify-content: center; overflow: hidden;
  clip-path: inset(0.75rem round 2rem);
}
@media (min-width: 768px) {
  .pth-cta__element { min-height: 0; height: 100%; }
}
.box-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  will-change: transform;
}
.pth-cta__mid {
  pointer-events: none; position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center; opacity: 0.75;
}
.pth-cta__mid .box-mid-text { position: absolute; padding-inline: 1rem; }
.pth-cta__mid .handwritten {
  max-width: 18ch; text-align: center;
  font-size: clamp(1.05em, 2.5vw, 1.5em); line-height: 1; letter-spacing: -0.02em;
}
.pth-cta__final {
  position: relative; z-index: 2; width: 100%; max-width: 62.5em;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 12% 1rem max(1.25rem, env(safe-area-inset-bottom));
  text-align: center;
}
@media (min-width: 640px) {
  .pth-cta__final { padding-bottom: 8%; padding-inline: 1.5rem; }
}
@media (min-width: 768px) {
  .pth-cta__final { padding-bottom: 10%; padding-top: 14%; }
}
.pth-cta__final-title { width: 100%; max-width: 36rem; }
.pth-cta__final h2 {
  font-size: clamp(1.45rem, 6.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em;
  opacity: 0;
}
.pth-cta__final-hand { position: relative; margin-top: 0.5rem; opacity: 0.75; }
@media (min-width: 640px) { .pth-cta__final-hand { margin-top: 0.75rem; } }
.pth-cta__final .handwritten {
  max-width: 14ch; font-size: clamp(1.15em, 2.5vw, 1.5em);
  line-height: 1; letter-spacing: -0.02em;
}
.pth-cta__buttons {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.65rem; padding: 1.5rem 0 0.25rem; width: 100%;
}
@media (min-width: 640px) {
  .pth-cta__buttons { gap: 2rem; width: auto; padding: 2.5rem 0 1rem; }
}
@media (min-width: 768px) {
  .pth-cta__buttons { gap: 3em; padding-top: 3.5rem; }
}
.pth-cta__btn-wrap { display: flex; justify-content: center; transform: scale(0); }
.pth-cta__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.75rem; padding-inline: 1rem; border-radius: 0.5em;
  font-size: 0.95em; font-weight: 700; letter-spacing: -0.03em;
}
@media (min-width: 640px) {
  .pth-cta__btn { height: 3.25em; padding-inline: 1.25em; font-size: 1.15em; }
}
.pth-cta__btn--secondary { border: 2px solid var(--ink); background: var(--paper); color: var(--ink); }
.split-char, .split-word { display: inline-block; }

/* Page hero */
.pth-page-hero__inner { text-align: center; padding-block: clamp(4rem, 12vw, 7rem); }
.pth-page-hero h1 {
  margin-top: 0.5rem; font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800; letter-spacing: -0.045em;
}
.pth-page-hero__body { margin: 1rem auto 0; max-width: 42ch; color: var(--mute); }
.pth-page-hero__cta { margin-top: 1.5rem; height: 2.75rem; padding-inline: 1.25rem; }

/* Quote form + modal */
.pth-quote-form__grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .pth-quote-form__grid { grid-template-columns: 1fr 1fr; } }
.pth-quote-form label {
  display: block; margin-bottom: 0.35rem;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mute);
}
.pth-quote-form input,
.pth-quote-form select,
.pth-quote-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px;
  background: var(--paper); padding: 0.75rem 1rem; font: inherit; color: var(--ink);
  outline: none;
}
.pth-quote-form input:focus,
.pth-quote-form select:focus,
.pth-quote-form textarea:focus { border-color: var(--ink); }
.pth-quote-form__fields > * + * { margin-top: 1rem; }
.pth-quote-form__submit {
  display: inline-flex; height: 2.75rem; align-items: center; padding-inline: 1.25rem;
  border-radius: 6px; background: #f9a220; color: #000; font-weight: 700;
}
.pth-quote-form__error { color: #b91c1c; font-size: 14px; }
.pth-quote-form__success {
  border-radius: 1rem; background: #b8f06e; padding: 1.5rem;
}
.pth-quote-form__success h3 { font-size: 1.15rem; font-weight: 800; }
.pth-quote-form__success p { margin-top: 0.5rem; font-size: 14px; color: rgba(0,0,0,0.8); }

.pth-quote-modal {
  position: fixed; inset: 0; z-index: 100; display: flex;
  align-items: flex-end; justify-content: center; padding: 1rem;
}
@media (min-width: 640px) { .pth-quote-modal { align-items: center; } }
.pth-quote-modal[hidden] { display: none !important; }
.pth-quote-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.pth-quote-modal__dialog {
  position: relative; z-index: 1; width: min(100%, 34rem); max-height: min(92svh, 900px);
  overflow: auto; border-radius: 1.25rem; background: var(--paper); padding: 1.5rem;
}
.pth-quote-modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 2.25rem; height: 2.25rem; border-radius: 6px; background: var(--fog); font-size: 1.35rem;
}
.pth-quote-modal h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; padding-right: 2rem; }
.pth-quote-modal__intro { margin: 0.5rem 0 1.25rem; color: var(--mute); font-size: 14px; }

.pth-quote-form-widget__intro { margin: 0.75rem 0 1.5rem; color: var(--mute); }
.pth-quote-form-widget h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.04em; }

/* Contact details */
.pth-contact-details header { margin-bottom: 2rem; }
.pth-contact-details h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.pth-contact-details__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pth-contact-details__grid { grid-template-columns: repeat(3, 1fr); }
}
.pth-contact-details__card {
  display: block;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}
.pth-contact-details__card:hover { transform: translateY(-2px); }
.pth-contact-details__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.55);
}
.pth-contact-details__value {
  margin-top: 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pth-contact-details__detail {
  margin-top: 0.35rem;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
}

/* Accordion footer helpers */
.pth-acc-icon {
  position: relative; display: block; width: 0.9rem; height: 0.9rem;
}
.pth-acc-icon::before,
.pth-acc-icon::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 999px;
}
.pth-acc-icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.pth-acc-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); transition: opacity 0.2s, transform 0.2s; }
.foot-acc.is-open .pth-acc-icon::after { opacity: 0; transform: translateX(-50%) scaleY(0); }
.foot-acc-panel { list-style: none; margin: 0; padding: 0 0 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-acc-panel[hidden] { display: none !important; }
.foot-acc-panel a { color: rgba(0,0,0,0.7); font-size: 0.875rem; }

/* ---------- Setup fallback (shown when no Elementor content exists) ---------- */
.pth-setup-fallback { padding-block: 6vh; }
.pth-setup-fallback__steps { list-style: none; margin: 2rem auto 0; padding: 0; max-width: 34rem; text-align: left; display: flex; flex-direction: column; gap: 0.85rem; }
.pth-setup-fallback__steps li { background: rgba(255,255,255,0.75); border: 1px solid rgba(0,0,0,0.08); border-radius: 1rem; padding: 0.9rem 1.1rem; font-size: 0.95rem; }
.pth-setup-fallback__steps a { color: #3b308f; font-weight: 600; text-decoration: underline; }
.pth-entry { padding-block: 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.pth-entry:last-child { border-bottom: 0; }
