/* =========================
   APPROACH PAGE STYLES
   Philosophy section - continuation of hero with subtle variation
   ========================= */

/* =========================
   PHILOSOPHY SECTION
   Swapped layout: supporting text left, statement right
   ========================= */
.approach-philosophy {
  padding: 64px 0 80px;
}

.approach-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.approach-philosophy-left {
  order: 2;
}

/* Horizontal accent line - top left of supporting text */
.approach-philosophy-accent-top {
  width: 150px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  margin-bottom: 32px;
}

.approach-philosophy-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 420px;
}

.approach-philosophy-right {
  order: 1;
}

.approach-philosophy-statement {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-transform: lowercase;
}

/* Horizontal accent line - bottom right of statement */
.approach-philosophy-accent-bottom {
  width: 180px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  margin-top: 48px;
  margin-left: auto;
}

/* =========================
   PROCESS SECTION
   Asymmetrical two-column with image dominant
   ========================= */
.approach-process {
  padding: 0;
  background: #ffffff;
}

.approach-process-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.approach-process-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.approach-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.approach-process-image:hover img {
  transform: scale(1.02);
}

/* White panel wrapper for process content */
.approach-process-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
}

.approach-process-content {
  background: rgba(255, 255, 255, 0.5);
  padding: 48px 32px;
  width: 100%;
}

.approach-process-label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.approach-process-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-transform: lowercase;
  margin-bottom: 48px;
}

.approach-process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.approach-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.approach-step:nth-child(1) { transition-delay: 0s; }
.approach-step:nth-child(2) { transition-delay: 0.1s; }
.approach-step:nth-child(3) { transition-delay: 0.2s; }
.approach-step:nth-child(4) { transition-delay: 0.3s; }
.approach-step:nth-child(5) { transition-delay: 0.4s; }

.approach-step-num {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  opacity: 1;
  line-height: 1;
  min-width: 52px;
}

.approach-step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.approach-step-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--foreground);
  text-transform: lowercase;
}

.approach-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* =========================
   WHY IT MATTERS SECTION
   Featured editorial carousel - premium and horizontal
   ========================= */
.approach-matters {
  padding: 100px 0 120px;
  background: var(--background);
}

.approach-matters-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header: Label + Heading */
.approach-matters-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-matters-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-matters-label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.approach-matters-heading {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-transform: lowercase;
  max-width: 560px;
  margin: 0 auto;
}

/* Carousel wrapper - wide and editorial */
.approach-matters-carousel-wrap {
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
}

.approach-matters-carousel-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel Container */
.approach-carousel {
  position: relative;
  background: #ffffff;
  padding: 0;
}

/* Carousel Header with counter and arrows */
.approach-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(199, 103, 52, 0.15);
}

.approach-carousel-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.approach-carousel-current {
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
}

.approach-carousel-sep {
  color: var(--muted-foreground);
  opacity: 0.4;
}

.approach-carousel-total {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.approach-carousel-track {
  position: relative;
  min-height: 280px;
}

.approach-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.approach-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Slide inner container */
.approach-slide-inner {
  padding: 48px 32px 56px;
}

/* Category label */
.approach-slide-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(199, 103, 52, 0.3);
}

.approach-slide-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-transform: lowercase;
  margin-bottom: 24px;
}

.approach-slide-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted-foreground);
  max-width: 600px;
}

/* Carousel Controls */
.approach-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid rgba(199, 103, 52, 0.1);
}

/* Arrow Navigation */
.approach-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(199, 103, 52, 0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.approach-carousel-arrow:hover {
  border-color: var(--accent);
  background: rgba(199, 103, 52, 0.05);
}

.approach-carousel-arrow span {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.approach-carousel-arrow:hover span {
  opacity: 1;
}

.approach-carousel-dots {
  display: flex;
  gap: 12px;
}

.approach-carousel-dot {
  width: 32px;
  height: 2px;
  background: rgba(199, 103, 52, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.approach-carousel-dot:hover {
  background: rgba(199, 103, 52, 0.4);
}

.approach-carousel-dot.active {
  background: var(--accent);
  width: 48px;
}

/* =========================
   WORKING TOGETHER SECTION
   Quiet architectural checklist before contact
   ========================= */
.approach-together {
  padding: 100px 0 80px;
  background: rgba(255, 255, 255, 0.5);
}

.approach-together-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.approach-together-left {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-together-left.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-together-label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.approach-together-accent {
  width: 64px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  margin-bottom: 28px;
}

.approach-together-heading {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-transform: lowercase;
  margin-bottom: 24px;
}

.approach-together-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 400px;
}

/* Editorial image in lower-left - wide architectural crop */
.approach-together-image {
  margin-top: 24px;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
}

.approach-together-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.approach-together-image:hover img {
  transform: scale(1.02);
}

.approach-together-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
}

.approach-together-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Designed vertical list */
.approach-together-list {
  display: flex;
  flex-direction: column;
}

.approach-together-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  transition: transform 0.3s ease;
}

.approach-together-item:first-child {
  padding-top: 0;
}

.approach-together-item:hover {
  transform: translateX(4px);
}

.approach-together-num {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  min-width: 32px;
  line-height: 1.3;
}

.approach-together-item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.approach-together-item-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--foreground);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.approach-together-item-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Horizontal divider between items */
.approach-together-divider {
  height: 1px;
  background: rgba(199, 103, 52, 0.15);
  width: 100%;
}

/* =========================
   TABLET (min-width: 768px)
   ========================= */
@media (min-width: 768px) {
  .approach-philosophy {
    padding: 80px 0 100px;
  }
  
  .approach-philosophy-grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
  }
  
  .approach-philosophy-left {
    order: 1;
    padding-top: 24px;
  }
  
  .approach-philosophy-right {
    order: 2;
  }
  
  .approach-philosophy-accent-top {
    width: 180px;
    margin-bottom: 36px;
  }
  
  .approach-philosophy-accent-bottom {
    width: 210px;
    margin-top: 56px;
  }
  
  .approach-philosophy-statement {
    font-size: 32px;
  }
  
  .approach-philosophy-text {
    font-size: 15px;
  }
  
  /* Process Section - Tablet */
  .approach-process-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .approach-process-image {
    aspect-ratio: auto;
    min-height: 600px;
  }
  
  .approach-process-panel {
    padding: 32px;
  }
  
  .approach-process-content {
    padding: 56px 48px;
  }
  
  .approach-process-title {
    font-size: 32px;
    margin-bottom: 56px;
  }
  
  .approach-step-num {
    font-size: 44px;
    font-weight: 400;
    min-width: 60px;
  }
  
  .approach-step-name {
    font-size: 17px;
  }
  
  .approach-step-desc {
    font-size: 14px;
  }
  
  /* Process Steps - more spacing */
  .approach-process-steps {
    gap: 40px;
  }
  
  /* Why It Matters Section - Tablet */
  .approach-matters {
    padding: 120px 0 140px;
  }
  
  .approach-matters-header {
    margin-bottom: 64px;
  }
  
  .approach-matters-heading {
    font-size: 34px;
    max-width: 640px;
  }
  
  .approach-matters-carousel-wrap {
    max-width: 85%;
  }
  
  .approach-carousel-header {
    padding: 28px 48px;
  }
  
  .approach-carousel-current {
    font-size: 22px;
  }
  
  .approach-carousel-track {
    min-height: 300px;
  }
  
  .approach-slide-inner {
    padding: 64px 48px 72px;
  }
  
  .approach-slide-category {
    font-size: 11px;
    margin-bottom: 24px;
  }
  
  .approach-slide-title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  
  .approach-slide-text {
    font-size: 16px;
  }
  
  .approach-carousel-controls {
    padding: 28px 48px;
  }
  
  /* Working Together Section - Tablet */
  .approach-together {
    padding: 100px 0 80px;
  }
  
  .approach-together-grid {
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: start;
  }
  
  .approach-together-right {
    padding-top: 48px;
  }
  
  .approach-together-heading {
    font-size: 32px;
  }
  
  .approach-together-intro {
    font-size: 16px;
  }
  
  .approach-together-item {
    padding: 28px 0;
    gap: 28px;
  }
  
  .approach-together-num {
    font-size: 20px;
    min-width: 36px;
  }
  
  .approach-together-item-title {
    font-size: 18px;
  }
  
  .approach-together-item-desc {
    font-size: 15px;
  }
  
  .approach-together-image {
    margin-top: 24px;
  }
}

/* =========================
   DESKTOP (min-width: 1024px)
   ========================= */
@media (min-width: 1024px) {
  .approach-philosophy {
    padding: 100px 0 120px;
  }
  
  .approach-philosophy-grid {
    gap: 80px;
  }
  
  .approach-philosophy-left {
    padding-top: 32px;
  }
  
  .approach-philosophy-accent-top {
    width: 200px;
    margin-bottom: 40px;
  }
  
  .approach-philosophy-accent-bottom {
    width: 240px;
    margin-top: 64px;
  }
  
  .approach-philosophy-statement {
    font-size: 40px;
  }
  
  .approach-philosophy-text {
    font-size: 16px;
    max-width: 380px;
  }
  
  /* Process Section - Desktop */
  .approach-process-grid {
    grid-template-columns: 55% 45%;
  }
  
  .approach-process-image {
    min-height: 700px;
  }
  
  .approach-process-panel {
    padding: 48px;
  }
  
  .approach-process-content {
    padding: 64px 56px;
  }
  
  .approach-process-title {
    font-size: 36px;
  }
  
  .approach-step-num {
    font-size: 52px;
    font-weight: 400;
    min-width: 68px;
  }
  
  .approach-step-name {
    font-size: 18px;
  }
  
  /* Process Steps - more spacing */
  .approach-process-steps {
    gap: 48px;
  }
  
  /* Why It Matters Section - Desktop */
  .approach-matters {
    padding: 140px 0 160px;
  }
  
  .approach-matters-header {
    margin-bottom: 72px;
  }
  
  .approach-matters-heading {
    font-size: 40px;
    max-width: 720px;
  }
  
  .approach-matters-carousel-wrap {
    max-width: 80%;
  }
  
  .approach-carousel-header {
    padding: 32px 56px;
  }
  
  .approach-carousel-counter {
    font-size: 16px;
  }
  
  .approach-carousel-current {
    font-size: 26px;
  }
  
  .approach-carousel-track {
    min-height: 320px;
  }
  
  .approach-slide-inner {
    padding: 72px 56px 80px;
  }
  
  .approach-slide-title {
    font-size: 34px;
    margin-bottom: 32px;
  }
  
  .approach-slide-text {
    font-size: 17px;
    max-width: 640px;
  }
  
  .approach-carousel-controls {
    padding: 32px 56px;
  }
  
  .approach-carousel-arrow {
    width: 44px;
    height: 44px;
  }
  
  /* Working Together Section - Desktop */
  .approach-together {
    padding: 120px 0 100px;
  }
  
  .approach-together-grid {
    gap: 100px;
  }
  
  .approach-together-right {
    padding-top: 56px;
  }
  
  .approach-together-heading {
    font-size: 38px;
  }
  
  .approach-together-item {
    padding: 32px 0;
    gap: 32px;
  }
  
  .approach-together-num {
    font-size: 22px;
    min-width: 40px;
  }
  
  .approach-together-item-title {
    font-size: 19px;
  }
  
  .approach-together-image {
    margin-top: 24px;
  }
}

/* =========================
   XL DESKTOP (min-width: 1280px)
   ========================= */
@media (min-width: 1280px) {
  .approach-philosophy {
    padding: 120px 0 140px;
  }
  
  .approach-philosophy-grid {
    gap: 100px;
  }
  
  .approach-philosophy-left {
    padding-top: 40px;
  }
  
  .approach-philosophy-accent-top {
    width: 220px;
  }
  
  .approach-philosophy-accent-bottom {
    width: 260px;
  }
  
  .approach-philosophy-statement {
    font-size: 48px;
  }
  
  .approach-philosophy-text {
    font-size: 17px;
    max-width: 420px;
  }
  
  /* Process Section - XL Desktop */
  .approach-process-image {
    min-height: 800px;
  }
  
  .approach-process-panel {
    padding: 56px;
  }
  
  .approach-process-content {
    padding: 72px 64px;
  }
  
  .approach-process-title {
    font-size: 40px;
    margin-bottom: 64px;
  }
  
  .approach-step-num {
    font-size: 60px;
    font-weight: 400;
    min-width: 76px;
  }
  
  .approach-step-name {
    font-size: 20px;
  }
  
  .approach-step-desc {
    font-size: 15px;
  }
  
  /* Process Steps - more spacing */
  .approach-process-steps {
    gap: 52px;
  }
  
  /* Why It Matters Section - XL Desktop */
  .approach-matters {
    padding: 160px 0 180px;
  }
  
  .approach-matters-header {
    margin-bottom: 80px;
  }
  
  .approach-matters-heading {
    font-size: 46px;
    max-width: 800px;
  }
  
  .approach-matters-carousel-wrap {
    max-width: 75%;
  }
  
  .approach-carousel-header {
    padding: 36px 64px;
  }
  
  .approach-carousel-current {
    font-size: 30px;
  }
  
  .approach-carousel-track {
    min-height: 340px;
  }
  
  .approach-slide-inner {
    padding: 80px 64px 88px;
  }
  
  .approach-slide-category {
    font-size: 12px;
    margin-bottom: 28px;
  }
  
  .approach-slide-title {
    font-size: 38px;
    margin-bottom: 36px;
  }
  
  .approach-slide-text {
    font-size: 18px;
    max-width: 680px;
    line-height: 1.9;
  }
  
  .approach-carousel-controls {
    padding: 36px 64px;
    gap: 24px;
  }
  
  .approach-carousel-arrow {
    width: 48px;
    height: 48px;
  }
  
  .approach-carousel-dot {
    width: 36px;
  }
  
  .approach-carousel-dot.active {
    width: 56px;
  }
  
  /* Working Together Section - XL Desktop */
  .approach-together {
    padding: 140px 0 120px;
  }
  
  .approach-together-grid {
    gap: 120px;
  }
  
  .approach-together-right {
    padding-top: 64px;
  }
  
  .approach-together-accent {
    width: 80px;
  }
  
  .approach-together-heading {
    font-size: 42px;
  }
  
  .approach-together-intro {
    font-size: 17px;
  }
  
  .approach-together-item {
    padding: 36px 0;
    gap: 36px;
  }
  
  .approach-together-num {
    font-size: 24px;
    min-width: 44px;
  }
  
  .approach-together-item-title {
    font-size: 20px;
  }
  
  .approach-together-item-desc {
    font-size: 16px;
  }
  
  .approach-together-image {
    margin-top: 24px;
  }
}

/* =========================
   2XL DESKTOP (min-width: 1536px)
   ========================= */
@media (min-width: 1536px) {
  .approach-philosophy-statement {
    font-size: 56px;
  }
  
  /* Process Section - 2XL Desktop */
  .approach-step-num {
    font-size: 64px;
    min-width: 80px;
  }
  
  .approach-process-steps {
    gap: 56px;
  }
  
  /* Why It Matters Section - 2XL Desktop */
  .approach-matters {
    padding: 180px 0 200px;
  }
  
  .approach-matters-header {
    margin-bottom: 88px;
  }
  
  .approach-matters-heading {
    font-size: 52px;
  }
  
  .approach-matters-carousel-wrap {
    max-width: 70%;
  }
  
  .approach-carousel-header {
    padding: 40px 72px;
  }
  
  .approach-carousel-current {
    font-size: 34px;
  }
  
  .approach-slide-inner {
    padding: 88px 72px 96px;
  }
  
  .approach-slide-title {
    font-size: 42px;
  }
  
  .approach-slide-text {
    font-size: 19px;
  }
  
  .approach-carousel-controls {
    padding: 40px 72px;
  }
  
  /* Working Together Section - 2XL Desktop */
  .approach-together {
    padding: 160px 0 140px;
  }
  
  .approach-together-heading {
    font-size: 48px;
  }
  
  .approach-together-item {
    padding: 40px 0;
    gap: 40px;
  }
  
  .approach-together-num {
    font-size: 26px;
  }
  
  .approach-together-item-title {
    font-size: 22px;
  }
}
