/* ============================================================
   TRUEFORM CREATIVE — Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Fonts --- */
/* UPDATE the src path below to match your exact filename once you add it to assets/fonts/ */
@font-face {
  font-family: 'Hyperwave One';
  src: url('../fonts/hyperwave-one.woff2') format('woff2'),
       url('../fonts/hyperwave-one.woff') format('woff'),
       url('../fonts/hyperwave-one.ttf') format('truetype'),
       url('../fonts/hyperwave-one.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  --color-primary:  #0D1B2A;
  --color-accent:   #e67e22;
  --color-white:    #ffffff;
  --color-surface:  #f5f6f7;
  --color-text:     #1a1a1a;
  --color-muted:    #6b7280;
  --color-border:   #e2e4e7;
  --color-accent-dark: #cf6d17;

  --font-base: 'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);

  --nav-height: 76px;
  --max-width: 1200px;

  --transition-fast: 150ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 300ms ease-out;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-base);
}
.skip-link:focus { top: 1rem; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 700; }
p { line-height: 1.7; }

.text-accent { color: var(--color-accent); }
.text-white  { color: var(--color-white); }
.text-muted  { color: var(--color-muted); }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

.section { padding: 5rem 0; }
.section--dark { background: var(--color-primary); }
.section--surface { background: var(--color-surface); }
.section--accent { background: var(--color-accent); }

/* --- Homepage: navy background sections --- */
#home-services,
#home-work {
  background: var(--color-primary);
}
#home-services {
  padding-top: 7.5rem;
}
#home-services .section-header h2,
#home-work .section-header h2 {
  color: var(--color-white);
}
#home-services .section-header .text-muted,
#home-work .section-header .text-muted {
  color: rgba(255,255,255,0.65);
}
#home-work .work-card {
  border: 1px solid rgba(255,255,255,0.1);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.section--dark .section-label { color: var(--color-accent); }
.section--accent .section-label { color: var(--color-white); opacity: 0.85; }

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  min-height: 48px;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 4px 20px rgba(230,126,34,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-dark:hover {
  background: #162230;
  transform: translateY(-1px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.nav.scrolled {
  background: var(--color-primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav .container {
  height: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .nav__actions { display: none; }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}
.nav__hamburger:hover { background: rgba(255,255,255,0.1); }
.nav__hamburger:focus-visible { outline: 2px solid var(--color-accent); }

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav__mobile-link:hover,
.nav__mobile-link.active {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}
.nav__mobile .btn-primary {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

/* --- Hero --- */
.hero {
  min-height: 100dvh;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.68);
  z-index: 1;
}

.hero__bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,126,34,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 2;
}
.hero__bg-shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,126,34,0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--color-primary));
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}
.hero__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.hero__title {
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__title-staytrue {
  font-family: 'Hyperwave One', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 0.85;
  color: inherit;
  display: block;
  margin-bottom: -0.1em;
}

.hero__title .hero__title-line1 {
  display: block;
  color: var(--color-white);
}

.hero__title .hero__title-line2 {
  display: block;
  color: var(--color-white);
}
@media (min-width: 400px) {
  .hero__title-staytrue,
  .hero__title .hero__title-line2 {
    white-space: nowrap;
  }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 3;
}
@media (min-height: 600px) {
  .hero__scroll { display: flex; }
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--color-primary);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
}
.page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.page-hero__title {
  color: var(--color-white);
  margin-bottom: 1rem;
}
.page-hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 560px;
}

/* --- Stats Strip --- */
.stats-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stat__label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* --- Work / Portfolio Cards --- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

.work-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--color-primary);
  aspect-ratio: 4/3;
  display: block;
}
.work-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out, filter 400ms ease-out;
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 1;
}
.work-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.375rem;
}
.work-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
}
.work-card:hover .work-card__image {
  transform: scale(1.04);
}

/* --- Work Page: Portfolio Carousel ---
   Manual scroll-snap carousel with prev/next arrows. No auto-play — the
   arrows (and JS) wrap around to the start/end when you go past either
   edge, so it still reads as an endless loop, just user-driven. */
.work-carousel-section {
  width: 100%;
  padding: 2rem 0 4rem;
  overflow: hidden;
}
.work-carousel {
  position: relative;
}

.work-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.work-carousel__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .work-carousel__track { padding: 0 3rem; }
}
@media (min-width: 1024px) {
  .work-carousel__track { padding: 0 4rem; }
}

.work-carousel__slide {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 380px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  scroll-snap-align: center;
}
@media (min-width: 640px) {
  .work-carousel__slide { width: 340px; }
}
@media (min-width: 1024px) {
  .work-carousel__slide { width: 400px; }
}
.work-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease-out;
}
.work-carousel__slide .work-placeholder {
  width: 100%;
  height: 100%;
}
.work-carousel__slide:hover img {
  transform: scale(1.04);
}

.work-carousel__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-card);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.work-carousel__arrow:hover {
  background: var(--color-accent);
  transform: translateY(-50%) scale(1.06);
}
.work-carousel__arrow svg { width: 22px; height: 22px; }
.work-carousel__arrow--prev { left: 0.5rem; }
.work-carousel__arrow--next { right: 0.5rem; }
@media (min-width: 1024px) {
  .work-carousel__arrow { display: flex; }
  .work-carousel__arrow--prev { left: 1.5rem; }
  .work-carousel__arrow--next { right: 1.5rem; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-accent);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner__title {
  color: var(--color-white);
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .nowrap-above-mobile { white-space: nowrap; }
}
.cta-banner__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.cta-banner .btn-dark { background: var(--color-primary); }
.cta-banner .btn-dark:hover { background: #162230; }

/* --- Services Page: Hero --- */
.services-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .services-hero { flex-direction: row; }
}
.services-hero__panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 3rem 2.25rem;
  background:
    radial-gradient(circle at 22% 10%, rgba(230,126,34,0.16) 0%, transparent 45%),
    var(--color-primary);
}
@media (min-width: 768px) {
  .services-hero__panel { padding: calc(var(--nav-height) + 3rem) 3.5rem 4rem 2rem; }
}
@media (min-width: 1024px) {
  .services-hero__panel { padding-left: 3rem; padding-right: 4rem; }
}
.services-hero__media {
  position: relative;
  width: 100%;
  height: 45vh;
  flex-shrink: 0;
}
.services-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.5) 50%, rgba(13,27,42,0.25) 100%);
}
@media (min-width: 768px) {
  .services-hero__media {
    width: 42%;
    height: auto;
  }
  .services-hero__media::after {
    background:
      linear-gradient(to top, rgba(13,27,42,0.65) 0%, transparent 20%),
      linear-gradient(270deg, transparent 15%, rgba(13,27,42,0.55) 60%, var(--color-primary) 100%);
  }
}
.services-hero__title {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3.4vw, 2.75rem);
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .services-hero__title { white-space: nowrap; }
}
.services-hero__nowrap {
  white-space: nowrap;
}
.services-hero__script {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
}
.services-hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.services-hero__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}
@media (min-width: 640px) {
  .services-hero__features { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services-hero__features { grid-template-columns: repeat(4, 1fr); }
}
.services-hero__feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(230,126,34,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.services-hero__panel .services-hero__feature-icon {
  margin-left: auto;
  margin-right: auto;
}
.services-hero__feature-icon svg { width: 26px; height: 26px; }
.services-hero__feature-title {
  color: var(--color-white);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.services-hero__feature-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Services Page: Detail sections --- */
#service-details {
  background: var(--color-primary);
}
#service-details .service-section__title {
  color: var(--color-white);
}
#service-details .service-section__desc {
  color: rgba(255,255,255,0.65);
}
#service-details .deliverable {
  color: rgba(255,255,255,0.85);
}
#service-details .service-section__visual {
  background: rgba(255,255,255,0.04);
}

.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}
#service-details .service-section {
  border-bottom-color: rgba(255,255,255,0.08);
}
.service-section:last-of-type { border-bottom: none; }

.service-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-section__inner {
    grid-template-columns: 1fr 1fr;
  }
  .service-section__inner--reverse {
    direction: rtl;
  }
  .service-section__inner--reverse > * {
    direction: ltr;
  }
}

.service-section__icon {
  width: 64px;
  height: 64px;
  background: rgba(230,126,34,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}
.service-section__icon svg { width: 32px; height: 32px; }

.service-section__title {
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.service-section__desc {
  color: var(--color-muted);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.deliverable {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
}
.deliverable__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.service-section__visual {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-story { grid-template-columns: 1fr 1fr; }
}

.about-story__image {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-story__image svg {
  width: 96px;
  height: 96px;
  color: var(--color-accent);
  opacity: 0.2;
}

.about-story__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.about-story__title {
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.about-story__text {
  color: var(--color-muted);
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(230,126,34,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-accent);
}
.value-card__icon svg { width: 28px; height: 28px; }
.value-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.value-card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  text-align: center;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.team-card__photo svg {
  width: 48px;
  height: 48px;
  color: var(--color-muted);
  opacity: 0.4;
}
.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* --- Contact Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.contact-form-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-label .required {
  color: var(--color-accent);
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-height: 48px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626;
}

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

.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  font-weight: 500;
  display: none;
}
.form-error.visible { display: block; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-accent);
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 64px;
  height: 64px;
  background: rgba(230,126,34,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-accent);
}
.form-success__icon svg { width: 32px; height: 32px; }
.form-success__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.form-success__text { color: var(--color-muted); }

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: var(--color-white);
}
.contact-info-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(230,126,34,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}
.contact-info-item__icon svg { width: 20px; height: 20px; }
.contact-info-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.contact-info-item__value {
  font-size: 0.9375rem;
  color: var(--color-white);
  font-weight: 500;
}
.contact-info-item__value a {
  color: var(--color-white);
  transition: color var(--transition-fast);
}
.contact-info-item__value a:hover { color: var(--color-accent); }

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.social-link svg { width: 20px; height: 20px; }

.calendly-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-hover);
}
.calendly-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.625rem;
}
.calendly-card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.calendly-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.calendly-card--whatsapp {
  border-color: var(--color-primary);
}
.calendly-card--whatsapp .btn-primary {
  background: var(--color-primary);
}
.calendly-card--whatsapp .btn-primary:hover {
  background: #162230;
  box-shadow: none;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__nav-link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.footer__nav-link:hover { color: var(--color-white); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll-line { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

/* Honeypot field for spam filtering: hidden from sighted AND assistive-tech
   users (aria-hidden handles the latter), unlike .visually-hidden which is
   deliberately screen-reader-visible. Off-screen positioning (not display:none)
   so simple bots that skip non-rendered fields still fill it in. */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Placeholder Visuals for work cards --- */
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.04em;
  user-select: none;
}

/* Placeholder color variants */
.ph-1 { background: linear-gradient(135deg, #0D1B2A 0%, #1e3a5f 100%); }
.ph-2 { background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%); }
.ph-3 { background: linear-gradient(135deg, #cf6d17 0%, #e67e22 100%); }
.ph-4 { background: linear-gradient(135deg, #0D1B2A 0%, #2a3f55 100%); }
.ph-5 { background: linear-gradient(135deg, #2d5a8e 0%, #0D1B2A 100%); }
.ph-6 { background: linear-gradient(135deg, #e67e22 0%, #cf6d17 100%); }
.ph-7 { background: linear-gradient(135deg, #1a2e40 0%, #0D1B2A 100%); }
.ph-8 { background: linear-gradient(135deg, #0D1B2A 0%, #e67e22 80%); }
.ph-9 { background: linear-gradient(135deg, #2a3f55 0%, #1e3a5f 100%); }
