/* === LANDING PAGE === */

/* === HERO === */
.landing-hero {
  position: relative;
  min-height: clamp(640px, 90vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_192342/7839d4f3-2325-4d48-9e53-796ce989c131.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.landing-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(245, 240, 235, 0.08) 0%, rgba(196, 149, 106, 0.05) 100%);
  z-index: 2;
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 var(--pad-x);
}

.landing-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.landing-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.landing-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary--dark:hover {
  background: var(--charcoal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  border: 1.5px solid rgba(26, 26, 26, 0.25);
  border-radius: 50px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.landing-hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  padding: 16px 40px;
  font-size: 15px;
}

.landing-hero .btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* === SERVICES (3-CARD STEP GRID) === */
.landing-services {
  padding: var(--section-gap) var(--pad-x);
  background: var(--cream);
}

.landing-services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.landing-services-header {
  text-align: center;
  margin-bottom: 64px;
}

.landing-services-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.landing-services-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.landing-services-header p {
  font-size: 16px;
  color: var(--charcoal-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.landing-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.landing-step {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.landing-step-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.landing-step-visual {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid rgba(196, 149, 106, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
}

.landing-step-svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}

.landing-step h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.landing-step p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* === WHY (sidebar + checklist) === */
.landing-why {
  padding: var(--section-gap) var(--pad-x);
  background: var(--cream-warm);
}

.landing-why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.landing-why-left .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.landing-why-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.15;
}

.landing-why-left p {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.7;
  max-width: 420px;
}

.landing-why-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
}

.landing-check-circle {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4L4 7L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === PORTFOLIO (3-UP GALLERY) === */
.landing-portfolio {
  padding: var(--section-gap) var(--pad-x);
  background: var(--cream);
}

.landing-portfolio-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.landing-portfolio-header {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.landing-portfolio-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.landing-portfolio-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.landing-portfolio-header p {
  font-size: 14px;
  color: var(--warm-grey);
}

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

.landing-portfolio-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.landing-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.landing-portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.landing-portfolio-card:hover img {
  transform: scale(1.04);
}

.landing-portfolio-caption {
  padding: 16px 20px;
  font-size: 13px;
  font-style: italic;
  color: var(--warm-grey);
}

/* === STATS BAR + QUOTE === */
.landing-stats {
  background: var(--cream-warm);
  padding: 56px var(--pad-x);
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.landing-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.landing-stat {
  text-align: center;
  padding: 0 40px;
  flex: 1;
}

.landing-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.landing-stat-label {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.4;
}

.landing-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 26, 26, 0.12);
  flex-shrink: 0;
}

.landing-quote-section {
  padding: var(--section-gap) var(--pad-x);
  background: var(--cream);
  text-align: center;
}

.landing-quote-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.landing-quote-icon {
  width: 28px;
  height: 24px;
}

.landing-quote-card p {
  font-size: 19px;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.55;
  max-width: 560px;
}

.landing-quote-card cite {
  font-size: 13px;
  color: var(--warm-grey);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* === BOTTOM CTA === */
.landing-cta {
  padding: var(--section-gap) var(--pad-x);
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196, 149, 106, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.landing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.landing-cta .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.landing-cta h2 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.landing-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  line-height: 1.65;
}

.landing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-cta .btn-ghost {
  display: inline-block;
  padding: 16px 40px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.landing-cta .btn-ghost:hover {
  background: #b06a3e;
  transform: translateY(-2px);
}

.landing-cta .btn-ghost--outline {
  padding: 16px 40px;
  font-size: 15px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.landing-cta .btn-ghost--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* === FOOTER === */
.landing-footer {
  padding: 40px var(--pad-x);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.landing-footer .footer-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.landing-footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.landing-footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.landing-footer-nav a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.landing-footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .landing-step-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .landing-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .landing-portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-portfolio-grid .landing-portfolio-card:last-child {
    display: none;
  }

  .landing-stats-inner {
    flex-wrap: wrap;
    gap: 32px;
  }

  .landing-stat-divider {
    display: none;
  }

  .landing-stat {
    flex: 0 0 calc(50% - 48px);
    padding: 0 24px;
  }

  .landing-quote-card {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .landing-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .landing-portfolio-grid .landing-portfolio-card:last-child {
    display: block;
  }

  .landing-portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .landing-stats-inner {
    flex-direction: column;
    gap: 24px;
  }

  .landing-stat {
    flex: 0 0 auto;
    padding: 0;
  }

  .landing-stat-value {
    font-size: 28px;
  }

  .landing-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .landing-cta .btn-ghost,
  .landing-cta .btn-ghost--outline {
    width: 100%;
    text-align: center;
  }

  .landing-footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === RECENT WORK === */
.landing-recent-work {
  padding: var(--section-gap) var(--pad-x);
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.landing-recent-work-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.landing-recent-work-header {
  margin-bottom: 48px;
}

.landing-recent-work-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.landing-recent-work-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.landing-recent-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.landing-recent-work-card {
  border-radius: 10px;
  background: var(--cream-warm);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-recent-work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.landing-recent-work-link {
  display: block;
  color: inherit;
}

.landing-recent-work-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light-surface);
}

.landing-recent-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.landing-recent-work-card:hover .landing-recent-work-thumb img {
  transform: scale(1.04);
}

.landing-recent-work-thumb-fallback {
  aspect-ratio: 16 / 10;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.landing-recent-work-thumb-fallback .section-label {
  margin-bottom: 0;
}

.landing-recent-work-body {
  padding: 24px 24px 28px;
}

.landing-recent-work-body .section-label {
  margin-bottom: 10px;
}

.landing-recent-work-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.landing-recent-work-summary {
  font-size: 15px;
  color: var(--charcoal-mid);
  line-height: 1.6;
}

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

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