/* Clash Display is self-hosted from the official Fontshare distribution. */
@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

/* The navigation and body fonts are stored locally to avoid a render-blocking
   request to Google Fonts during the first page load. */
@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/Comfortaa-Latin-500-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  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+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  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+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  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+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  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+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  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+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-black: #111111;
  --color-footer: #212121;
  --color-white: #ffffff;
  --color-purple: #c7adff;
  --color-purple-deep: #7e3dff;
  --color-lavender: #f4efff;
  --font-display: "Clash Display", "Clash Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", Arial, sans-serif;
  --font-nav: "Comfortaa", "Poppins", Arial, sans-serif;
  --page-width: 1200px;
  --section-pad: 100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--color-purple-deep);
  outline-offset: 4px;
}

/* ─── Max-width container ─── */
.container {
  max-width: var(--page-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Sections that delegate their inner flex/grid layout to .container */
.work .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.svc-process .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-services .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-story .container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-beliefs .container {
  display: flex;
  align-items: center;
}

.contact-page-hero .container {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: none;
}

.work-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.work-list .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.site-header {
  min-height: 94px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000000;
  color: var(--color-white);
}

.logo,
.footer-logo {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.logo span {
  color: var(--color-purple);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-nav);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav > a:not(.button) {
  padding: 12px 0;
}

.site-nav .active {
  color: var(--color-purple);
  border-bottom: 4px solid var(--color-purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 59px;
  padding: 16px 24px;
  border: 3px solid #000000;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-purple);
  color: #000000;
}

.button-secondary {
  background: var(--color-white);
  color: #000000;
}

.button-small {
  min-height: 57px;
  border-width: 2px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 669px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
}

.hero-highlight {
  position: relative;
  display: inline;
  white-space: nowrap;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  inset: 0.05em -0.06em;
  background: var(--color-purple);
  transform: rotate(1deg);
  z-index: -1;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  overflow-wrap: normal;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker {
  min-height: 82px;
  padding: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.ticker p {
  min-width: max-content;
  margin: 0;
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.24;
  white-space: nowrap;
}

.ticker span + span::before {
  content: "•";
  margin: 0 28px;
  color: var(--color-purple);
}

.ticker-scroll p {
  animation: ticker-scroll 18s linear infinite;
}

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

.ticker-names p {
  animation: ticker-scroll 14s linear infinite;
}

.work {
  padding: 120px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  background: var(--color-black);
  color: var(--color-white);
}

.work-intro {
  margin: 0;
  text-align: center;
}

.work h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
}

.work h2 span {
  color: var(--color-purple);
}

.work-intro p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.project-showcase {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
}

.project-col {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  min-width: 1px;
  position: relative;
}

.project-screenshot {
  flex: 1 0 0;
  min-width: 1px;
  aspect-ratio: 2524 / 2628;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  /* force compositing so border-radius clips the abs-pos img in all browsers */
  isolation: isolate;
}

.project-screenshot picture,
.about-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-screenshot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.project-screenshot:hover .project-overlay {
  opacity: 1;
}

.project-overlay-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin: 0;
  padding: 0 16px;
}

.project-overlay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--color-purple);
  border: 2px solid var(--color-black);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
}

.project-overlay-soon {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-purple);
  border: 2px solid var(--color-purple);
  border-radius: 4px;
  padding: 16px 24px;
}

.about {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: calc(var(--page-width) + 200px);
  margin: 0 auto;
  padding: 100px;
  background: var(--color-white);
}

.about-media {
  flex-shrink: 0;
  width: clamp(380px, 35vw, 504px);
  aspect-ratio: 504 / 508;
}

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

.about-copy {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.about-copy h2,
.about-copy p {
  position: relative;
  margin: 0;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 5.6vw, 80px);
  line-height: 0.95;
  /* Own stacking context so the .hero-highlight::before (z-index:-1) paints
     above the section's white background instead of behind it. */
  z-index: 1;
}

.about-kicker {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.3vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.about-copy p:not(.about-kicker) {
  max-width: 680px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
}

/* Blank-line spacing between the two body paragraphs, per the design. */
.about-copy p:not(.about-kicker) + p:not(.about-kicker) {
  margin-top: 8px;
}

.services {
  min-height: 1112px;
  padding: var(--section-pad);
  background: var(--color-white);
}

.services h2 {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 388px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #000000;
  border-radius: 16px;
  position: relative;
}

.service-label {
  margin: 0 0 12px;
  color: var(--color-purple-deep);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.9vw, 48px);
  line-height: 1;
  overflow-wrap: break-word;
}

.service-card h3 span {
  color: var(--color-purple-deep);
}

.service-card p:not(.service-label) {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.service-card a img {
  width: 24px;
  height: 24px;
}

.testimonial {
  position: relative;
  min-height: 602px;
  padding: 120px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-lavender);
  text-align: center;
}

.testimonial-slides {
  width: 100%;
  display: grid;
  overflow: hidden;
}

.testimonial-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  visibility: hidden;
}

.testimonial-slide.active {
  visibility: visible;
}

.profile-avatar-circle {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-circle img {
  width: 22px;
  height: 38px;
}

.stars {
  display: flex;
  gap: 8px;
  color: var(--color-purple-deep);
  font-size: 48px;
  line-height: 1;
}

.testimonial-copy {
  max-width: 750px;
}

.testimonial h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}

.testimonial-copy p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.profile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.profile img {
  width: 56px;
  height: 56px;
}

.profile p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.profile p + p {
  margin-top: 8px;
  font-weight: 400;
}

.profile-name {
  font-weight: 600;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 253px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid #000000;
  border-radius: 999px;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-prev {
  left: 49px;
}

.testimonial-next {
  right: 49px;
}

.contact {
  min-height: 608px;
  padding: 100px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.contact h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
}

.contact h2 span {
  color: var(--color-purple);
}

.contact p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.site-footer {
  padding: 24px 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--color-footer);
  color: var(--color-white);
}

.footer-logo {
  flex: 1;
  font-size: 56px;
}

.footer-logo span {
  color: var(--color-purple);
}

.footer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-links nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-nav);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.footer-contact a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--color-purple);
}

.footer-copy {
  width: 100%;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links img {
  width: 39.5px;
  height: 39.5px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  border: 2px solid #000000;
  border-radius: 999px;
  background: var(--color-purple);
  color: #000000;
  font-family: var(--font-display);
  font-size: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---- Our Services page ---- */
.svc-hero {
  position: relative;
  min-height: 669px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  background: var(--color-white);
  overflow: hidden;
}


.svc-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}

.svc-hero .button {
  position: relative;
  z-index: 1;
}

/* Process section */
.svc-process {
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--color-lavender);
}

.svc-process h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-black);
}

.process-num {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-purple-deep);
}

.process-content {
  flex: 1;
}

.process-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.process-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

/* Services list */
.svc-services {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--color-white);
}

.svc-services h2 {
  margin: 0;
  padding: 0 100px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 40px 100px;
}

.svc-item--reverse {
  flex-direction: row-reverse;
}

.svc-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-image {
  flex-shrink: 0;
  width: 608px;
  height: 456px;
  overflow: hidden;
}

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

.svc-image--peach {
  background: #ffeee1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.svc-image--peach img {
  object-fit: contain;
}

.svc-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-label {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-purple-deep);
  line-height: 1;
}

.svc-text h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.svc-text h3 span {
  color: var(--color-purple-deep);
}

.svc-meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.svc-meta-item {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  line-height: 1;
}

.svc-meta-item img {
  flex-shrink: 0;
}

.svc-pkg-card .svc-meta-item img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(90%) saturate(2300%) hue-rotate(250deg) brightness(103%);
}

.svc-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.svc-includes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-includes-label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-purple-deep);
  line-height: 1;
}

.svc-includes-cols {
  display: flex;
  gap: 4px;
}

.svc-includes-cols ul {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-includes-cols li {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  line-height: 1;
}

.svc-includes-cols li img {
  flex-shrink: 0;
}

.svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  text-align: left;
  width: 100%;
}

/* Services page CTA */
.svc-cta-section {
  min-height: 400px;
  padding: 100px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.svc-cta-text h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.svc-cta-text p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

/* ---- Website packages panel ---- */
.svc-website-wrap,
.svc-seo-wrap,
.svc-hosting-wrap {
  transition: background 0.3s ease;
}

.svc-website-wrap.is-open,
.svc-seo-wrap.is-open,
.svc-hosting-wrap.is-open {
  background: #f4f4f4;
}

.svc-website-wrap.is-open .svc-item,
.svc-seo-wrap.is-open .svc-item,
.svc-hosting-wrap.is-open .svc-item {
  padding-bottom: 0;
}

.svc-packages-toggle.is-open {
  color: var(--color-purple-deep);
}

.svc-packages-toggle.is-open .svc-cta-icon {
  transform: rotate(180deg);
}

.svc-packages-panel {
  padding: 40px 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-packages-panel[hidden] {
  display: none;
}

.svc-packages-header h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.svc-packages-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.svc-pkg-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.svc-pkg-card {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 16px;
}

.svc-pkg-card--featured {
  background: rgba(199, 173, 255, 0.2);
}

.svc-pkg-top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-pkg-top h5 + .svc-meta,
.svc-pkg-top .svc-pkg-title-row + .svc-meta {
  margin-top: 24px;
}

.svc-pkg-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.svc-pkg-badge {
  flex-shrink: 0;
  padding: 8px 12px;
  background: var(--color-purple);
  border: 2px solid var(--color-black);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.svc-pkg-card h5 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.svc-pkg-card h5 span {
  color: var(--color-purple-deep);
}

.svc-pkg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-pkg-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-pkg-section-label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-purple-deep);
  line-height: 1;
}

.svc-pkg-section > p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.svc-pkg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-pkg-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 1;
}

.svc-pkg-list li img {
  flex-shrink: 0;
}

.svc-packages-footer {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.svc-packages-footer a {
  font-weight: 700;
  text-decoration: underline;
}

.svc-pkg-dots {
  display: none;
}

/* ---- Our Work page ---- */
.work-hero {
  padding: 80px 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  background: var(--color-white);
}

.work-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.9;
}

.work-hero-sub {
  max-width: 678px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.work-list {
  padding: 0 80px 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: var(--color-white);
}

.work-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.work-item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.work-item-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.work-item-link {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── Hover states & transitions ─── */

/* Extend button transition to include filter */
.button {
  transition: transform 160ms ease, background-color 160ms ease, filter 160ms ease;
}

.button-primary:hover {
  filter: brightness(0.9);
}

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

/* Nav links */
.site-nav > a:not(.button) {
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):not(.active):hover {
  color: var(--color-purple);
}

/* Service cards */
.service-card {
  transition: background-color 0.25s ease;
  cursor: pointer;
}

.service-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.service-card:hover {
  background: var(--color-lavender);
}

.service-card a {
  transition: color 0.2s ease;
}

.service-card a:hover {
  color: var(--color-purple-deep);
}

.service-card a img {
  transition: transform 0.2s ease;
}

.service-card a:hover img {
  transform: translateX(6px);
}

/* Project cards */
.project-screenshot {
  cursor: pointer;
}

.project-overlay-btn {
  transition: filter 0.18s ease, transform 0.18s ease;
}

.project-overlay-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

/* View Packages CTA */
.svc-cta {
  transition: color 0.2s ease;
}

.svc-cta:hover {
  color: var(--color-purple-deep);
}

.svc-cta-icon {
  transition: transform 0.3s ease;
}

/* Package cards */
.svc-pkg-card {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}


/* Testimonial prev/next buttons */
.testimonial-prev,
.testimonial-next {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Footer nav */
.footer-links nav a {
  transition: color 0.2s ease;
}

.footer-links nav a:hover {
  color: var(--color-purple);
}

/* Social links */
.social-links a {
  display: inline-flex;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

/* Back to top */
.back-to-top {
  transition: opacity 200ms ease, transform 200ms ease, filter 200ms ease;
}

.back-to-top:hover {
  filter: brightness(0.88);
}

/* FAQ question */
.faq-question {
  transition: opacity 0.2s ease;
}

.faq-question:hover {
  opacity: 0.75;
}

/* Contact prefer-talk link */
.contact-prefer-talk a {
  transition: color 0.2s ease;
}

.contact-prefer-talk a:hover {
  color: var(--color-purple-deep);
  text-decoration: underline;
}

/* About team cards */
.about-team-card {
}

/* Ticker pause on hover */
.ticker-scroll:hover p {
  animation-play-state: paused;
}

/* ─── Scroll reveal ─── */

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

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

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

/* ─── Contact Page ─── */

.contact-page-hero {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 80px 100px;
}

.contact-page-left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-black);
}

.contact-highlight {
  position: relative;
  display: inline-block;
}

.contact-highlight::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0;
  height: 60%;
  background: url('assets/images/contact-highlight.svg') no-repeat center / 100% 100%;
  transform: rotate(-1.15deg);
  z-index: -1;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-item img {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
}

.contact-info-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
}

.contact-prefer-talk {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-black);
}

.contact-prefer-talk a {
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
}

.contact-page-right {
  flex: 1 0 0;
  min-width: 0;
}

.contact-form {
  border: 3px solid var(--color-black);
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
}

.contact-form-title span {
  color: var(--color-purple-deep);
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-row {
  display: flex;
  gap: 12px;
}

.contact-form-row .contact-form-field {
  flex: 1 0 0;
  min-width: 0;
}

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

.contact-form-field label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-black);
}

.contact-form-field label .required {
  color: var(--color-purple);
  margin-left: 2px;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 3px solid var(--color-black);
  border-radius: 2px;
  background: var(--color-white);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #555;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--color-purple-deep);
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('assets/icons/caret-down.svg') no-repeat center / contain;
  pointer-events: none;
}

.contact-select-wrap select {
  padding-right: 44px;
  cursor: pointer;
  color: #555;
}

.contact-select-wrap select:focus,
.contact-select-wrap select.has-value {
  color: var(--color-black);
}

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

.contact-form-submit {
  width: 100%;
}

/* Honeypot — visually and programmatically removed from the flow, but still
   present in the DOM (not display:none, which some bots skip). */
.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Invalid-field highlight */
.contact-form-field input.is-invalid,
.contact-form-field textarea.is-invalid {
  border-color: #d33333;
}

/* Submit button while a request is in flight */
.contact-form-submit.is-loading {
  opacity: 0.7;
  cursor: progress;
}

/* Success / error / in-flight status message */
.contact-form-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.contact-form-status--success {
  background: #e7f7ec;
  border: 2px solid #1f9d55;
  color: #10502a;
}

.contact-form-status--error {
  background: #fdeaea;
  border: 2px solid #d33333;
  color: #8a1f1f;
}

/* ─── FAQ ─── */

.faq {
  background: var(--color-black);
  color: var(--color-white);
  padding: 100px 80px;
}

.faq h2 {
  margin: 0 0 52px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
}

.faq h2 span {
  color: var(--color-purple);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 20px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
}

.faq-num {
  flex-shrink: 0;
  width: 50px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-purple);
  line-height: 1;
}

.faq-text {
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.faq-caret {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-caret {
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-text {
  color: var(--color-purple);
}

.faq-answer {
  padding: 16px 66px 0 66px;
}

.faq-answer p {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

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

@media (max-width: 1180px) {
  :root {
    --section-pad: 72px;
  }

  .svc-meta {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(64px, 10vw, 110px);
  }

  .project-card h3,
  .work h2,
  .services h2,
  .contact h2,
  .about-copy h2 {
    font-size: clamp(42px, 11vw, 48px);
    line-height: 0.95;
  }

  .about {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 72px 40px;
  }

  .about-media {
    width: 100%;
    max-width: 504px;
  }

  .about-copy {
    width: 100%;
    max-width: 680px;
    gap: 16px;
  }

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

  .service-card h3 {
    font-size: clamp(40px, 4.2vw, 48px);
  }

  .contact {
    padding-inline: 72px;
  }

  .svc-hero {
    padding: 72px 40px;
    min-height: auto;
  }

  .svc-hero h1 {
    font-size: clamp(60px, 10vw, 110px);
  }

  .svc-process {
    padding: 72px 40px;
  }

  .svc-process h2,
  .svc-services h2,
  .svc-cta-text h2 {
    font-size: clamp(42px, 11vw, 48px);
    line-height: 0.95;
  }

  .process-content h3 {
    font-size: clamp(32px, 5vw, 40px);
  }

  .process-num {
    font-size: 40px;
    width: 60px;
  }

  .svc-services {
    padding: 72px 0;
  }

  .svc-services h2 {
    padding-inline: 40px;
  }

  .svc-item {
    padding: 80px;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .svc-item--reverse {
    flex-direction: column;
  }

  .svc-item .svc-image {
    order: -1;
  }

  .svc-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  .svc-text h3 {
    font-size: 48px;
  }

  .svc-cta-section {
    padding-inline: 40px;
  }

  .svc-cta-text p {
    font-size: 24px;
  }

  .work-hero {
    padding: 72px 80px;
  }

  .work-hero h1 {
    font-size: 72px;
  }

  .work-list {
    padding-inline: 40px;
    gap: 60px;
  }

  .work-item-info h2 {
    font-size: 32px;
  }

  .contact-page-hero {
    padding: 60px 40px;
    gap: 32px;
  }

  .contact-page-hero .container {
    gap: 32px;
  }

  .contact-page-hero h1 {
    font-size: clamp(56px, 6.5vw, 80px);
  }

  .contact-form-title {
    font-size: 32px;
  }

  .faq {
    padding: 80px 40px;
  }

  .faq h2 {
    font-size: 56px;
  }

  .faq-text {
    font-size: 24px;
  }

  /* ── Package grid carousel — tablet ───────────────────────────────── */
  .svc-packages-panel {
    padding: 48px 0 64px;
    overflow: hidden;
  }

  .svc-packages-header,
  .svc-packages-footer {
    padding-inline: 80px;
  }

  .svc-pkg-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 80px 16px;
    scroll-padding-inline-start: 80px;
    gap: 16px;
    scrollbar-width: none;
  }

  .svc-pkg-grid::-webkit-scrollbar {
    display: none;
  }

  .svc-pkg-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .project-overlay-title {
    font-size: 32px;
  }

  /* Container responsive overrides — tablet */
  .work-list .container { gap: 60px; }
  .contact-page-hero .container { gap: 32px; }
  .about-story .container { gap: 48px; }
}

@media (max-width: 960px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    z-index: 200;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 2px solid var(--color-purple);
    border-radius: 4px;
    background: transparent;
    color: var(--color-white);
  }

  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 94px;
    left: 0;
    right: 0;
    padding: 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #000000;
    border-top: 2px solid var(--color-purple);
    border-bottom: 2px solid var(--color-purple);
    z-index: 199;
    overflow-y: auto;
    max-height: calc(100vh - 94px);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 198;
  }

  .nav-backdrop.open {
    display: block;
  }
}

@media (max-width: 760px) {
  :root {
    --section-pad: 32px;
  }

  .site-header {
    min-height: 82px;
    padding: 16px 24px;
  }

  .logo {
    font-size: 32px;
  }

  .site-nav {
    top: 82px;
    max-height: calc(100vh - 82px);
    padding: 24px;
  }

  .hero {
    min-height: 530px;
    padding: 40px 16px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 0.9;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .ticker p {
    font-size: 24px;
  }

  .work {
    padding: 80px 16px;
    gap: 40px;
  }

  .work h2 {
    font-size: 44px;
    line-height: 1;
  }

  .work-intro p {
    font-size: 24px;
  }

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

  .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
    justify-content: flex-end;
    padding-bottom: 16px;
  }

  .project-overlay-btn,
  .project-overlay-soon {
    display: none;
  }

  .project-overlay-title {
    font-size: 26px;
  }

  .project-showcase {
    flex-direction: column;
    padding: 0;
    gap: 12px;
  }

  .project-col {
    flex: none;
    width: 100%;
    overflow: hidden;
  }

  .project-screenshot {
    flex: none;
    width: 100%;
    overflow: hidden;
  }

  .about-copy h2,
  .work h2,
  .services h2,
  .contact h2,
  .service-card h3,
  .testimonial h2 {
    overflow-wrap: break-word;
  }

  .about {
    padding: 64px 24px;
  }

  .services {
    min-height: auto;
  }

  .service-card h3 {
    font-size: 40px;
  }

  .testimonial {
    padding: 80px 24px;
  }

  .testimonial h2 {
    font-size: 36px;
  }

  .testimonial-copy p,
  .profile p {
    font-size: 20px;
    line-height: 1.15;
  }

  .testimonial-prev,
  .testimonial-next {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }

  .testimonial-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
  }

  .contact {
    min-height: 560px;
    padding: 80px 24px;
  }

  .contact p {
    font-size: 24px;
    line-height: 1.1;
  }

  .svc-hero {
    padding: 64px 24px;
  }

  .svc-hero h1 {
    font-size: 52px;
  }

  .svc-process {
    padding: 64px 24px;
  }

  .svc-services {
    padding: 64px 0;
  }

  .svc-services h2 {
    padding-inline: 24px;
    font-size: 40px;
  }

  .svc-item {
    padding: 40px 24px;
    gap: 24px;
  }

  .svc-image {
    height: auto;
  }

  .svc-text h3 {
    font-size: 44px;
  }

  .svc-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .svc-includes-cols {
    flex-direction: column;
  }

  .svc-cta-section {
    padding: 80px 24px;
    min-height: auto;
  }

  .work-hero {
    padding: 64px 24px;
  }

  .work-hero h1 {
    font-size: 56px;
  }

  .work-hero-sub {
    font-size: 18px;
  }

  .work-list {
    padding: 0 24px 80px;
    gap: 48px;
  }

  .work-item-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-item-info h2 {
    font-size: 24px;
  }

  .work-item-link {
    font-size: 18px;
  }

  .site-footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-links nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-contact span {
    display: none;
  }

  .footer-copy {
    padding-top: 24px;
    font-size: 14px;
  }

  .back-to-top {
    right: 16px;
    bottom: 24px;
  }

  .contact-page-hero {
    flex-direction: column;
    padding: 40px 24px;
    gap: 40px;
  }

  .contact-page-hero h1 {
    font-size: 52px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .faq {
    padding: 60px 24px;
  }

  .faq h2 {
    font-size: 40px;
    margin-bottom: 36px;
  }

  .faq-num {
    font-size: 24px;
    width: 36px;
  }

  .faq-text {
    font-size: 20px;
  }

  .faq-answer {
    padding-left: 52px;
  }

  /* ── Package grid carousel ─────────────────────────────────────────── */
  .svc-packages-panel {
    padding: 32px 0 48px;
    overflow: hidden;
  }

  .svc-packages-header,
  .svc-packages-footer {
    padding-inline: 24px;
  }

  .svc-pkg-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 24px 16px;
    scroll-padding-inline-start: 24px;
    gap: 12px;
    scrollbar-width: none;
  }

  .svc-pkg-grid::-webkit-scrollbar {
    display: none;
  }

  .svc-pkg-card {
    flex: 0 0 78%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .svc-pkg-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
  }

  .svc-pkg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 200ms ease, transform 200ms ease;
  }

  .svc-pkg-dot--active {
    background: var(--color-purple);
    transform: scale(1.25);
  }

  /* Container responsive overrides — mobile */
  .work .container { gap: 40px; }
  .work-list .container { gap: 48px; }
  .work-hero .container { text-align: center; }
  .contact-page-hero .container { flex-direction: column; gap: 40px; }
  .about-story .container { flex-direction: column; gap: 32px; }
  .about-beliefs .container { flex-direction: column; gap: 32px; }
  .site-footer .container { flex-direction: column; align-items: flex-start; gap: 32px; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Hero */
.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 100px;
  background: var(--color-white);
  text-align: center;
}

.about-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.9;
}

.about-hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--color-black);
  white-space: nowrap;
}

/* Rotated rectangular marker bar behind "One Vision" (matches Figma). */
.about-hero h1 span::before {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  top: 0.34em;
  bottom: 0.1em;
  background: var(--color-purple);
  transform: rotate(-1.08deg);
  z-index: -1;
}

.about-hero-gallery {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.about-hero-photo {
  flex: 1 1 0;
  max-width: 422px;
  aspect-ratio: 422 / 394;
  border-radius: 2px;
  overflow: hidden;
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Names bar */
.about-names-bar {
  background: var(--color-black);
  padding: 28px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Scrolls right-to-left like the homepage ticker (names duplicated in markup
   so the -50% translate loops seamlessly). */
.about-names-bar p {
  margin: 0;
  min-width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  animation: ticker-scroll 14s linear infinite;
}

.about-founder-name {
  white-space: nowrap;
}

.about-founder-name + .about-founder-name::before {
  content: "•";
  margin: 0 16px;
  color: var(--color-purple);
}

/* Story section */
.about-story {
  display: flex;
  gap: 80px;
  padding: 100px;
  background: var(--color-lavender);
  align-items: flex-start;
}

.about-story h2 {
  flex: 0 0 480px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.about-story-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.about-story-body p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

/* Beliefs section */
.about-beliefs {
  display: flex;
  gap: 0;
  padding: 80px 100px;
  background: var(--color-black);
  color: var(--color-white);
  align-items: center;
}

.about-beliefs h2 {
  flex: 0 0 460px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  padding-right: 60px;
}

.about-beliefs h2 span {
  color: var(--color-purple);
}

.about-beliefs-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.about-belief-item {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-belief-item:nth-child(1),
.about-belief-item:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-belief-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-belief-item p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

/* Team section */
.about-team {
  padding: 100px;
  background: var(--color-white);
}

.about-team h2 {
  margin: 0 0 60px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-team-card {
  display: flex;
  flex-direction: column;
}

.about-team-photo {
  background: var(--color-lavender);
  overflow: hidden;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-team-info {
  padding: 24px 0 0;
}

.about-team-role {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-purple-deep);
}

.about-team-info h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.about-team-info p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* About page responsive overrides must follow the base page rules above. */
@media (max-width: 1180px) {
  .about-hero {
    padding: 72px 40px;
    gap: 48px;
  }

  .about-hero h1 {
    font-size: clamp(64px, 10vw, 110px);
  }

  .about-names-bar,
  .about-story,
  .about-beliefs,
  .about-team {
    padding-inline: 72px;
  }

  /* Keep the scrolling names bar edge-to-edge. */
  .about-names-bar {
    padding-inline: 0;
  }

  .about-names-bar p {
    font-size: 32px;
  }

  .about-story {
    gap: 48px;
  }

  .about-story h2,
  .about-beliefs h2 {
    flex-basis: 40%;
    font-size: 52px;
  }

  .about-beliefs h2 {
    padding-right: 40px;
  }

  .about-belief-item {
    padding: 32px;
  }

  .about-team h2 {
    font-size: 68px;
  }

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

  .about-team-photo {
    height: 420px;
  }

  /* Container overrides — about page tablet */
  .about-story .container { gap: 48px; }
}

@media (max-width: 760px) {
  .about-hero {
    gap: 32px;
    padding: 56px 24px;
  }

  .about-hero h1 {
    font-size: 52px;
  }

  .about-hero-gallery {
    flex-direction: column;
    align-items: center;
  }

  .about-hero-photo {
    flex: none;
    width: 100%;
    max-width: 422px;
  }

  /* On mobile, show only the first gallery image. */
  .about-hero-photo:not(:first-child) {
    display: none;
  }

  .about-names-bar,
  .about-story,
  .about-beliefs,
  .about-team {
    padding: 64px 24px;
  }

  .about-names-bar {
    padding: 22px 0;
  }

  .about-names-bar p {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-story,
  .about-beliefs {
    flex-direction: column;
    gap: 32px;
  }

  .about-story h2,
  .about-beliefs h2 {
    flex: none;
    padding: 0;
    font-size: 44px;
  }

  .about-story-body {
    gap: 20px;
    padding-top: 0;
  }

  .about-story-body p {
    font-size: 16px;
  }

  .about-beliefs-grid {
    width: 100%;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .about-belief-item {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-belief-item:nth-child(1),
  .about-belief-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-belief-item:last-child {
    border-bottom: 0;
  }

  .about-belief-item p {
    font-size: 26px;
  }

  .about-team h2 {
    margin-bottom: 40px;
    font-size: 48px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-team-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-team-info h3 {
    font-size: 36px;
    white-space: normal;
  }

  /* Container overrides — about page mobile */
  .about-story .container,
  .about-beliefs .container {
    flex-direction: column;
    gap: 32px;
  }
}

/* Keep the page's display type without compressing its layouts on tablet. */
@media (min-width: 761px) and (max-width: 960px) {
  .about-story,
  .about-beliefs {
    flex-direction: column;
    gap: 40px;
  }

  .about-story h2,
  .about-beliefs h2 {
    flex: none;
    padding-right: 0;
  }

  .about-beliefs-grid {
    width: 100%;
  }

  .about-team-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 32px) / 2);
    justify-self: center;
  }

  .about-team-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
