/*
  Theme Name: Jattu Wood
  Theme URI: https://jattuwood.com/jattuwood-theme/
  Description: Jattu Wood is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
  Author: Aminah
  Author URI: https://jattuwood.com/
  Version: 1.0.0
  Stable tag: 3.4.5
  Requires at least: 6.0
  Tested up to: 6.8
  Requires PHP: 7.4
  License: GNU General Public License v3 or later.
  Text Domain: jattuwood
  Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --bg: #EFE7DA;
  --bg-dark: #E4D9C8;
  --bg-deeper: #D9CBB4;
  --theme: #B29079;
  --theme-dark: #8E6E57;
  --theme-light: #C9A98E;
  --text: #2C2018;
  --text-mid: #5A4535;
  --text-light: #8E7460;
  --white: #FAF6F1;
  --white-pure: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', serif;
  --sans: 'Jost', sans-serif;
  --radius: 4px;
  --trans: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--sans);
}

input,
textarea,
select {
  font-family: var(--sans);
}

/* ============================================================
   UTILITY
   ============================================================ */


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container.narrow {
  max-width: 900px;
}

.section-label {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 16px;
}

.section-label.centered {
  display: block;
  text-align: center;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}

.section-title.centered {
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--theme-dark);
}

.body-copy {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--trans);
}

.btn-primary:hover {
  background: var(--theme-dark);
  transform: translateY(-2px);
}

.btn-primary.large {
  padding: 20px 52px;
  font-size: 0.82rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--trans);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--theme-dark);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid var(--theme);
  transition: var(--trans);
}

.btn-outline:hover {
  background: var(--theme);
  color: var(--white);
}

.btn-nav {
  background: transparent;
  color: var(--theme-dark);
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--theme);
  transition: var(--trans);
}

.btn-nav:hover {
  background: var(--theme);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: transparent;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(239, 231, 218, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 1px 24px rgba(44, 32, 24, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 70px;
  width: auto;
  cursor: pointer;
}

.logo-icon {
  font-size: 1rem;
  color: var(--theme);
}

.logo-text {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  color: var(--text);
  cursor: pointer;
}

.navbar:not(.scrolled) .logo-text {
  color: var(--white-pure);
}

.navbar:not(.scrolled) .logo-icon {
  color: var(--theme-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: var(--trans);
  position: relative;
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--theme);
  transform: scaleX(0);
  transition: var(--trans);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--theme-dark);
}

.navbar:not(.scrolled) .nav-link.active {
  color: var(--white-pure);
}

.navbar:not(.scrolled) .btn-nav {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar:not(.scrolled) .btn-nav:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: var(--trans);
}

.navbar:not(.scrolled) .hamburger span {
  background: var(--white-pure);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   PAGE SYSTEM
   ============================================================ */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
  animation: pageFadeIn 0.55s ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 12, 6, 0.35) 0%, rgba(20, 12, 6, 0.6) 60%, rgba(20, 12, 6, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white-pure);
  max-width: 820px;
  padding: 0 24px;
  animation: heroReveal 1.2s ease 0.3s both;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--theme-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-title .line {
  display: block;
}

.hero-title .italic {
  font-style: italic;
  color: #D4B99A;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 40px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% {
    top: -100%
  }

  100% {
    top: 100%
  }
}

/* ============================================================
   HOME — MARQUEE
   ============================================================ */
.marquee-band {
  background: var(--theme);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-track .dot {
  font-size: 0.5rem;
  opacity: 0.7;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============================================================
   HOME — PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.phi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.phi-text {
  padding-right: 20px;
}

.phi-text .btn-outline {
  margin-top: 10px;
}

.phi-visual {
  position: relative;
  height: 580px;
}

.phi-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.phi-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
}

.phi-img-1 {
  top: 0;
  left: 0;
  width: 75%;
  height: 70%;
  box-shadow: 20px 20px 60px rgba(44, 32, 24, 0.15);
}

.phi-img-2 {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 50%;
  box-shadow: 20px 20px 60px rgba(44, 32, 24, 0.15);
}

.phi-badge {
  position: absolute;
  top: 52%;
  left: 10%;
  background: var(--theme);
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
}

.badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}

.badge-label {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================================
   HOME — SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--bg-dark);
}

.services .section-title {
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-row {
  display: grid;
  gap: 2px;
}

.services-row:first-child {
  grid-template-columns: repeat(3, 1fr);
}

.services-row:last-child {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--bg);
  padding: 50px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--theme-light);
  opacity: 0.5;
}

.service-card:hover {
  background: var(--theme);
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-card:hover .service-icon {
  color: var(--white);
}

.service-icon {
  font-size: 1.4rem;
  color: var(--theme);
  margin-bottom: 24px;
  transition: var(--trans);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 14px;
  transition: var(--trans);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  transition: var(--trans);
}

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--white);
  width: 0;
  transition: var(--trans);
}

.service-card:hover .service-hover-line {
  width: 100%;
}

/* ============================================================
   HOME — FEATURED PROJECT
   ============================================================ */
.featured {
  padding: 100px 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.featured-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  width: 100%;
  padding: 0 40px;
}

.fh-left .section-title {
  margin-bottom: 0;
}

.projects-band {
  display: flex;
  width: 100%;
  height: 600px;
}

.project-col {
  flex: 1 1 25%;
  max-width: 25%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-col:hover {
  flex: 1.5 1 35%;
  max-width: 35%;
}

.project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.project-col:hover .project-bg {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.55);
  background: linear-gradient(to top, rgba(20, 25, 35, 0.75) 0%, rgba(30, 41, 59, 0.45) 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
}

.project-col:hover .project-overlay {
  opacity: 0.7;
}

.project-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.project-title {
  color: #ffffff;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
}

.testimonials-slider {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  min-height: 160px;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
}

.testimonial-author {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-deeper);
  transition: var(--trans);
}

.dot-btn.active {
  background: var(--theme);
  transform: scale(1.4);
}

/* ============================================================
   HOME — CTA BAND
   ============================================================ */
.cta-band {
  background: var(--text);
  padding: 100px 40px;
  text-align: center;
}

.cta-band-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 40px;
}

.cta-band-inner h2 em {
  font-style: italic;
  color: var(--theme-light);
}

/* ============================================================
   PAGE HERO (ABOUT, shared)
   ============================================================ */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 6, 0.8) 0%, rgba(20, 12, 6, 0.2) 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white-pure);
}

.page-hero-title em {
  font-style: italic;
  color: var(--theme-light);
}

.about-year-stamp {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  z-index: 2;
  user-select: none;
}

/* ============================================================
   ABOUT — INTRO
   ============================================================ */
.about-intro {
  padding: 90px 40px;
  text-align: center;
  border-bottom: 1px solid var(--bg-deeper);
}

.large-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ============================================================
   ABOUT — STORY
   ============================================================ */
.about-story {
  padding: 100px 40px;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-col-text .btn-outline {
  margin-top: 12px;
}

.about-col-img {
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 30px 30px 80px rgba(44, 32, 24, 0.12);
}

/* ============================================================
   ABOUT — VALUES
   ============================================================ */
.values-section {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.values-section .section-title {
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 40px 24px;
  border-top: 2px solid var(--theme);
}

.value-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--theme);
  margin-bottom: 20px;
}

.value-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   ABOUT — TEAM
   ============================================================ */
.team-section {
  padding: 100px 40px;
}

.team-section .section-title {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
  filter: grayscale(20%);
  transition: var(--trans);
}

.team-card:hover .team-photo {
  filter: grayscale(0%);
}

.team-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.team-card span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme);
}

/* ============================================================
   ABOUT — WORKSHOP STATS
   ============================================================ */
.workshop-section {
  position: relative;
}

.workshop-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.workshop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 6, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop-stats {
  display: flex;
  gap: 80px;
}

.ws-stat {
  text-align: center;
  color: var(--white-pure);
}

.ws-n {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--theme-light);
}

.ws-l {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   FOUNDER PAGE
   ============================================================ */
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 100vh;
}

.founder-split.reversed {
  grid-template-columns: 1.1fr 1fr;
}

.founder-split.reversed .founder-left {
  order: 2;
  background: var(--bg);
}

.founder-split.reversed .founder-right {
  order: 1;
  background: var(--bg-dark);
}

.founder-left {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.founder-portrait-wrap {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.founder-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 30px 30px 90px rgba(44, 32, 24, 0.2);
}

.founder-quote-card {
  position: absolute;
  bottom: 80px;
  left: 40px;
  right: 40px;
  background: var(--theme);
  padding: 28px 32px;
  color: var(--white);
}

.founder-quote-card p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.founder-right {
  background: var(--bg);
  padding: 100px 80px 100px;
  overflow-y: auto;
}

.founder-right-inner {
  max-width: 580px;
}

.founder-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 12px;
}

.founder-title-line {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--bg-deeper);
}

.founder-bio-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 22px;
}

.founder-timeline {
  margin-top: 60px;
  border-top: 1px solid var(--bg-deeper);
  padding-top: 48px;
}

.tl-item {
  display: flex;
  gap: 32px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-deeper);
}

.tl-year {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--theme);
  min-width: 50px;
}

.tl-event {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
}

/* ============================================================
   FOUNDER — PHILOSOPHY DEEP
   ============================================================ */
.philosophy-deep {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.philosophy-deep .section-title {
  margin-bottom: 60px;
}

.phil-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.phil-card {
  background: var(--bg);
  padding: 50px 40px;
  position: relative;
}

.phil-card-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--bg-deeper);
  line-height: 1;
  margin-bottom: 20px;
}

.phil-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--theme-dark);
}

.phil-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* ============================================================
   FOUNDER — AWARDS
   ============================================================ */
.awards-section {
  padding: 80px 40px 120px;
}

.awards-list {
  max-width: 800px;
  margin: 0 auto;
}

.award-row {
  display: flex;
  gap: 48px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--bg-deeper);
  transition: var(--trans);
}

.award-row:hover {
  padding-left: 16px;
}

.award-year {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--theme);
  min-width: 44px;
}

.award-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-subheader {
  padding: 100px 40px 60px;
}

.projects-page-title-inline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}

.projects-page-title-inline em {
  font-style: italic;
  color: var(--theme-dark);
}

.projects-intro {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.projects-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  color: var(--text-mid);
  border: 1px solid var(--bg-deeper);
  background: transparent;
  transition: var(--trans);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}

/* ============================================================
   PROJECTS SHOWCASE GRID (Homepage Styled)
   ============================================================ */
.projects-showcase {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-item-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  pointer-events: none;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.project-title {
  color: #ffffff;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin: 0;
  transition: transform 0.5s ease;
}

.project-item:hover .project-title {
  transform: translateY(-15px);
}

.project-status-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--theme-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

.project-item .project-meta {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
}

.project-item:hover .project-meta {
  color: var(--theme-light);
}

.project-process {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.project-process .section-title {
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 32px;
}

.process-step:first-child {
  padding-left: 0;
}

.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--theme);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

.process-arrow {
  font-size: 1.4rem;
  color: var(--theme-light);
  padding-top: 10px;
  flex-shrink: 0;
}

/* ============================================================
   PROJECT DETAILS PAGE (Premium Minimalist)
   ============================================================ */
.pd-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--text);
}

.pd-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.pd-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(20, 25, 35, 0.9) 0%, transparent 100%);
  z-index: 1;
}

.pd-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
}

.pd-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 300;
  color: var(--white-pure);
  line-height: 1;
  margin-bottom: 20px;
  max-width: 900px;
}

/* Info Bar */
.pd-info-bar {
  background: var(--bg-dark);
  padding: 40px 0;
  border-bottom: 1px solid var(--bg-deeper);
}

.pd-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.pd-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-info-label {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme);
}

.pd-info-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text);
}

/* Narrative */
.pd-narrative {
  padding: 120px 0;
}

.pd-narrative-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pd-intro {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 60px;
  text-align: center;
}

.pd-description {
  column-count: 2;
  column-gap: 60px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

/* Gallery */
.pd-gallery {
  padding-bottom: 120px;
}

.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.pd-gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-dark);
}

.pd-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pd-gal-item:hover img {
  transform: scale(1.04);
}

/* Specific Staggered Layouts */
.pd-gal-item.span-12 {
  grid-column: span 12;
  height: 700px;
}

.pd-gal-item.span-8 {
  grid-column: span 8;
  height: 500px;
}

.pd-gal-item.span-4 {
  grid-column: span 4;
  height: 500px;
}

.pd-gal-item.span-6 {
  grid-column: span 6;
  height: 450px;
}

/* Footer Nav */
.pd-footer-nav {
  padding: 120px 0;
  background: var(--bg-dark);
  text-align: center;
  border-top: 1px solid var(--bg-deeper);
}

.pd-next-label {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 32px;
  display: block;
  opacity: 0.6;
}

.pd-next-link {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--text);
  transition: var(--trans);
  text-decoration: none;
  line-height: 1;
}

.pd-next-link:hover {
  color: var(--theme-dark);
  transform: translateY(-8px);
}

.pd-next-link em {
  font-style: italic;
  color: var(--theme);
}

/* Responsive Overrides for Project Detail */
@media (max-width: 1100px) {
  .pd-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .pd-hero {
    height: 70vh;
  }

  .pd-gal-item.span-12 {
    height: 500px;
  }

  .pd-gal-item.span-8,
  .pd-gal-item.span-4 {
    grid-column: span 6;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .pd-hero {
    height: 60vh;
    min-height: 450px;
  }

  .pd-hero-content {
    padding-bottom: 60px;
  }

  .pd-hero-title {
    font-size: 3.5rem;
  }

  .pd-info-bar {
    padding: 40px 20px;
  }

  .pd-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pd-narrative {
    padding: 80px 20px;
  }

  .pd-intro {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .pd-description {
    column-count: 1;
    font-size: 1rem;
  }

  .pd-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .pd-gal-item {
    grid-column: span 1 !important;
    height: 300px !important;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
}

.contact-left {
  background: var(--text);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-left-inner {
  padding: 0 60px;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white-pure);
  margin-bottom: 20px;
  margin-top: 12px;
}

.contact-title em {
  font-style: italic;
  color: var(--theme-light);
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 52px;
  max-width: 360px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 50px;
  flex: 1;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-icon {
  color: var(--theme);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 5px;
  font-weight: 400;
}

.contact-detail-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.6;
}

.map {
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-right {
  background: var(--bg);
  padding: 100px 80px 80px;
  overflow-y: auto;
}

.contact-form-wrap {
  max-width: 560px;
}

.form-heading {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-dark);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 300;
  transition: var(--trans);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--theme);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.budget-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.budget-btn {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--bg-deeper);
  color: var(--text-mid);
  background: var(--bg-dark);
  transition: var(--trans);
}

.budget-btn.selected,
.budget-btn:hover {
  background: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--theme);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  transition: var(--trans);
  align-self: flex-start;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--theme-dark);
  transform: translateY(-2px);
}

.form-success {
  text-align: center;
  padding: 80px 40px;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--theme);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-image {
  height: 50px;
  width: auto;
}

.footer-logo .logo-icon {
  color: var(--theme);
}

.footer-logo .logo-text {
  color: var(--white-pure);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 10px;
  transition: var(--trans);
}

.footer-col a:hover {
  color: var(--white-pure);
}

.footer-bottom {
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  text-align: left;
}

.footer-credits {
  text-align: right;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ============================================================
   ABOUT — WHAT WE DO
   ============================================================ */
.what-we-do {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.wwd-card {
  background: var(--bg);
  padding: 60px 50px;
  border-radius: var(--radius);
  transition: var(--trans);
  border: 1px solid transparent;
}

.wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(44, 32, 24, 0.1);
  border-color: var(--theme-light);
}

.wwd-icon {
  font-size: 2rem;
  color: var(--theme);
  margin-bottom: 24px;
  display: block;
}

.wwd-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.2;
  color: var(--text);
}

.wwd-card p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width:1100px) {

  .phi-grid,
  .about-cols {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .regions-band {
    height: 520px;
  }

  .region-title {
    font-size: 1.15rem;
  }

  .phi-visual {
    height: 400px;
  }

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

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

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

  .founder-split {
    grid-template-columns: 1fr;
  }

  .founder-split.reversed .founder-left,
  .founder-split.reversed .founder-right {
    order: 0;
  }

  .founder-split.reversed .founder-left {
    background: var(--bg-dark);
  }

  .founder-split.reversed .founder-right {
    background: var(--bg);
  }

  .founder-portrait-wrap {
    position: static;
    height: 500px;
    padding: 40px;
  }

  .founder-right {
    padding: 60px 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width:768px) {
  .navbar {
    padding: 18px 20px;
  }

  .navbar.scrolled {
    padding: 14px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: #d1c0a5;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding: 60px 40px;
    transition: var(--trans);
    box-shadow: -20px 0 60px rgba(44, 32, 24, 0.15);
    z-index: 999;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 32, 24, 0.45);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--trans);
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .philosophy {
    padding: 70px 20px;
  }

  .phi-grid {
    gap: 40px;
  }

  .phi-visual {
    height: 340px;
  }

  .phi-img-1 {
    width: 80%;
    height: 68%;
  }

  .phi-img-2 {
    width: 60%;
    height: 52%;
  }

  .services {
    padding: 70px 0;
  }

  .services .container {
    padding: 0 20px;
  }

  .services-row:first-child {
    grid-template-columns: 1fr;
  }

  .services-row:last-child {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 36px 28px;
  }

  .featured {
    padding: 70px 0;
  }

  .featured-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .regions-band {
    flex-direction: column;
    height: auto;
  }

  .region-col,
  .region-col:hover {
    flex: none !important;
    width: 100%;
    height: 220px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .region-col:last-child {
    border-bottom: none;
  }

  .region-content {
    flex-direction: row;
    gap: 20px;
  }

  .region-icon {
    width: 44px;
    height: 44px;
  }

  .region-col:hover .region-icon {
    transform: translateX(6px);
  }

  .region-title {
    writing-mode: horizontal-tb;
    font-size: 1.35rem;
  }

  .testimonials {
    padding: 70px 0;
  }

  .testimonials .container {
    padding: 0 20px;
  }

  .cta-band {
    padding: 70px 20px;
  }

  .page-hero {
    height: 55vh;
    min-height: 380px;
  }

  .page-hero-content {
    padding: 36px 20px;
  }

  .about-year-stamp {
    display: none;
  }

  .about-intro {
    padding: 60px 20px;
  }

  .about-story {
    padding: 60px 20px;
  }

  .about-cols {
    gap: 40px;
  }

  .about-col-img {
    height: 340px;
  }

  .values-section {
    padding: 70px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .value-item {
    padding: 28px 16px;
  }

  .team-section {
    padding: 70px 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .workshop-stats {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .founder-split {
    padding-top: 70px;
  }

  .founder-portrait-wrap {
    height: 420px;
    padding: 24px;
  }

  .founder-quote-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px 22px;
  }

  .founder-right {
    padding: 50px 20px 60px;
  }

  .founder-right-inner {
    max-width: 100%;
  }

  .founder-name {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }

  .philosophy-deep {
    padding: 70px 20px;
  }

  .phil-cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .awards-section {
    padding: 50px 20px 70px;
  }

  .award-row {
    gap: 24px;
  }

  .projects-header {
    padding: 110px 20px 40px;
  }



  .showcase-row,
  .projects-band {
    flex-direction: column;
    height: auto;
  }

  .project-item,
  .project-item:hover,
  .project-col,
  .project-col:hover {
    flex: none !important;
    width: 100%;
    max-width: none !important;
    height: 320px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .project-item .project-title,
  .project-col .project-title {
    writing-mode: horizontal-tb;
    font-size: 1.8rem;
  }

  .project-item:hover .project-title,
  .project-col:hover .project-title {
    transform: none !important;
  }

  .project-item-content {
    gap: 12px;
  }

  .project-status-tag {
    top: 20px;
    right: 20px;
  }

  .project-process {
    padding: 70px 20px;
  }

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

  .process-arrow {
    display: none;
  }

  .process-step {
    padding: 0;
  }

  .contact-left {
    padding: 90px 0 50px;
  }

  .contact-left-inner {
    padding: 0 20px;
  }

  .contact-right {
    padding: 50px 20px 60px;
  }

  .footer-inner {
    padding: 0 20px 40px;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-copyright,
  .footer-credits {
    text-align: center;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .what-we-do {
    padding: 70px 20px;
  }

  .wwd-card {
    padding: 40px 28px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width:480px) {
  .hero-title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .services-row:first-child {
    grid-template-columns: 1fr;
  }

  .services-row:last-child {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .project-item.tall {
    grid-row: span 1;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .workshop-stats {
    gap: 28px;
  }

  .ws-n {
    font-size: 2.5rem;
  }

  .contact-desc {
    max-width: 100%;
  }
}