/* ============================================================
   PDDG INC, Pacific Design & Development Group
   Imperial Modernism: Chinese heritage meets luxury architecture
   ============================================================ */

/* Cross-document view transitions — works on file:// and http:// */
@view-transition {
  navigation: auto;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Noto+Serif+SC:wght@300;400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #C4A35A;
  --gold-deep:   #8B6B1A;
  --gold-light:  #E8D5A3;
  --gold-pale:   #F5EDD8;
  --jade:        #1A6B4A;
  --jade-mid:    #2A8B62;
  --jade-light:  #D4EDE3;
  --jade-pale:   #EBF5EF;
  --ink:         #1A1814;
  --ink-mid:     #3D3830;
  --ink-soft:    #6B6358;
  --cream:       #FAFAF7;
  --white:       #FFFFFF;
  --border:      rgba(196,163,90,0.25);
  --border-jade: rgba(26,107,74,0.2);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent:  'Noto Serif SC', serif;

  --max-w: 1280px;
  --section-gap: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--ink);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#page-shell {
  position: relative;
  min-height: 100vh;
  view-transition-name: page-shell;
}

/* Nav is its own layer — stays locked during transitions */
.nav {
  view-transition-name: site-nav;
}

.mobile-menu {
  view-transition-name: site-mobile-menu;
}

#page-shell:focus {
  outline: none;
}

[data-router-view] {
  transition: opacity 0.28s ease;
}

[data-router-view].page-shell-exiting {
  opacity: 0;
}

[data-router-view].page-shell-entering {
  opacity: 0;
}

/* Suppress default root crossfade entirely */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

/* Nav stays static — no animation */
::view-transition-old(site-nav),
::view-transition-new(site-nav),
::view-transition-old(site-mobile-menu),
::view-transition-new(site-mobile-menu) {
  animation: none;
}

/* Page content: clean fade only, no movement */
::view-transition-old(page-shell) {
  animation: page-shell-out 260ms ease forwards;
}

::view-transition-new(page-shell) {
  animation: page-shell-in 320ms ease forwards;
}

@keyframes page-shell-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes page-shell-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ── Page Loader ────────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(10, 12, 9, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  view-transition-name: none;
}

#page-loader.active {
  opacity: 1;
  pointer-events: all;
}

.dual-ring-loader {
  position: relative;
  width: 48px;
  height: 48px;
}

.dual-ring-loader::before,
.dual-ring-loader::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-radius: 50%;
}

.dual-ring-loader::before {
  border-top-color: var(--jade);
  border-left-color: var(--jade);
  animation: dual-spin 1.1s linear infinite;
}

.dual-ring-loader::after {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
  animation: dual-spin-rev 1.1s linear infinite;
}

@keyframes dual-spin     { to { transform: rotate(360deg);  } }
@keyframes dual-spin-rev { to { transform: rotate(-360deg); } }

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.gold-rule.center { margin-left: auto; margin-right: auto; }

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.section-heading em {
  font-style: italic;
  color: var(--jade);
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 600px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

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

.btn-primary:hover {
  background: var(--jade-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,107,74,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
}

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

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.4s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: all 0.4s ease;
}

.nav.scrolled .nav-inner {
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-image {
  width: clamp(150px, 20vw, 260px);
  height: auto;
  display: block;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.4s ease;
}

.nav.scrolled .nav-logo-main { color: var(--ink); }

.nav-logo-sub {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

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

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--jade); }
.nav.scrolled .nav-links a.active { color: var(--jade); }
.nav.scrolled .nav-links a::after { background: var(--jade); }

.nav-contact {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.nav-contact:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.nav.scrolled .nav-contact {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.nav.scrolled .nav-contact:hover {
  background: var(--jade);
  border-color: var(--jade);
  color: var(--white);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-burger span { background: var(--ink); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  background: #110f0d;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(26,107,74,0.08) 0%,
      rgba(196,163,90,0.04) 40%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(26,24,20,0.45) 0%,
      rgba(26,24,20,0.2) 40%,
      rgba(26,24,20,0.72) 100%
    );
}

/* Architectural pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='120' height='120' fill='none'/%3E%3Cpath d='M60 0 L120 60 L60 120 L0 60 Z' fill='none' stroke='rgba(196,163,90,0.05)' stroke-width='1'/%3E%3Cpath d='M60 20 L100 60 L60 100 L20 60 Z' fill='none' stroke='rgba(196,163,90,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.6;
}

.hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.hero-image.loaded { opacity: 1; }

/* Jade accent line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--jade), var(--gold), transparent);
  z-index: 2;
}

/* Lotus unfold accent */
.hero-lotus {
  position: absolute;
  top: 0;
  right: 0;
  width: min(44vw, 500px);
  aspect-ratio: 1;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.hero-lotus::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,74,0.45) 0%, rgba(26,107,74,0.15) 50%, transparent 75%);
  filter: blur(30px);
}

.hero-lotus-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-lotus-box::after {
  display: none;
}

.hero-lotus-leaf {
  --lotus-start-angle: 25deg;
  --lotus-end-angle: 25deg;
  --lotus-delay: 0s;
  --lotus-opacity: 0.88;
  --lotus-size: 88%;
  position: absolute;
  top: 0;
  right: 0;
  width: var(--lotus-size);
  aspect-ratio: 1;
  border-radius: 100% 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.10) 0%,
    rgba(30,90,65,0.72) 30%,
    rgba(12,62,40,0.94) 65%,
    rgba(6,38,24,0.98) 100%
  );
  box-shadow:
    inset -2px -2px 12px rgba(0,0,0,0.15),
    0 8px 32px rgba(7,36,24,0.3);
  filter: saturate(130%) brightness(1.05);
  opacity: 0;
  transform: rotate(var(--lotus-start-angle)) scale(0.15);
  transform-origin: top right;
  animation: lotus-unfurl 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--lotus-delay);
}

/* Fan from -50° (along top) to +100° (along right side), centered on the diagonal */
.hero-lotus-leaf:nth-child(1) { --lotus-end-angle: -50deg; --lotus-delay: 0s;    --lotus-size: 82%; --lotus-opacity: 0.72; }
.hero-lotus-leaf:nth-child(2) { --lotus-end-angle: -28deg; --lotus-delay: 0.25s; --lotus-size: 88%; --lotus-opacity: 0.78; }
.hero-lotus-leaf:nth-child(3) { --lotus-end-angle: -8deg;  --lotus-delay: 0.48s; --lotus-size: 92%; --lotus-opacity: 0.84; }
.hero-lotus-leaf:nth-child(4) { --lotus-end-angle: 14deg;  --lotus-delay: 0.70s; --lotus-size: 95%; --lotus-opacity: 0.86; }
.hero-lotus-leaf:nth-child(5) { --lotus-end-angle: 36deg;  --lotus-delay: 0.90s; --lotus-size: 93%; --lotus-opacity: 0.84; }
.hero-lotus-leaf:nth-child(6) { --lotus-end-angle: 58deg;  --lotus-delay: 1.10s; --lotus-size: 88%; --lotus-opacity: 0.78; }
.hero-lotus-leaf:nth-child(7) { --lotus-end-angle: 78deg;  --lotus-delay: 1.28s; --lotus-size: 84%; --lotus-opacity: 0.72; }
.hero-lotus-leaf:nth-child(8) { --lotus-end-angle: 98deg;  --lotus-delay: 1.45s; --lotus-size: 78%; --lotus-opacity: 0.64; }

@keyframes lotus-unfurl {
  0% {
    opacity: 0;
    transform: rotate(var(--lotus-start-angle)) scale(0.15);
  }
  20% {
    opacity: var(--lotus-opacity);
  }
  100% {
    opacity: var(--lotus-opacity);
    transform: rotate(var(--lotus-end-angle)) scale(1);
  }
}

@keyframes lotus-core {
  from {
    opacity: 0;
    transform: scale(0.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 48px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow .label {
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.hero-stat {
  text-align: right;
  border-right: 2px solid var(--gold);
  padding-right: 20px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ── Intro Strip ───────────────────────────────────────────── */
.intro-strip {
  background: var(--jade);
  padding: 60px 48px;
  display: flex;
  justify-content: center;
}

.intro-strip-inner {
  max-width: var(--max-w);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.intro-stat {
  text-align: center;
  padding: 0 32px;
}

.intro-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.intro-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

.intro-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* ── About Section ─────────────────────────────────────────── */
.about {
  padding: var(--section-gap) 0;
}

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

.about-image-wrap {
  position: relative;
}

.about-image {
  aspect-ratio: 4/5;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--jade-pale) 0%, var(--gold-pale) 100%);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* Gold corner ornament */
.about-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--jade);
  border-right: 2px solid var(--jade);
}

.about-text { padding: 20px 0; }

.about-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--jade);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.about-credentials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.credential {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--gold-deep);
  background: var(--gold-pale);
}

/* ── Differentiators ───────────────────────────────────────── */
.differentiators {
  background: var(--ink);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.differentiators::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(26,107,74,0.06), transparent);
  pointer-events: none;
}

/* Chinese lattice pattern */
.differentiators::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(196,163,90,0.04)' stroke-width='1'%3E%3Crect x='10' y='10' width='60' height='60'/%3E%3Crect x='20' y='20' width='40' height='40'/%3E%3Cline x1='10' y1='40' x2='70' y2='40'/%3E%3Cline x1='40' y1='10' x2='40' y2='70'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.diff-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.diff-title { color: var(--white); }
.diff-title em { color: var(--gold-light); }

.diff-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  align-self: end;
  padding-bottom: 6px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.diff-card {
  background: var(--ink);
  padding: 48px 40px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--jade), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.diff-card:hover { background: rgba(255,255,255,0.03); }
.diff-card:hover::before { transform: scaleX(1); }

.diff-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196,163,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.diff-card:hover .diff-card-icon {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.diff-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.diff-card-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* ── Portfolio Preview ─────────────────────────────────────── */
.portfolio {
  padding: var(--section-gap) 0;
}

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

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

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--gold-pale);
}

.project-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1; aspect-ratio: 16/10; }
.project-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; aspect-ratio: 4/5; }
.project-card:nth-child(3) { grid-column: 1 / 5; grid-row: 2; aspect-ratio: 1; }
.project-card:nth-child(4) { grid-column: 5 / 9; grid-row: 2; aspect-ratio: 1; }
.project-card:nth-child(5) { grid-column: 9 / 13; grid-row: 2; aspect-ratio: 1; }

.project-card-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  opacity: 0.4;
}

/* Different placeholder gradients for each card */
.project-card:nth-child(1) .project-card-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.15), rgba(26,24,20,0.55)), url("pddginc.com-1774629391929/07_Exterior.jpg_1.webp");
}
.project-card:nth-child(2) .project-card-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.15), rgba(26,24,20,0.55)), url("pddginc.com-1774629391929/04_Kitchen.jpg.webp");
}
.project-card:nth-child(3) .project-card-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.15), rgba(26,24,20,0.55)), url("pddginc.com-1774629391929/05_Dining+Room.jpg.webp");
}
.project-card:nth-child(4) .project-card-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.15), rgba(26,24,20,0.55)), url("pddginc.com-1774629391929/02_Backyard.jpg.webp");
}
.project-card:nth-child(5) .project-card-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.15), rgba(26,24,20,0.55)), url("pddginc.com-1774629391929/08_Foyer.jpg.webp");
}

.project-card:hover .project-card-bg { transform: scale(1.06); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,24,20,0.85) 0%, transparent 100%);
}

.project-card-num {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 4px;
}

.project-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.project-card-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

/* ── Process Section ───────────────────────────────────────── */
.process {
  background: var(--gold-pale);
  padding: var(--section-gap) 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--jade));
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-header .body-text {
  max-width: 520px;
  margin: 24px auto 0;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--jade), var(--gold));
  z-index: 0;
}

.process-step {
  padding: 0 32px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0 auto 28px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:nth-child(odd) .process-step-num {
  background: var(--jade);
  color: var(--white);
}

.process-step:nth-child(even) .process-step-num {
  background: var(--gold);
  color: var(--white);
}

.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.process-step-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta {
  padding: var(--section-gap) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '建';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: 400px;
  color: rgba(196,163,90,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-inner { max-width: 720px; margin: 0 auto; }

.cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

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

.cta-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

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

.cta-contact-info {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-contact-item {
  text-align: center;
}

.cta-contact-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

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

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #111110;
  padding: 72px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer-brand-name {
  margin-bottom: 10px;
}

.footer-logo-image {
  width: clamp(170px, 20vw, 240px);
  height: auto;
  display: block;
}

.footer-brand-sub {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-license {
  display: flex;
  gap: 24px;
}

.footer-license span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── Page Hero (interior pages) ────────────────────────────── */
.page-hero {
  height: 420px;
  background:
    linear-gradient(to bottom, rgba(26,24,20,0.35), rgba(26,24,20,0.65)),
    url("pddginc.com-1774629391929/07_Exterior.jpg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='120' height='120' fill='none'/%3E%3Cpath d='M60 0 L120 60 L60 120 L0 60 Z' fill='none' stroke='rgba(196,163,90,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.page-hero-left-bar {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--jade), var(--gold));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.page-hero-eyebrow .label { color: var(--gold-light); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

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

/* ── Services Page ─────────────────────────────────────────── */
.services-intro {
  padding: 100px 0 60px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.service-cards {
  padding: 60px 0 var(--section-gap);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:first-child { border-top: 1px solid var(--border); }

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--jade);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  background: rgba(26, 107, 74, 0.02);
  border-bottom-color: rgba(26, 107, 74, 0.32);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-left {
  padding-top: 6px;
}

.service-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-jade);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jade);
  font-size: 1.3rem;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-icon-wrap {
  background: var(--jade-pale);
  border-color: var(--jade);
  transform: translateY(-1px);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.service-card-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--jade-pale);
  color: var(--jade);
  border: 1px solid var(--border-jade);
}

/* ── Portfolio Page ────────────────────────────────────────── */
.portfolio-full {
  padding: 80px 0 var(--section-gap);
}

.portfolio-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

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

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

.portfolio-project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gold-pale);
  cursor: pointer;
}

.portfolio-project-card:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 16/9; }

.project-img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.portfolio-project-card:nth-child(1) .project-img-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.1), rgba(26,24,20,0.35)), url("pddginc.com-1774629391929/07_Exterior.jpg_2.webp");
}
.portfolio-project-card:nth-child(2) .project-img-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.1), rgba(26,24,20,0.35)), url("pddginc.com-1774629391929/04_Kitchen.jpg_1.webp");
}
.portfolio-project-card:nth-child(3) .project-img-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.1), rgba(26,24,20,0.35)), url("pddginc.com-1774629391929/1H3A4977.jpg.webp");
}
.portfolio-project-card:nth-child(4) .project-img-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.1), rgba(26,24,20,0.35)), url("pddginc.com-1774629391929/05_Dining+Room.jpg_1.webp");
}
.portfolio-project-card:nth-child(5) .project-img-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.1), rgba(26,24,20,0.35)), url("pddginc.com-1774629391929/02_Backyard.jpg_1.webp");
}
.portfolio-project-card:nth-child(6) .project-img-bg {
  background-image: linear-gradient(to bottom, rgba(26,24,20,0.1), rgba(26,24,20,0.35)), url("pddginc.com-1774629391929/1H3A5039.jpg.webp");
}

.portfolio-project-card:hover .project-img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.95) 0%, rgba(26,24,20,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transform: translateY(60px);
  transition: transform 0.4s ease;
}

.portfolio-project-card:hover .project-overlay { transform: translateY(0); }

.project-overlay-num {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.project-overlay-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.project-overlay-location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.project-overlay-link {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.project-overlay-link:hover { gap: 14px; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-section {
  padding: 80px 0 var(--section-gap);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}

.contact-info-value a:hover { color: var(--jade); }

.contact-form-wrap {
  background: var(--white);
  padding: 56px;
  border: 1px solid var(--border);
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--jade), var(--gold));
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--jade);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(61,56,48,0.3);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--jade);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--jade-mid);
  box-shadow: 0 8px 24px rgba(26,107,74,0.25);
  transform: translateY(-1px);
}

/* ── Map/Location ──────────────────────────────────────────── */
.map-section {
  background: var(--gold-pale);
  padding: 72px 0;
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.map-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--jade-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--jade);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ── Scroll Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Mobile Navigation Menu ────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover { color: var(--gold-light); }

.mobile-menu-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-project-card:nth-child(4n+1) { grid-column: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 900px) {
  :root { --section-gap: 80px; }
  .nav-links, .nav-contact { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-image { width: 170px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-lotus {
    top: 0;
    right: 0;
    width: min(72vw, 380px);
  }
  .about-grid { grid-template-columns: 1fr; }
  .diff-header { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .intro-strip-inner { grid-template-columns: 1fr; }
  .intro-divider { display: none; }
  .intro-stat { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .intro-stat:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 24px; }
  .services-intro-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; gap: 24px; }
  .map-content { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 20px; }
  .nav-logo-image { width: 145px; }
  .hero-content { padding: 60px 20px; }
  .hero-title { font-size: 2.8rem; }
  .hero-lotus {
    top: 0;
    right: 0;
    width: 300px;
    opacity: 1;
  }
  .diff-grid { grid-template-columns: 1fr; }
  .portfolio-grid { display: flex; flex-direction: column; }
  .project-card { aspect-ratio: 4/3 !important; }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-contact-info { flex-direction: column; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero { height: 320px; }
}

/* ── Print / A11y ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  ::view-transition-group(page-shell),
  ::view-transition-old(page-shell),
  ::view-transition-new(page-shell) {
    animation: none !important;
  }

  .hero-lotus-box::after {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .hero-lotus-leaf {
    animation: none;
    opacity: var(--lotus-opacity);
    transform: rotate(var(--lotus-end-angle)) scale(1);
  }
}
