/* ── FONTS ───────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Halfre';
  src: url('../fonts/halfre.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueRoman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --cream:      #F2F4F0;
  --warm-white: #F8FAF6;
  --blush:      #D9E0D5;
  --blush-mid:  #C3CEBE;
  --dusty-rose: #7A9B82;
  --taupe:      #5C6B5E;
  --charcoal:   #2A332B;
  --gold:       #8FAF72;
  --soft-grey:  #DDE3D9;
  --font-display: 'Halfre', Georgia, serif;
  --font-body:    'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 10px; height: 10px;
  background: var(--dusty-rose);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--dusty-rose);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
a:hover ~ .cursor, button:hover ~ .cursor { width: 18px; height: 18px; }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--soft-grey);
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
}

.nav-logo { display: flex; align-items: center; gap: 1px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--charcoal); text-decoration: none;
  text-transform: uppercase; font-weight: 400;
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
  cursor: none;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }
.nav-links a:hover, .nav-links a.active-link { color: var(--dusty-rose); }

/* ── UTILITIES ───────────────────────────────────────────────────── */
.label {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--dusty-rose);
  display: block;
}
.gold-rule {
  display: block; width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 12px;
}
.btn-dark {
  display: inline-block;
  background: var(--charcoal); color: var(--warm-white);
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 18px 40px; text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: none;
}
.btn-dark:hover { background: var(--dusty-rose); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 18px 40px; text-decoration: none;
  transition: all 0.3s; cursor: none;
}
.btn-outline:hover { background: var(--charcoal); color: var(--warm-white); }

/* Fade-in animation */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── HOME PAGE ───────────────────────────────────────────────────── */
.hero {
  background: var(--blush);
  min-height: 680px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -60px; top: -80px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: rgba(195, 210, 198, 0.45);
  pointer-events: none;
}

.hero-left {
  padding: 80px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(60px, 6vw, 86px);
  line-height: 1.02; color: var(--charcoal);
  margin: 16px 0 28px;
}
.hero-title em {
  font-style: italic; color: var(--dusty-rose);
}
.hero-sub {
  font-size: 14px; line-height: 1.8;
  color: var(--taupe); max-width: 420px;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; align-items: center; gap: 32px; }
.hero-scroll {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--taupe); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.hero-scroll::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--taupe);
}

.hero-right {
  position: relative; overflow: hidden;
}
.img-label {
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
  z-index: 1;
}
.img-icon {
  font-size: 32px; opacity: 0.4; z-index: 1;
}

/* Marquee */
.marquee-strip {
  background: var(--charcoal); overflow: hidden;
  padding: 20px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-size: 12px; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Services */
.services {
  padding: 100px 64px;
  background: var(--cream);
}
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(40px, 4vw, 56px);
  line-height: 1.1; color: var(--charcoal);
  margin-top: 12px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--warm-white);
  padding: 36px 28px 32px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(46,41,38,0.08);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover::before { width: 100%; }
.svc-num {
  font-family: var(--font-display);
  font-size: 13px; color: rgba(135,120,113,0.4);
  margin-bottom: 28px; display: block;
  letter-spacing: 0.1em;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  line-height: 1.25; color: var(--charcoal);
  margin-bottom: 16px;
}
.svc-desc {
  font-size: 12px; line-height: 1.75;
  color: var(--taupe);
}

/* Featured Projects */
.projects {
  padding: 100px 64px;
  background: var(--warm-white);
}
.projects-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.4fr;
  grid-template-rows: 320px 220px;
  gap: 16px;
}
.proj-card {
  position: relative; overflow: hidden;
  cursor: none;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-card:hover .proj-img-bg { transform: scale(1.04); }
.proj-img-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s ease;
}
.proj-card:nth-child(1) .proj-img-bg { background: linear-gradient(135deg, #5A7D5E 0%, #486350 100%); }
.proj-card:nth-child(2) .proj-img-bg { background: linear-gradient(135deg, #6E9170 0%, #5A7A5D 100%); }
.proj-card:nth-child(3) .proj-img-bg { background: linear-gradient(135deg, #627D64 0%, #506B52 100%); grid-row: 1 / 3; }
.proj-card:nth-child(4) .proj-img-bg { background: linear-gradient(135deg, #5C7A5F 0%, #4A6650 100%); }
.proj-card:nth-child(5) .proj-img-bg { background: linear-gradient(135deg, #668065 0%, #537059 100%); }

.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,41,38,0.82) 0%, transparent 60%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}
.proj-cat {
  font-size: 9px; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 6px;
}
.proj-name {
  font-family: var(--font-display);
  font-size: 20px; color: var(--warm-white);
  font-weight: 300;
}
.proj-card:nth-child(3) { grid-row: 1 / 3; }

/* Testimonial */
.testimonial {
  background: var(--charcoal);
  padding: 100px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 400px; line-height: 1;
  color: rgba(143, 175, 114, 0.08);
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 300; line-height: 1.5;
  color: var(--warm-white); max-width: 780px;
  margin: 0 auto 32px; position: relative; z-index: 1;
}
.testi-author {
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
}

/* CTA Banner */
.cta-banner {
  background: var(--blush); padding: 100px 64px;
  text-align: center;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 40px;
}
.cta-banner-btns { display: flex; gap: 20px; justify-content: center; }

/* Footer */
footer {
  background: var(--charcoal);
  padding: 72px 64px 40px;
  border-top: 1px solid rgba(143, 175, 114, 0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand {}
.footer-logo-main {
  font-family: var(--font-display);
  font-weight: 600; font-size: 22px;
  letter-spacing: 0.12em; color: var(--warm-white);
}
.footer-logo-sub {
  font-size: 8px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  display: block; margin-top: 2px; margin-bottom: 20px;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-desc {
  font-size: 12px; line-height: 1.8;
  color: rgba(254,249,251,0.45);
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px; display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px; color: rgba(254,249,251,0.5);
  text-decoration: none; transition: color 0.3s; cursor: none;
}
.footer-links a:hover { color: var(--dusty-rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 11px; color: rgba(254,249,251,0.3);
  letter-spacing: 0.05em;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(254,249,251,0.35); text-decoration: none;
  text-transform: uppercase; transition: color 0.3s; cursor: none;
}
.footer-socials a:hover { color: var(--gold); }

/* ── PORTFOLIO PAGE ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #DDE5D9 0%, #CDD8C8 100%);
  padding: 80px 64px 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 80px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(143,175,114,0.25);
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95; color: var(--charcoal);
  margin: 16px 0 28px;
}
.page-hero-desc {
  font-size: 14px; line-height: 1.8;
  color: var(--taupe); max-width: 540px;
}

/* Filter tabs */
.filter-bar {
  background: var(--warm-white);
  padding: 0 64px;
  border-bottom: 1px solid var(--soft-grey);
  display: flex; gap: 4px; align-items: center;
}
.filter-btn {
  padding: 18px 24px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; border: none;
  background: transparent; color: var(--taupe);
  cursor: none; position: relative;
  transition: color 0.3s;
}
.filter-btn::after {
  content: ''; position: absolute; bottom: 0; left: 24px; right: 24px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.filter-btn.active, .filter-btn:hover { color: var(--charcoal); }
.filter-btn.active::after, .filter-btn:hover::after { transform: scaleX(1); }

/* Portfolio masonry */
.portfolio-grid {
  padding: 60px 64px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-card {
  position: relative; overflow: hidden; cursor: none;
  background: var(--blush-mid);
}
.port-card:nth-child(1) { grid-column: 1/3; height: 480px; }
.port-card:nth-child(2) { height: 480px; }
.port-card:nth-child(3) { height: 360px; }
.port-card:nth-child(4) { height: 360px; }
.port-card:nth-child(5) { height: 360px; }
.port-card:nth-child(6) { grid-column: 1/2; height: 340px; }
.port-card:nth-child(7) { height: 340px; }
.port-card:nth-child(8) { height: 340px; }
.port-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.port-card:hover .port-img { transform: scale(1.05); }
.port-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s ease;
}
.port-card:hover .port-bg { transform: scale(1.05); }

.port-card:nth-child(1) .port-bg { background: linear-gradient(135deg,#5A7D5E,#426050); }
.port-card:nth-child(2) .port-bg { background: linear-gradient(135deg,#6E9170,#567060); }
.port-card:nth-child(3) .port-bg { background: linear-gradient(135deg,#627E64,#4D6655); }
.port-card:nth-child(4) .port-bg { background: linear-gradient(135deg,#5C7B5F,#476650); }
.port-card:nth-child(5) .port-bg { background: linear-gradient(135deg,#668066,#506858); }
.port-card:nth-child(6) .port-bg { background: linear-gradient(135deg,#577554,#466050); }
.port-card:nth-child(7) .port-bg { background: linear-gradient(135deg,#617A62,#4D6252); }
.port-card:nth-child(8) .port-bg { background: linear-gradient(135deg,#5E7A60,#4A6252); }

.port-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,41,38,0.85) 0%, transparent 55%);
  opacity: 0.75; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  transition: opacity 0.4s;
}
.port-card:hover .port-info { opacity: 1; }
.port-cat {
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 6px;
}
.port-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
  color: var(--warm-white); line-height: 1.2;
}
.port-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; color: var(--charcoal);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.port-card:hover .port-arrow { opacity: 1; transform: translateY(0); }

/* Stats strip */
.stats-strip {
  background: var(--charcoal);
  padding: 64px; display: grid;
  grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(254,249,251,0.45); text-transform: uppercase;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-hero-img {
  background: linear-gradient(135deg,#4F7255 0%,#3D6045 50%,#325038 100%);
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-hero-img::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.06);
}
.about-hero-right {
  background: #2a332b;
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.0;
  color: white; margin: 16px 0 8px;
}
.about-role {
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
  color: #EBEBEB; margin-bottom: 28px;
}
.about-divider {
  width: 100%; height: 1px;
  background: var(--soft-grey); margin-bottom: 28px;
}
.about-bio {
  font-size: 14px; line-height: 1.9;
  color: #EBEBEB;
}

/* Philosophy */
.philosophy {
  background: var(--warm-white);
  padding: 100px 64px;
  display: grid; grid-template-columns: 1fr 0.7fr;
  gap: 80px; align-items: center;
}
.phil-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 28px;
}
.phil-quote span {
  font-style: italic; color: var(--dusty-rose);
}
.phil-desc {
  font-size: 14px; line-height: 1.85;
  color: var(--taupe); margin-bottom: 36px;
}
.phil-img {
  background: linear-gradient(135deg, #567A5A 0%, #446B50 100%);
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.phil-img::before {
  content: '';
  position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.08);
}

/* Values */
.values {
  padding: 100px 64px;
  background: var(--cream);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 64px;
}
.value-card {
  padding: 0 20px 0 0;
  border-top: 1px solid var(--soft-grey);
  padding-top: 28px;
}
.value-icon {
  font-size: 24px; color: var(--gold);
  margin-bottom: 16px; display: block;
}
.value-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 12px;
}
.value-desc {
  font-size: 12px; line-height: 1.75;
  color: var(--taupe);
}

/* Process */
.process {
  background: var(--charcoal);
  padding: 100px 64px;
}
.process-header { margin-bottom: 64px; }
.process-header .label { color: var(--gold); }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--warm-white); margin-top: 12px;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.step {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300;
  color: rgba(135,120,113,0.35); margin-bottom: 16px;
}
.step-rule {
  width: 32px; height: 1px;
  background: var(--gold); margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--warm-white); margin-bottom: 12px;
}
.step-desc {
  font-size: 12px; line-height: 1.75;
  color: rgba(254,249,251,0.5);
}

/* Press */
.press {
  background: var(--blush);
  padding: 72px 64px; text-align: center;
}
.press-logos {
  display: flex; justify-content: center;
  align-items: center; gap: 60px; margin-top: 36px;
  flex-wrap: wrap;
}
.press-name {
  font-family: var(--font-display);
  font-size: 18px; font-style: italic;
  color: var(--taupe); opacity: 0.7;
  transition: opacity 0.3s;
}
.press-name:hover { opacity: 1; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────── */
.ct-hero {
  background: var(--charcoal);
  padding: 96px 64px 88px;
  position: relative;
  overflow: hidden;
}
.ct-hero::after {
  content: 'R';
  position: absolute; right: -0.05em; bottom: -0.15em;
  font-family: var(--font-display);
  font-size: 28vw; line-height: 1;
  color: rgba(143,175,114,0.04);
  pointer-events: none; user-select: none;
}
.ct-hero-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: start;
}
.ct-hero-left .label { color: var(--gold); margin-bottom: 24px; }
.ct-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400; line-height: 1.0;
  color: var(--warm-white);
  margin: 20px 0 32px; letter-spacing: -0.01em;
}
.ct-headline em { font-style: italic; color: var(--dusty-rose); }
.ct-tagline {
  font-size: 14px; line-height: 1.85;
  color: rgba(248,250,246,0.5); max-width: 380px;
}
.ct-hero-right { padding-top: 20px; }
.ct-detail {
  padding: 22px 0;
  border-bottom: 1px solid rgba(143,175,114,0.12);
}
.ct-detail:first-child { border-top: 1px solid rgba(143,175,114,0.12); }
.ct-detail-label {
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.ct-detail-value {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 300;
  color: var(--warm-white); text-decoration: none;
  display: block; line-height: 1.55; transition: color 0.3s;
}
a.ct-detail-value:hover { color: var(--gold); }
.ct-socials { display: flex; gap: 28px; margin-top: 4px; }
.ct-social-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--warm-white); text-decoration: none;
  font-size: 12px; letter-spacing: 0.06em; transition: color 0.3s;
}
.ct-social-link:hover { color: var(--gold); }

.ct-form-section {
  background: var(--warm-white);
  padding: 96px 64px 112px;
}
.ct-form-wrap { max-width: 860px; margin: 0 auto; }
.ct-form-top {
  margin-bottom: 64px; padding-bottom: 36px;
  border-bottom: 1px solid var(--soft-grey);
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.ct-form-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400; color: var(--charcoal);
  letter-spacing: -0.01em;
}
.ct-form-sub {
  font-size: 12px; color: var(--taupe);
  text-align: right; max-width: 200px;
  line-height: 1.6; flex-shrink: 0;
}
.ct-block {
  margin-bottom: 52px; padding-bottom: 52px;
  border-bottom: 1px solid var(--soft-grey);
}
.ct-block:last-of-type {
  border-bottom: none; margin-bottom: 0; padding-bottom: 0;
}
.ct-block-label {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 32px;
}
.ct-block-num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--gold); letter-spacing: 0.15em;
}
.ct-block-title {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--taupe);
}
.ct-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.ct-form-group { display: flex; flex-direction: column; gap: 10px; }
.ct-form-group.full { grid-column: 1 / -1; }
.ct-form-label {
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--taupe); text-transform: uppercase;
}
.ct-input, .ct-select, .ct-textarea {
  background: transparent;
  border: none; border-bottom: 1px solid var(--blush-mid);
  padding: 14px 0; font-family: var(--font-body);
  font-size: 18px; color: var(--charcoal);
  transition: border-color 0.35s; outline: none; width: 100%;
}
.ct-input:focus, .ct-select:focus, .ct-textarea:focus {
  border-bottom-color: var(--charcoal);
}
.ct-textarea { resize: none; height: 110px; line-height: 1.7; }
.ct-select { -webkit-appearance: none; cursor: none; }
.ct-form-check {
  display: flex; align-items: flex-start;
  gap: 12px; margin: 36px 0 40px;
}
.ct-form-check input { margin-top: 3px; accent-color: var(--dusty-rose); }
.ct-form-check label { font-size: 13px; color: var(--taupe); line-height: 1.6; }
.ct-submit {
  width: 100%; padding: 20px;
  background: var(--charcoal); color: var(--warm-white);
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  border: 1px solid var(--charcoal); cursor: none;
  position: relative; overflow: hidden; transition: color 0.45s;
}
.ct-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.ct-submit:hover { color: var(--charcoal); }
.ct-submit:hover::before { transform: translateX(0); }
.ct-submit > span { position: relative; z-index: 1; }

/* ── HAMBURGER MENU ──────────────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: var(--charcoal); flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 300; color: var(--warm-white);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--dusty-rose); }
.mobile-menu a.active-link { color: var(--dusty-rose); }
.mobile-menu-footer {
  position: absolute; bottom: 40px;
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
}
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--warm-white); line-height: 1;
}

/* ── TABLET (≤1024px) ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .hero-left, .about-hero-right,
  .services, .projects, .values, .process,
  .page-hero, .testimonial, .cta-banner, .philosophy, .press,
  .portfolio-grid { padding-left: 40px; padding-right: 40px; }
  .filter-bar { padding: 0 40px; }
  footer { padding: 64px 40px 40px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 72px 40px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .proj-card:nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
  .proj-card:nth-child(3) { grid-row: auto; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-card:nth-child(1) { grid-column: 1 / -1; }
  .port-card:nth-child(6) { grid-column: auto; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 40px 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

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

  .about-hero { grid-template-columns: 1fr; }
  .about-hero-img { min-height: 320px; }
  .about-hero-right { padding: 56px 40px; }

  .philosophy { grid-template-columns: 1fr; gap: 40px; }
  .phil-img { height: 280px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .ct-hero { padding: 72px 40px 64px; }
  .ct-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-form-section { padding: 72px 40px 80px; }
  .ct-form-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ct-form-sub { text-align: left; max-width: 100%; }

  .press-logos { gap: 36px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-banner-btns { flex-wrap: wrap; }
}

/* ── MOBILE (≤640px) ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  nav {
    padding: 0 20px; height: 64px;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-main { font-size: 17px; }

  /* Global section padding for mobile */
  .hero-left, .services, .projects, .testimonial, .cta-banner,
  .page-hero, .about-hero-right, .about-hero-img, .philosophy,
  .values, .process, .press, .portfolio-grid,
  .filter-bar { padding-left: 20px; padding-right: 20px; }

  footer { padding: 48px 20px 32px; }

  /* HERO */
  .hero { min-height: auto; }
  .hero-left { padding: 56px 20px 52px; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); margin: 12px 0 20px; }
  .hero-sub { font-size: 13px; margin-bottom: 36px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-scroll { display: none; }
  .hero-right { display: none; }

  /* MARQUEE */
  .marquee-track { font-size: 10px; }

  /* SERVICES */
  .services { padding-top: 64px; padding-bottom: 64px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-header { margin-bottom: 40px; }
  .service-card { padding: 28px 24px; }

  /* PROJECTS */
  .projects { padding-top: 64px; padding-bottom: 64px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .proj-card { height: 220px !important; grid-column: auto !important; grid-row: auto !important; }

  /* TESTIMONIAL */
  .testimonial { padding: 64px 20px; }
  .testimonial::before { font-size: 200px; top: -40px; }
  .testi-quote { font-size: clamp(20px, 5.5vw, 26px); }

  /* CTA BANNER */
  .cta-banner { padding: 64px 20px; }
  .cta-banner-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-dark, .btn-outline { width: 100%; text-align: center; padding: 18px 24px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-socials { justify-content: center; }

  /* PORTFOLIO PAGE */
  .page-hero { padding: 52px 20px 48px; }
  .page-hero-title { font-size: clamp(48px, 13vw, 72px); }
  .page-hero::after { display: none; }
  .filter-bar { padding: 0; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .filter-btn { padding: 16px 18px; font-size: 9px; flex-shrink: 0; }
  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 32px 20px 64px; gap: 12px;
  }
  .port-card { height: 240px !important; grid-column: auto !important; }
  .stats-strip { padding: 0; grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 16px; }
  .stat-num { font-size: 48px; }

  /* ABOUT PAGE */
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-img { min-height: 260px; }
  .about-hero-right { padding: 48px 20px; }
  .about-name { font-size: clamp(44px, 12vw, 60px); }
  .philosophy { padding: 64px 20px; grid-template-columns: 1fr; }
  .phil-img { height: 220px; }
  .values { padding: 64px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .process { padding: 64px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .press { padding: 56px 20px; }
  .press-logos { flex-direction: column; align-items: center; gap: 20px; }

  /* CONTACT PAGE */
  .ct-hero { padding: 56px 20px 52px; }
  .ct-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ct-headline { font-size: clamp(40px, 11vw, 60px); }
  .ct-form-section { padding: 56px 20px 72px; }
  .ct-form-top { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 44px; }
  .ct-form-sub { text-align: left; max-width: 100%; }
  .ct-form-grid { grid-template-columns: 1fr; gap: 20px; }
  .ct-form-group.full { grid-column: auto; }
  .ct-submit { font-size: 9px; }
}

/* ── VERY SMALL (≤380px) ─────────────────────────────────────────── */
@media (max-width: 380px) {
  .hero-title { font-size: 38px; }
  .about-name { font-size: 38px; }
  .page-hero-title { font-size: 44px; }
  .contact-title { font-size: 34px; }
  .stat-num { font-size: 40px; }
}

/* ── ACTIVE NAV LINK ─────────────────────────────────────────────── */
.nav-links a.active-link { color: var(--dusty-rose); }
.nav-links a.active-link::after { width: 100%; }

/* ── HERO IMAGE ─────────────────────────────────────────────────── */
.hero-img-container {
  position: absolute; inset: 40px 40px 40px 0;
  overflow: hidden;
}
.hero-img-container img,
.hero-slide {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide {
  position: absolute; top: 0; left: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

/* ── SOCIAL ICONS (contact page left panel) ──────────────────────── */
.ct-social-link svg { flex-shrink: 0; }

/* ── SOCIAL ICONS (footer contact column) ────────────────────────── */
.footer-social-icons {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 11px; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-social-link:hover { color: var(--gold); }
.footer-social-link svg { flex-shrink: 0; }

/* ── ABOUT HERO IMAGE ────────────────────────────────────────────── */
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}

/* ── PHILOSOPHY IMAGE ────────────────────────────────────────────── */
.phil-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── PORTFOLIO CARD IMAGE ────────────────────────────────────────── */
.proj-img-bg img,
.port-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── GALLERY SECTION ─────────────────────────────────────────────── */
.gallery-section {
  padding: 80px 64px 100px;
  background: var(--cream);
}

/* ── PORTFOLIO PROJECT SECTIONS ──────────────────────────────────── */
.portfolio-category .label { color: var(--gold); }
.portfolio-category {
  background: var(--charcoal);
  padding: 52px 64px;
  text-align: center;
}
.portfolio-category--ongoing {
  margin-top: 0;
}
.portfolio-category-label {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 14px;
}
.portfolio-category-rule {
  width: 40px; height: 1px; background: var(--gold);
  opacity: 0.6; flex: none;
}
.portfolio-category-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; color: var(--warm-white);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}
.portfolio-category-desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 480px; margin: 0 auto;
}
.project-section {
  padding: 0 64px 72px;
  background: var(--cream);
}
.project-header {
  padding: 40px 0 28px;
  border-top: 1px solid var(--soft-grey);
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 0;
}
.project-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; color: var(--charcoal);
  margin: 6px 0 0;
}
.project-type-badge {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(143,175,114,0.1);
  padding: 7px 18px;
  border: 1px solid rgba(143,175,114,0.3);
  white-space: nowrap; margin-top: 8px;
}
.project-type-badge--ongoing {
  color: var(--dusty-rose);
  background: rgba(122,155,130,0.1);
  border-color: rgba(122,155,130,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.gallery-card {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: var(--blush-mid);
}
.gallery-card img {
  width: 100%; height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-caption {
  padding: 12px 16px;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--taupe); text-transform: uppercase;
  background: var(--warm-white);
}

/* ── LIGHTBOX ─────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(42, 51, 43, 0.95);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center;
}
.lightbox-img-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.lightbox-img-wrap img {
  max-width: 80vw; max-height: 80vh;
  object-fit: contain; display: block;
}
.lightbox-caption-text {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
}
.lightbox-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(42,51,43,0.5); border: 1px solid rgba(255,255,255,0.2);
  color: var(--warm-white); font-size: 28px;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  z-index: 10;
}
#lbPrev { left: 32px; }
#lbNext { right: 32px; }
.lightbox-btn:hover { background: var(--dusty-rose); border-color: var(--dusty-rose); }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none;
  color: var(--warm-white); font-size: 28px;
  cursor: pointer; line-height: 1;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--dusty-rose); }

/* ── FORM MESSAGE ────────────────────────────────────────────────── */
.form-message {
  font-size: 13px; padding: 14px 0;
  display: none;
}
.form-message.success { display: block; color: var(--dusty-rose); }
.form-message.error   { display: block; color: #c0392b; }

/* ── RESPONSIVE GALLERY + PROJECT SECTIONS ───────────────────────── */
@media (max-width: 1024px) {
  .gallery-section { padding: 64px 40px 80px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-category { padding: 44px 40px; }
  .project-section { padding: 0 40px 56px; }
}
@media (max-width: 640px) {
  .gallery-section { padding: 48px 20px 64px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .lightbox-inner { max-width: 100vw; width: 100vw; }
  .lightbox-img-wrap img { max-width: 100vw; max-height: 82vh; }
  .lightbox-btn { width: 40px; height: 40px; font-size: 22px; }
  #lbPrev { left: 10px; }
  #lbNext { right: 10px; }
  .lightbox-close { top: -40px; }
  .portfolio-category { padding: 36px 20px; }
  .project-section { padding: 0 20px 40px; }
  .project-header { flex-direction: column; gap: 8px; }
  .project-name { font-size: 28px; }
}
