:root {
  --black: #0d0d0d;
  --white: #f5f2eb;
  --orange: #ff6a1a;
  --muted: #90857b;
  --gray: #171717;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gutter: clamp(40px, 6vw, 80px);
  --section-space: clamp(6rem, 12vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 106, 26, 0.12), transparent 24%),
    linear-gradient(180deg, #0d0d0d 0%, #101010 100%);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

nav,
main,
footer {
  position: relative;
  z-index: 1;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-inline: var(--gutter);
  margin-inline: auto;
  border-bottom: none;
}

main {
  width: 100%;
}

section {
  width: 100%;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--gutter);
}

section + section,
.page-hero + section {
  padding-top: 0;
}

section > * {
  width: min(100%, 1240px);
  margin-inline: auto;
}

footer {
  width: 100%;
}

.logo,
.nav-links a,
.link-card {
  text-decoration: none;
}

.logo-image {
  display: block;
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.nav-links a.is-active {
  color: var(--white);
}

#hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: clamp(6rem, 12vw, 10rem);
  padding-bottom: clamp(6rem, 12vw, 10rem);
  padding-inline: var(--gutter);
}

.page-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: var(--section-space);
  padding-inline: var(--gutter);
}

.page-links {
  width: 100%;
}

.hero-tag,
.section-label {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
.project-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  margin-top: 1.5rem;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-desc {
  max-width: 50ch;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-intro {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  text-wrap: balance;
}

.projects-grid,
.services-grid,
.links-grid,
.simple-grid {
  display: grid;
  gap: clamp(2rem, 3vw, 2.5rem);
  width: 100%;
}

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

.project-card,
.service-card,
.link-card,
.content-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card {
  padding: clamp(2rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.content-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.content-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.project-card:hover,
.service-card:hover,
.link-card:hover,
.content-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.project-media {
  height: 300px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card-clean {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}

.project-card-clean .project-media {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
}

.project-card-clean:hover .project-media img {
  transform: scale(1.04);
}

.project-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  padding-top: 1rem;
}

.project-media-one {
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.15), transparent 35%),
    linear-gradient(145deg, #28150f, #5f2612 48%, #140d0a);
}

.project-media-two {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #f0ece6, #d1b9a2 35%, #ff6a1a);
}

.project-media-three {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 106, 26, 0.55), transparent 18%),
    linear-gradient(140deg, #0e0e0e, #232323 48%, #0a0a0a);
}

.project-media-four {
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.12), rgba(255, 255, 255, 0.03) 42%),
    linear-gradient(160deg, #161616, #2a2a2a 48%, #111111);
}

.project-media-five {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #201814, #9f4a1d 60%, #2f160d);
}

.project-media-six {
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.16), transparent 38%),
    linear-gradient(135deg, #171717, #292929 52%, #101010);
}

.project-content {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.project-title {
  font-size: 1.4rem;
  line-height: 1.2;
}

.project-desc {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.service-card {
  padding: 2rem;
  text-align: left;
  transition: all 0.2s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

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

.contact-featured {
  width: 100%;
  padding-bottom: 2rem;
}

.contact-email-box {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  transition: all 0.3s ease;
}

.contact-email-box:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
}

.huge-email {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.2s ease;
}

.huge-email:hover {
  color: var(--orange);
}

.contact-subtext {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 55ch;
  margin-inline: auto;
}

.contact-grid-1x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.contact-card-minimal {
  padding: clamp(2.5rem, 4vw, 3.5rem) 2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-card-minimal:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  transform: translateY(-8px);
}

.contact-card-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 600;
}

.contact-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.contact-card-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.link-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 3vw, 2.5rem);
  width: 100%;
}

.credential-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  transition: all 0.2s ease;
}

.credential-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.credential-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.credential-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.service-item {
  display: flex;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 2.5rem;
  transition: all 0.2s ease;
  align-items: flex-start;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.service-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  min-width: 50px;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.service-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.process-section {
  width: 100%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.process-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.process-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.testimonials-section {
  width: 100%;
}

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

.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: clamp(2rem, 3vw, 2.5rem);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: grid;
  gap: 0.3rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}

.insights-section {
  width: 100%;
}

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

.insight-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s ease;
}

.insight-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.insight-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.insight-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.insight-card small {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-section {
  width: 100%;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.faq-item summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
}

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

.faq-item summary::before {
  content: "+";
  display: inline-block;
  margin-right: 1rem;
  color: var(--orange);
  font-weight: 700;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.final-cta {
  width: 100%;
}

.cta-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 106, 26, 0.08);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 30ch;
}

.cta-content p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: rgba(255, 106, 26, 0.85);
  transform: translateY(-2px);
}

.team-section {
  width: 100%;
}

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

.team-member {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  transition: all 0.2s ease;
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.member-avatar {
  width: 100%;
  height: 320px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: block;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.18), rgba(255, 255, 255, 0.04));
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.member-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.member-role {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.blog-section {
  width: 100%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.blog-grid.single-view {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-inline: auto;
}

.back-to-blog:hover {
  opacity: 0.8;
  padding-left: 5px;
  transition: all 0.2s ease;
}

.blog-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.blog-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-category {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.blog-link:hover {
  color: var(--orange);
}

.blog-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 106, 26, 0.08);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  width: 100%;
}

.blog-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  max-width: 35ch;
  margin: 0;
}

.blog-cta p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 500px;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--orange);
}

.newsletter-form button {
  padding: 0.8rem 1.8rem;
  background: var(--orange);
  color: var(--black);
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: rgba(255, 106, 26, 0.85);
  transform: translateY(-2px);
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--white);
}

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

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

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 2rem;
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.link-card > div {
  display: grid;
  gap: 0.5rem;
}

.contact-card-kicker {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-value {
  font-size: 0.95rem;
  color: var(--white);
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.content-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: clamp(2rem, 3vw, 2.5rem);
  transition: all 0.2s ease;
}

.content-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.content-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.015);
  padding-inline: clamp(1.5rem, 6vw, 5rem);
  margin-inline: auto;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.footer-top {
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  display: grid;
  gap: 1rem;
}

.footer-right {
  justify-items: end;
  text-align: right;
}

.footer-kicker {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  max-width: 34ch;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--orange);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom > * {
  min-width: 0;
}

.footer-copy,
.footer-meta {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-meta:hover {
  color: var(--orange);
}

.footer-legal {
  display: flex;
  gap: 2.5rem;
}

.footer-brand {
  display: none;
}

.footer-bottom {
  align-items: center;
}


@media (max-width: 980px) {
  .projects-grid,
  .services-grid,
  .links-grid,
  .simple-grid.two-col,
  .credentials-grid,
  .testimonials-grid,
  .insights-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-right {
    padding-top: 0;
  }

  .huge-email {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  nav,
  section,
  footer {
    width: min(100%, 100%);
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 4.5rem;
  }

  nav {
    position: sticky;
    top: 0;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links {
    display: flex;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .projects-grid,
  .services-grid,
  .services-list,
  .links-grid,
  .simple-grid.two-col,
  .credentials-grid,
  .testimonials-grid,
  .insights-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-item {
    padding: 1.5rem;
    gap: 1rem;
  }

  .service-number {
    font-size: 1rem;
    opacity: 0.5;
  }

  .project-media {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: auto;
  }

  .site-footer {
    padding-bottom: 4rem;
  }

  .footer-top {
    gap: 3rem;
  }

  .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-meta {
    font-size: 0.65rem;
  }
}

/* Legal Documents */
.legal-document {
  max-width: 800px;
  margin-inline: auto;
  padding-bottom: var(--section-space);
}

.legal-document h2 {
  font-size: 1.8rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.legal-document h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.legal-document p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
}

.legal-document ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
  color: var(--muted);
}

.legal-document li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legal-document h2 {
    font-size: 1.5rem;
  }
}
