@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/open-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/open-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/kanit-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/kanit-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/kanit-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/kanit-700-latin.woff2") format("woff2");
}

:root {
  --color-ink: #202020;
  --color-muted: #5f6268;
  --color-line: #d9dde2;
  --color-soft: #f5f6f5;
  --color-panel: #ffffff;
  --color-accent: #8e1f1f;
  --color-accent-dark: #631717;
  --color-steel: #2e3842;
  --color-cream: #f4f0e7;
  --shadow: 0 18px 45px rgba(24, 28, 33, 0.12);
  --radius: 8px;
  --content: min(1120px, calc(100% - 40px));
  --font-body: "Open Sans", Arial, sans-serif;
  --font-display: "Kanit", "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  background: var(--color-panel);
}

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-accent-dark);
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--color-steel);
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.55rem 0.75rem;
  background: var(--color-ink);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(46, 56, 66, 0.12);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(140%) blur(10px);
}

.nav-wrap {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-steel);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: white;
  color: var(--color-steel);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--color-steel);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.button,
.site-nav .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
  color: white;
}

.button.secondary {
  background: transparent;
  color: var(--color-accent);
}

.button.secondary:hover {
  background: var(--color-accent);
  color: white;
}

.hero {
  background: linear-gradient(90deg, rgba(16, 20, 24, 0.78), rgba(16, 20, 24, 0.42)), url("/img/HA6b.webp") center / cover;
  color: white;
}

.hero .content {
  width: var(--content);
  min-height: 640px;
  margin: 0 auto;
  padding: 7rem 0;
  display: grid;
  align-content: center;
  gap: 1.4rem;
}

.hero h1,
.hero h2 {
  color: white;
}

.hero p {
  max-width: 680px;
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d4d4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.section {
  padding: 5.5rem 0;
}

.section.tight {
  padding: 3.8rem 0;
}

.band {
  background: var(--color-soft);
}

.warm {
  background: var(--color-cream);
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.1rem;
}

.lead {
  color: var(--color-muted);
  font-size: 1.12rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--color-panel);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  border-radius: 6px;
  object-fit: cover;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.feature img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  min-height: 64px;
  padding: 0.2rem 0 1.2rem 4.4rem;
}

.steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  background: var(--color-accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1.6rem;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--color-steel);
  color: white;
}

.contact-panel h2,
.contact-panel h3 {
  color: white;
}

.contact-panel a {
  color: white;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.contact-list div {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq details {
  border-top: 1px solid var(--color-line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  color: var(--color-steel);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.page-hero {
  padding: 5.8rem 0 4.5rem;
  background: var(--color-steel);
  color: white;
}

.page-hero h1,
.page-hero p {
  color: white;
}

.prose {
  max-width: 860px;
}

.prose h2 {
  margin-top: 2.8rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.note {
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-cream);
}

.site-footer {
  padding: 2.6rem 0;
  background: #161b20;
  color: #eef1f2;
}

.footer-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-grid a {
  color: #eef1f2;
}

.footer-credit {
  width: var(--content);
  margin: 1.3rem auto 0;
  text-align: center;
}

.pensanta-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: #20262c;
  border: 1px solid #333b43;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #b3bcc4;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pensanta-credit:hover {
  transform: translateY(-2px);
  border-color: #4a545d;
}

.pensanta-credit svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.pensanta-credit a {
  color: #eef1f2;
  font-weight: 600;
  text-decoration: none;
}

.pensanta-credit a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 12;
  min-width: 56px;
  min-height: 56px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.staging-home .ha-logo-hero {
  min-height: 520px;
  padding: 4rem 0 2.2rem;
  display: grid;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(20, 20, 20, 0.28), rgba(20, 20, 20, 0.28)), url("/img/background2.webp") center / cover;
}

.staging-home .ha-logo-hero .container {
  display: grid;
  justify-items: center;
  gap: 1.6rem;
}

.staging-home .hero-mark {
  width: min(150px, 34vw);
  height: auto;
  border-radius: 0;
}

.staging-home .outline-img {
  width: min(920px, 92vw);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 3px 3px rgba(0, 0, 0, 0.25));
  opacity: 0.96;
}

.staging-home .ha-logo-hero h2 {
  color: white;
  font-size: clamp(1.1rem, 2.3vw, 1.65rem);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.staging-home .ha-intro {
  text-align: center;
}

.staging-home .ha-icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.5rem, 6vw, 5rem);
  margin-top: 2rem;
}

.staging-home .ha-icon-row article {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.staging-home .ha-icon-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(1);
}

.staging-home .ha-icon-row h3 {
  color: #3c3f44;
  font-size: 1rem;
}

.staging-home .ha-symbol {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 2px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: #fff;
}

.staging-home .ha-symbol svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.staging-home .ha-side-art {
  display: grid;
  gap: 1rem;
}

.staging-home .ha-side-art .small-art {
  width: 120px;
  justify-self: center;
  box-shadow: none;
}

.staging-home .ha-process {
  background: #fff;
  color: var(--color-ink);
}

.staging-home .process-layout {
  min-height: 590px;
  position: relative;
}

.staging-home .process-card {
  position: absolute;
  display: grid;
  align-content: center;
  padding: 1.5rem;
}

.staging-home .process-one {
  left: 5%;
  top: 8%;
  width: 36%;
  min-height: 210px;
}

.staging-home .process-two {
  left: 8%;
  top: 42%;
  width: 45%;
  min-height: 330px;
  background: #ffd205;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  text-align: center;
}

.staging-home .process-three {
  right: 6%;
  top: 31%;
  width: 43%;
  min-height: 330px;
  background: linear-gradient(rgba(35, 35, 35, 0.18), rgba(35, 35, 35, 0.18)), url("/img/HA7b.webp") center / cover;
  clip-path: polygon(50% 0, 100% 22%, 100% 100%, 0 100%, 0 22%);
  color: white;
  text-align: center;
}

.staging-home .process-number {
  color: #6d6d6d;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.staging-home .process-two .process-number,
.staging-home .process-three .process-number {
  color: white;
}

.staging-home .process-three h3 {
  color: white;
}

.staging-home .ha-structure-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.staging-home .ha-structure-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 0;
  background: #ddd;
}

.staging-home .ha-structure-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.staging-home .ha-structure-grid h3 {
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.staging-home .contact-panel {
  width: 100%;
  max-width: none;
  padding: 0;
  background: #2b2b2b;
  border-radius: 0;
  overflow: hidden;
}

.staging-home .ha-contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 0;
}

.staging-home .contact-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.staging-home .contact-copy {
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  align-content: center;
}

.staging-home .contact-copy .actions {
  margin-top: 1.5rem;
  justify-content: start;
}

.staging-home .contact-list div {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .staging-home .ha-icon-row {
    grid-template-columns: 1fr;
  }

  .staging-home .process-layout {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .staging-home .process-card,
  .staging-home .process-one,
  .staging-home .process-two,
  .staging-home .process-three {
    position: static;
    width: 100%;
    min-height: 220px;
    clip-path: none;
  }

  .staging-home .ha-structure-grid,
  .staging-home .ha-contact-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 20px 1.2rem;
    border-bottom: 1px solid var(--color-line);
    background: white;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.45rem 0;
  }

  .hero .content {
    min-height: 540px;
    padding: 5rem 0;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .feature,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100% - 28px, 1120px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 4rem 0;
  }

  .hero .content {
    min-height: 500px;
  }

  .actions .button {
    width: 100%;
  }

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