/*
  Laher Info Tech — shared design system
  Dark, editorial aesthetic used across index.html and all inner pages.
*/

:root {
  --primary: #ffde59;
  --secondary: #ff914d;
  --tertiary: #c75b12;
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #f7f5f0;
  --white-muted: rgba(247, 245, 240, 0.62);
  --line: rgba(255, 145, 77, 0.4);
  --line-soft: rgba(255, 145, 77, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.page {
  position: relative;
  isolation: isolate;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(255, 222, 89, 0.28), transparent 58%),
    radial-gradient(ellipse 45% 50% at 100% 20%, rgba(255, 145, 77, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 45% at 0% 75%, rgba(199, 91, 18, 0.14), transparent 50%),
    radial-gradient(ellipse 55% 40% at 70% 100%, rgba(255, 222, 89, 0.08), transparent 55%),
    linear-gradient(165deg, #070707 0%, #12100c 40%, #0c0a08 70%, #070707 100%);
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 145, 77, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 145, 77, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black, transparent 75%);
  opacity: 0.55;
  animation: gridDrift 32s linear infinite;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 222, 89, 0.12), transparent 28%),
    radial-gradient(circle at 80% 60%, rgba(255, 145, 77, 0.14), transparent 32%),
    radial-gradient(circle at 45% 85%, rgba(199, 91, 18, 0.1), transparent 30%);
  filter: blur(40px);
  animation: atmosphereDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.glow {
  position: absolute;
  width: min(560px, 75vw);
  height: min(560px, 75vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.22), rgba(255, 145, 77, 0.08) 45%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: blur(12px);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */

.site-header {
  padding-top: 1.5rem;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  position: relative;
  z-index: 40;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  z-index: 2;
}

.mark:hover {
  color: inherit;
}

.mark-logo {
  display: block;
  height: 3rem;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.mark-text {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.15rem + 1px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  justify-self: end;
}

.btn-nav {
  min-height: 2.4rem;
  padding: 0 1rem;
  font-size: calc(0.72rem + 1px);
  letter-spacing: 0.1em;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem 0.15rem;
  justify-content: center;
  align-items: center;
  justify-self: center;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 0.45rem 0.65rem;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  border-bottom-color: var(--line);
}

.nav .nav-more {
  display: none;
}

.status-chip {
  font-size: calc(0.72rem + 1px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
}

/* Hero (home) */

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 10vh, 6rem);
}

.hero-inner {
  max-width: 46rem;
  width: 100%;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(calc(2.75rem + 1px), 9vw, calc(5.25rem + 1px));
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero h1 span {
  display: block;
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 45%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Page hero (inner pages) */

.page-hero {
  position: relative;
  text-align: center;
  padding: clamp(4.5rem, 12vh, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vh, 4rem);
}

.breadcrumb {
  font-size: calc(0.72rem + 1px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.15s forwards;
}

.breadcrumb a {
  color: var(--white-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  margin: 0 0.5rem;
  color: var(--tertiary);
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(calc(2.5rem + 1px), 7vw, calc(4rem + 1px));
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.page-hero h1 span {
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 45%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero .lead {
  margin-bottom: 0;
}

.rule {
  width: 4.5rem;
  height: 1px;
  margin: 1.75rem auto;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}

.eyebrow {
  display: inline-block;
  font-size: calc(0.75rem + 1px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.25s forwards;
}

.lead {
  font-size: clamp(calc(1.05rem + 1px), 2.4vw, calc(1.25rem + 1px));
  font-weight: 300;
  line-height: 1.65;
  color: var(--white-muted);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.lead strong {
  color: var(--white);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.85s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.45rem;
  font-family: inherit;
  font-size: calc(0.8rem + 1px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-primary:hover {
  color: var(--black);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffe97a, var(--primary));
}

.btn-ghost {
  color: var(--primary);
  border-color: var(--line);
  background: transparent;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  color: var(--white);
}

.meta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}

.meta-item {
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.45);
}

.meta-item em {
  font-style: normal;
  color: var(--primary);
  font-weight: 500;
}

/* Sections */

section {
  padding: clamp(4rem, 10vh, 6.5rem) 0;
  border-top: 1px solid var(--line-soft);
}

.page-hero + section {
  border-top: none;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: calc(0.72rem + 1px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(calc(2rem + 1px), 5vw, calc(3rem + 1px));
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.section-head p {
  font-size: calc(1.05rem + 1px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--white-muted);
}

.about-copy {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-copy p {
  font-size: calc(1.05rem + 1px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-muted);
  margin-bottom: 1.25rem;
}

.about-copy p strong {
  color: var(--white);
  font-weight: 500;
}

.principles {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 2rem;
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
}

.principle {
  flex: 1 1 200px;
  max-width: 240px;
}

.principle dt {
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.principle dd {
  font-size: calc(0.95rem + 1px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-muted);
}

/* Services */

.services {
  display: grid;
  gap: 2.5rem;
}

.service {
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.75rem 2rem;
  grid-template-columns: minmax(0, 12rem) 1fr;
  align-items: start;
}

.service:first-child {
  border-top: none;
  padding-top: 0;
}

.service h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.65rem + 1px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.service p {
  font-size: calc(1rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
}

.offerings {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
}

.offerings span {
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.5);
}

.offerings span::before {
  content: "·";
  margin-right: 1.75rem;
  color: var(--tertiary);
}

.offerings span:first-child::before {
  content: none;
  margin: 0;
}

/* Work / portfolio GIFs */

.work-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.work-item {
  text-align: left;
}

.work-item-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0.85rem;
  border: 1px solid var(--line-soft);
  background: var(--black-soft);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  color: inherit;
  font: inherit;
}

.work-item-media:hover,
.work-item-media:focus-visible {
  border-color: var(--secondary);
  outline: none;
}

.work-item-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.work-item-media:hover img,
.work-item-media:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.work-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.45));
  pointer-events: none;
  transition: background 0.25s ease;
}

.work-play svg {
  width: 3.25rem;
  height: 3.25rem;
  color: var(--primary);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease, color 0.25s ease;
}

.work-item-media:hover .work-play,
.work-item-media:focus-visible .work-play {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.62));
}

.work-item-media:hover .work-play svg,
.work-item-media:focus-visible .work-play svg {
  transform: scale(1.06);
  color: var(--secondary);
}

.work-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.35rem + 1px);
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.work-item p {
  font-size: calc(0.92rem + 1px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white-muted);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.8);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: var(--secondary);
  color: var(--white);
}

.lightbox-media {
  width: 100%;
  max-height: calc(100vh - 7rem);
  object-fit: contain;
  border: 1px solid var(--line-soft);
  background: #000;
}

.lightbox-caption {
  text-align: center;
}

.lightbox-caption strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.35rem + 1px);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.lightbox-caption span {
  font-size: calc(0.9rem + 1px);
  font-weight: 300;
  color: var(--white-muted);
}

body.lightbox-open {
  overflow: hidden;
}

/* Billing SaaS showcase */

.billing-showcase {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 1rem;
}

.billing-copy .tag {
  display: inline-block;
  font-size: calc(0.72rem + 1px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.billing-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(2rem + 1px);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.billing-copy .tagline {
  font-size: calc(0.9rem + 1px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.billing-copy > p {
  font-size: calc(1.02rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 1.25rem;
}

.billing-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.billing-offer {
  margin-top: 1.25rem;
  font-size: calc(0.9rem + 1px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-muted);
}

.billing-visual img {
  display: block;
  width: 100%;
  border: 1px solid var(--line-soft);
  background: var(--black-soft);
}

/* Achievements */

.achieve-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.achieve-visual img {
  display: block;
  width: 100%;
  border: 1px solid var(--line-soft);
}

.achieve-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(calc(1.8rem + 1px), 4vw, calc(2.4rem + 1px));
  font-weight: 600;
  margin-bottom: 1rem;
}

.achieve-copy > p {
  font-size: calc(1.02rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 2rem;
}

.achieve-copy .stats {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.testimonial blockquote {
  font-size: calc(1rem + 1px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--white-muted);
  margin-bottom: 1.1rem;
}

.testimonial strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.25rem + 1px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.testimonial span {
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Resources / helpful tools */

.resource-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.resource h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.45rem + 1px);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource p {
  font-size: calc(0.98rem + 1px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-muted);
  margin-bottom: 1.1rem;
}

/* Internship teaser */

.internship-teaser {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.internship-teaser p {
  font-size: calc(1.05rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 1.25rem;
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(calc(2.25rem + 1px), 5vw, calc(3.25rem + 1px));
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.45rem;
}

.stat span {
  font-size: calc(0.75rem + 1px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.5);
}

/* Products */

.products {
  display: grid;
  gap: 2rem;
}

.product-feature {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1rem;
}

.product-feature h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(2rem + 1px);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-feature .tag {
  font-size: calc(0.72rem + 1px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-feature p {
  font-size: calc(1.05rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  gap: 1.75rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-grid h4 {
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.product-grid p {
  font-size: calc(0.95rem + 1px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-muted);
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  text-align: center;
}

.values span {
  font-size: calc(0.8rem + 1px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.team {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.team h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.45rem + 1px);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.team p {
  font-size: calc(0.78rem + 1px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Process steps (Getting Started) */

.steps {
  display: grid;
  gap: 0;
  max-width: 46rem;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.4rem 1.75rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line-soft);
}

.step:first-child {
  border-top: none;
  padding-top: 0;
}

.step:last-child {
  padding-bottom: 0;
}

.step-index {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(2.25rem + 1px);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.4rem + 1px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-body p {
  font-size: calc(0.98rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 0.6rem;
}

.step-body p:last-child {
  margin-bottom: 0;
}

.step-body p strong {
  color: var(--white);
  font-weight: 500;
}

.step-body ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0.5rem 0 0.75rem;
}

.step-body ul li {
  font-size: calc(0.95rem + 1px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-muted);
  padding-left: 1.1rem;
  position: relative;
}

.step-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.step-body ul li strong {
  color: var(--white);
  font-weight: 500;
}

/* Case studies */

.case-studies {
  display: grid;
  gap: 3.5rem;
}

.case-study {
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-soft);
}

.case-study:first-child {
  border-top: none;
  padding-top: 0;
}

.case-tag {
  display: inline-block;
  font-size: calc(0.72rem + 1px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--line);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.1rem;
}

.case-study h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(calc(1.6rem + 1px), 3vw, calc(2.1rem + 1px));
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.case-detail-grid {
  display: grid;
  gap: 1.5rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.case-detail dt {
  font-size: calc(0.72rem + 1px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.case-detail dd {
  font-size: calc(0.98rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
}

/* FAQ */

.faq {
  display: grid;
  gap: 0;
  max-width: 44rem;
  margin: 0 auto;
}

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

.faq details:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: calc(1.35rem + 1px);
  font-weight: 600;
  color: var(--white);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--secondary);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin-top: 0.85rem;
  font-size: calc(0.98rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  padding-right: 2rem;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-map {
  grid-column: 1 / -1;
  width: 100%;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 270px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(calc(2rem + 1px), 5vw, calc(3rem + 1px));
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-copy > p {
  font-size: calc(1.05rem + 1px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.contact-list {
  display: grid;
  gap: 1.15rem;
}

.contact-list dt {
  font-size: calc(0.72rem + 1px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-list dd {
  font-size: calc(1rem + 1px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--white-muted);
}

.contact-list a {
  color: var(--white);
}

.contact-list a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
}

.socials a {
  font-size: calc(0.75rem + 1px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  border-bottom: 1px solid transparent;
}

.socials a:hover {
  color: var(--primary);
  border-bottom-color: var(--line);
}

/* Footer */

.feature-list {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: calc(0.95rem + 1px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--white-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--secondary);
}

.feature-list li strong {
  color: var(--white);
  font-weight: 500;
}

.offerings a {
  color: inherit;
}

.offerings a:hover span {
  color: var(--primary);
}

.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: calc(0.78rem + 1px);
  color: rgba(247, 245, 240, 0.4);
}

.site-footer a {
  color: var(--secondary);
}

.site-footer a:hover {
  color: var(--primary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 64px 64px, 64px 64px;
  }
}

@keyframes atmosphereDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .atmosphere::after {
    filter: none;
  }

  .site-header,
  .breadcrumb,
  .eyebrow,
  .hero h1,
  .page-hero h1,
  .rule,
  .lead,
  .actions,
  .meta {
    opacity: 1;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .header-actions .btn-nav {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--line-soft);
    backdrop-filter: blur(10px);
    justify-self: stretch;
  }

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

  .nav .nav-more {
    display: block;
  }

  .nav a {
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--line-soft);
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team,
  .contact-grid,
  .billing-showcase,
  .resource-grid,
  .testimonial-grid,
  .achieve-grid {
    grid-template-columns: 1fr;
  }

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

  .step-index {
    font-size: calc(1.5rem + 1px);
  }
}

@media (max-width: 560px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
