@font-face {
  font-family: "N6D Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "N6D Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "N6D Playfair";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/playfair-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "N6D Playfair";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/playfair-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --n6d-ink: #171915;
  --n6d-ink-soft: #252821;
  --n6d-forest: #203831;
  --n6d-forest-light: #2b4a40;
  --n6d-brass: #b2935b;
  --n6d-brass-light: #d1bb8e;
  --n6d-sand: #eee8dd;
  --n6d-sand-deep: #ded4c4;
  --n6d-ivory: #faf8f3;
  --n6d-white: #fff;
  --n6d-muted: #6f736a;
  --n6d-border: rgba(27, 32, 26, 0.16);
  --n6d-serif: "N6D Playfair", Georgia, "Times New Roman", serif;
  --n6d-sans: "N6D Inter", Arial, sans-serif;
  --n6d-container: min(100% - 48px, 1320px);
  --n6d-reading: min(100% - 48px, 920px);
  --n6d-section: clamp(88px, 9vw, 148px);
  --n6d-shadow: 0 28px 80px rgba(22, 25, 20, 0.12);
  --n6d-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--n6d-ivory);
  color: var(--n6d-ink-soft);
  font-family: var(--n6d-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.n6d-menu-open { overflow: hidden; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { background: var(--n6d-brass); color: var(--n6d-ink); }

.n6d-container { width: var(--n6d-container); margin-inline: auto; }
.n6d-section { padding-block: var(--n6d-section); }
.n6d-section--sand { background: var(--n6d-sand); }
.n6d-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--n6d-white);
  color: var(--n6d-ink);
  transform: translateY(-150%);
  transition: transform .2s;
}
.n6d-skip-link:focus { transform: translateY(0); }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--n6d-ink);
  font-family: var(--n6d-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 6.3vw, 6.8rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin: 0 0 1.5rem; }

.n6d-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--n6d-brass);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.n6d-eyebrow::before { width: 38px; height: 1px; background: currentColor; content: ""; }
.n6d-eyebrow--light { color: var(--n6d-brass-light); }

.n6d-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--n6d-ink);
  background: var(--n6d-ink);
  color: var(--n6d-white);
  padding: 14px 28px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: background .3s var(--n6d-ease), color .3s var(--n6d-ease), border-color .3s var(--n6d-ease), transform .3s var(--n6d-ease);
}
.n6d-button:hover, .n6d-button:focus-visible { background: var(--n6d-brass); border-color: var(--n6d-brass); color: var(--n6d-ink); transform: translateY(-2px); }
.n6d-button--small { min-height: 46px; padding: 12px 21px; font-size: .69rem; }
.n6d-button--light { border-color: var(--n6d-brass-light); background: var(--n6d-brass-light); color: var(--n6d-ink); }
.n6d-button--light:hover, .n6d-button--light:focus-visible { border-color: var(--n6d-white); background: var(--n6d-white); }
.n6d-text-link, .n6d-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--n6d-border);
  padding-bottom: 6px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s, border-color .25s;
}
.n6d-text-link:hover, .n6d-arrow-link:hover { border-color: var(--n6d-brass); color: var(--n6d-brass); }
.n6d-text-link--light { border-color: rgba(255, 255, 255, .45); color: var(--n6d-white); }
.n6d-arrow-link span { font-size: 1rem; transition: transform .25s; }
.n6d-arrow-link:hover span { transform: translate(3px, -3px); }

/* Top bar and navigation */
.n6d-topbar { background: var(--n6d-ink); color: rgba(255, 255, 255, .72); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.n6d-topbar__inner { display: flex; min-height: 36px; align-items: center; justify-content: space-between; }
.n6d-topbar p { margin: 0; }
.n6d-topbar__meta { display: flex; align-items: center; gap: 30px; }
.n6d-topbar__meta a { color: var(--n6d-brass-light); font-weight: 700; }
.n6d-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(30, 34, 28, .1);
  background: rgba(250, 248, 243, .95);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s, background .3s;
}
.admin-bar .n6d-header { top: 32px; }
.n6d-header.is-scrolled { background: rgba(250, 248, 243, .985); box-shadow: 0 10px 35px rgba(30, 34, 28, .08); }
.n6d-header__inner { display: flex; min-height: 88px; align-items: center; gap: 34px; }
.n6d-brand { flex: 0 0 auto; }
.n6d-brand img, .n6d-brand .custom-logo { width: auto; height: 58px; object-fit: contain; }
.n6d-brand .custom-logo-link { display: block; }
.n6d-nav { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: center; }
.n6d-menu, .n6d-menu ul { margin: 0; padding: 0; list-style: none; }
.n6d-menu { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 1.5vw, 27px); }
.n6d-menu > li { position: relative; }
.n6d-menu > li > a {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 6px;
  color: var(--n6d-ink);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .025em;
  white-space: nowrap;
  transition: color .2s;
}
.n6d-menu > li > a::after { position: absolute; right: 0; bottom: 26px; left: 0; height: 1px; background: var(--n6d-brass); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--n6d-ease); }
.n6d-menu > li:hover > a, .n6d-menu > li.current-menu-item > a, .n6d-menu > li.current-menu-ancestor > a { color: var(--n6d-brass); }
.n6d-menu > li:hover > a::after, .n6d-menu > li.current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.n6d-menu .menu-item-has-children > a::before { order: 2; border: solid currentColor; border-width: 0 1px 1px 0; padding: 2px; content: ""; transform: translateY(-2px) rotate(45deg); }
.n6d-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 12px);
  left: -24px;
  width: min(620px, 80vw);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--n6d-ink);
  box-shadow: var(--n6d-shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
}
.n6d-menu li:hover > .sub-menu, .n6d-menu li:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.n6d-menu .sub-menu li { position: relative; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.n6d-menu .sub-menu a { display: block; padding: 11px 2px; color: rgba(255, 255, 255, .78); font-size: .78rem; line-height: 1.35; transition: color .2s, padding .2s; }
.n6d-menu .sub-menu a:hover { padding-left: 5px; color: var(--n6d-brass-light); }
.n6d-menu .sub-menu .sub-menu { position: static; display: block; width: auto; padding: 0 0 8px 10px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
.n6d-header__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 20px; }
.n6d-nav__cta { display: none; }
.n6d-nav-toggle { display: none; border: 0; background: transparent; padding: 9px 0 9px 12px; }
.n6d-submenu-toggle { display: none; }
.n6d-nav-toggle__label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.n6d-nav-toggle__icon { display: grid; width: 25px; gap: 7px; }
.n6d-nav-toggle__icon i { display: block; height: 1px; background: currentColor; transition: transform .3s, width .3s; }
.n6d-nav-toggle__icon i:last-child { width: 17px; justify-self: end; }

/* Hero */
.n6d-hero { position: relative; min-height: clamp(680px, calc(100vh - 124px), 920px); min-height: clamp(680px, calc(100svh - 124px), 920px); overflow: hidden; background: var(--n6d-ink); color: var(--n6d-white); isolation: isolate; }
.n6d-hero__media, .n6d-hero__shade { position: absolute; inset: 0; }
.n6d-hero__media { z-index: -2; }
.n6d-hero__image { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(1.1) saturate(1.04); animation: n6dHeroScale 18s ease-out both; }
.n6d-hero__shade { z-index: -1; background: linear-gradient(90deg, rgba(13, 17, 14, .82) 0%, rgba(13, 17, 14, .52) 43%, rgba(13, 17, 14, .08) 77%, rgba(13, 17, 14, .12) 100%), linear-gradient(0deg, rgba(13, 17, 14, .34), transparent 45%); }
.n6d-hero__content { display: flex; min-height: inherit; max-width: min(86%, 1320px); flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 80px 120px; }
.n6d-hero h1 { max-width: 940px; color: var(--n6d-white); text-wrap: balance; }
.n6d-hero__lead { max-width: 720px; margin: 34px 0 42px; color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 1.35vw, 1.22rem); line-height: 1.75; }
.n6d-hero__actions { display: flex; align-items: center; gap: 34px; }
.n6d-hero__scroll { position: absolute; right: 34px; bottom: 40px; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .65); font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: bottom right; }
.n6d-hero__scroll span { width: 44px; height: 1px; background: currentColor; }
@keyframes n6dHeroScale { from { transform: scale(1.04); } to { transform: scale(1); } }

/* Proof strip */
.n6d-trustbar { border-top: 1px solid rgba(255, 255, 255, .08); background: var(--n6d-ink); color: var(--n6d-white); }
.n6d-trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.n6d-trustbar__grid > div { display: flex; min-height: 142px; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255, 255, 255, .12); padding: 26px 38px; }
.n6d-trustbar__grid > div:first-child { padding-left: 0; }
.n6d-trustbar__grid > div:last-child { border-right: 0; }
.n6d-trustbar strong { margin-bottom: 6px; color: var(--n6d-brass-light); font-family: var(--n6d-serif); font-size: clamp(1.55rem, 2.4vw, 2.3rem); font-weight: 400; line-height: 1.1; }
.n6d-trustbar span { color: rgba(255, 255, 255, .58); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Intro and shared section headings */
.n6d-intro__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr); gap: clamp(50px, 9vw, 150px); align-items: end; }
.n6d-intro h2 { max-width: 820px; }
.n6d-intro__copy { padding-bottom: 8px; }
.n6d-intro__copy p { margin-bottom: 32px; color: var(--n6d-muted); font-size: 1.08rem; }
.n6d-values { display: grid; margin-top: clamp(70px, 8vw, 120px); border-top: 1px solid var(--n6d-border); grid-template-columns: repeat(4, 1fr); }
.n6d-values > div { display: grid; min-height: 150px; align-content: center; gap: 14px; border-right: 1px solid var(--n6d-border); padding: 30px 36px; }
.n6d-values > div:first-child { padding-left: 0; }
.n6d-values > div:last-child { border-right: 0; }
.n6d-values strong { color: var(--n6d-brass); font-family: var(--n6d-serif); font-size: 1rem; font-weight: 400; }
.n6d-values span { max-width: 215px; font-size: .87rem; font-weight: 600; line-height: 1.5; }
.n6d-section-heading { display: grid; margin-bottom: clamp(52px, 6vw, 84px); grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); gap: 70px; align-items: end; }
.n6d-section-heading > p { margin: 0; color: var(--n6d-muted); font-size: 1.02rem; }
.n6d-section-heading--projects { grid-template-columns: 1fr auto; }

/* Signature story */
.n6d-signature { background: #f6f2ea; }
.n6d-signature__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .72fr); gap: clamp(60px, 8vw, 125px); align-items: center; }
.n6d-signature__gallery { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(180px, .65fr); gap: 22px; align-items: start; }
.n6d-signature__image { margin: 0; overflow: hidden; background: var(--n6d-sand-deep); }
.n6d-signature__image--main { aspect-ratio: 4 / 5; }
.n6d-signature__image--detail { aspect-ratio: 4 / 5; margin-top: 108px; }
.n6d-signature__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--n6d-ease); }
.n6d-signature__gallery:hover img { transform: scale(1.025); }
.n6d-signature__content h2 { max-width: 680px; font-size: clamp(2.7rem, 4.4vw, 4.8rem); }
.n6d-signature__content > p:not(.n6d-eyebrow) { margin: 34px 0 38px; color: var(--n6d-muted); font-size: 1.02rem; }
.n6d-signature__points { margin: 0 0 42px; padding: 0; border-top: 1px solid var(--n6d-border); list-style: none; }
.n6d-signature__points li { display: grid; min-height: 66px; align-items: center; border-bottom: 1px solid var(--n6d-border); grid-template-columns: 48px 1fr; font-size: .86rem; font-weight: 600; }
.n6d-signature__points span { color: var(--n6d-brass); font-family: var(--n6d-serif); font-weight: 400; }

/* Services */
.n6d-services__grid { display: grid; border-top: 1px solid rgba(31, 39, 31, .22); border-left: 1px solid rgba(31, 39, 31, .22); grid-template-columns: repeat(4, 1fr); }
.n6d-service { position: relative; display: flex; min-height: 430px; flex-direction: column; border-right: 1px solid rgba(31, 39, 31, .22); border-bottom: 1px solid rgba(31, 39, 31, .22); padding: 32px; overflow: hidden; transition: background .35s var(--n6d-ease), color .35s var(--n6d-ease), transform .35s var(--n6d-ease); }
.n6d-service::before { position: absolute; inset: auto 0 0; height: 0; background: var(--n6d-forest); content: ""; transition: height .45s var(--n6d-ease); z-index: 0; }
.n6d-service > * { position: relative; z-index: 1; }
.n6d-service__number { color: var(--n6d-brass); font-family: var(--n6d-serif); font-size: .95rem; }
.n6d-service__icon { margin: auto 0 50px; color: var(--n6d-brass); font-family: var(--n6d-serif); font-size: 3.6rem; font-weight: 300; line-height: 1; }
.n6d-service h3 { margin-bottom: 18px; }
.n6d-service p { margin-bottom: 24px; color: var(--n6d-muted); font-size: .92rem; line-height: 1.65; }
.n6d-service__link { margin-top: auto; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.n6d-service:hover { color: var(--n6d-white); transform: translateY(-8px); }
.n6d-service:hover::before { height: 100%; }
.n6d-service:hover h3 { color: var(--n6d-white); }
.n6d-service:hover p { color: rgba(255, 255, 255, .68); }

/* Project editorial grid */
.n6d-projects__filters { display: flex; margin: -36px 0 52px; flex-wrap: wrap; gap: 24px; color: var(--n6d-muted); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.n6d-projects__filters button { border: 0; border-bottom: 1px solid transparent; background: transparent; padding: 0 0 5px; color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; text-transform: inherit; transition: color .2s, border-color .2s; }
.n6d-projects__filters button:hover, .n6d-projects__filters button:focus-visible { color: var(--n6d-ink); }
.n6d-projects__filters .is-active { border-color: var(--n6d-brass); color: var(--n6d-ink); }
.n6d-projects__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 70px 28px; }
.n6d-card { grid-column: span 4; }
.n6d-card--wide { grid-column: span 8; }
.n6d-card__media { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--n6d-sand); }
.n6d-card--wide .n6d-card__media { aspect-ratio: 16 / 10; }
.n6d-card__media::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .22); content: ""; opacity: 0; transform: scale(.94); transition: opacity .35s, transform .45s var(--n6d-ease); }
.n6d-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--n6d-ease), filter .4s; }
.n6d-card:hover .n6d-card__media img { transform: scale(1.035); }
.n6d-card:hover .n6d-card__media::after { opacity: 1; transform: scale(.97); }
.n6d-card__body { padding-top: 26px; }
.n6d-card__eyebrow { display: block; margin-bottom: 11px; color: var(--n6d-brass); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.n6d-card__title { max-width: 690px; margin-bottom: 20px; font-size: clamp(1.35rem, 2.2vw, 2.1rem); }
.n6d-card__title a { transition: color .2s; }
.n6d-card__title a:hover { color: var(--n6d-brass); }
.n6d-card__summary { max-width: 610px; margin: -6px 0 22px; color: var(--n6d-muted); font-size: .84rem; line-height: 1.65; }
.n6d-card .n6d-arrow-link { font-size: .65rem; }
.n6d-showcase-card__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  background: rgba(17, 20, 16, .82);
  color: rgba(255, 255, 255, .86);
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.n6d-real-projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.n6d-real-projects__grid .n6d-card { grid-column: auto; }
.n6d-real-projects__grid .n6d-card__media { aspect-ratio: 4 / 3; }

/* Philosophy split */
.n6d-philosophy { display: grid; padding: 0; background: var(--n6d-forest); grid-template-columns: minmax(0, 1.16fr) minmax(460px, .84fr); }
.n6d-philosophy__image { min-height: 800px; overflow: hidden; }
.n6d-philosophy__image img { width: 100%; height: 100%; object-fit: cover; }
.n6d-philosophy__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(70px, 8vw, 130px); color: rgba(255, 255, 255, .72); }
.n6d-philosophy__content h2 { color: var(--n6d-white); font-size: clamp(2.5rem, 4.4vw, 4.8rem); }
.n6d-philosophy__content > p:not(.n6d-eyebrow) { margin: 40px 0; font-size: 1rem; line-height: 1.8; }

/* Process */
.n6d-process__list { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--n6d-border); list-style: none; grid-template-columns: repeat(4, 1fr); }
.n6d-process__list li { min-height: 310px; border-right: 1px solid var(--n6d-border); padding: 36px 38px; }
.n6d-process__list li:first-child { padding-left: 0; }
.n6d-process__list li:last-child { border-right: 0; }
.n6d-process__list span { display: block; margin-bottom: 64px; color: var(--n6d-brass); font-family: var(--n6d-serif); }
.n6d-process__list h3 { margin-bottom: 22px; }
.n6d-process__list p { margin: 0; color: var(--n6d-muted); font-size: .9rem; }

/* Deliverables */
.n6d-commitments__grid { display: grid; border-top: 1px solid rgba(31, 39, 31, .2); border-left: 1px solid rgba(31, 39, 31, .2); grid-template-columns: repeat(3, 1fr); }
.n6d-commitments__grid > div { min-height: 250px; border-right: 1px solid rgba(31, 39, 31, .2); border-bottom: 1px solid rgba(31, 39, 31, .2); padding: 34px; }
.n6d-commitments__grid span { display: block; margin-bottom: 48px; color: var(--n6d-brass); font-family: var(--n6d-serif); }
.n6d-commitments__grid h3 { margin-bottom: 16px; }
.n6d-commitments__grid p { margin: 0; color: var(--n6d-muted); font-size: .86rem; }

/* Testimonials */
.n6d-testimonials__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.n6d-quote-card { position: relative; display: flex; min-height: 390px; flex-direction: column; border: 1px solid var(--n6d-border); background: var(--n6d-white); padding: 42px 38px 36px; overflow: hidden; }
.n6d-quote-card__mark { position: absolute; top: -32px; right: 20px; color: rgba(178, 147, 91, .14); font-family: Georgia, serif; font-size: 10rem; line-height: 1; }
.n6d-quote-card blockquote { position: relative; margin: 48px 0 42px; font-family: var(--n6d-serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.42; }
.n6d-quote-card p { display: flex; margin: auto 0 0; flex-direction: column; font-size: .75rem; }
.n6d-quote-card strong { letter-spacing: .1em; text-transform: uppercase; }
.n6d-quote-card p span { margin-top: 5px; color: var(--n6d-muted); }

/* FAQ */
.n6d-faq__grid { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 160px); }
.n6d-faq__heading { position: sticky; top: 150px; align-self: start; }
.n6d-faq__heading h2 { max-width: 580px; }
.n6d-faq__heading > p:last-child { max-width: 500px; margin-top: 30px; color: var(--n6d-muted); }
.n6d-faq__items { border-top: 1px solid var(--n6d-border); }
.n6d-faq details { border-bottom: 1px solid var(--n6d-border); padding: 0; }
.n6d-faq summary { position: relative; padding: 27px 54px 27px 0; color: var(--n6d-ink); font-family: var(--n6d-serif); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; list-style: none; cursor: pointer; }
.n6d-faq summary::-webkit-details-marker { display: none; }
.n6d-faq summary::after { position: absolute; top: 27px; right: 2px; color: var(--n6d-brass); content: "+"; font-family: var(--n6d-sans); font-size: 1.2rem; }
.n6d-faq details[open] summary::after { content: "−"; }
.n6d-faq details p { max-width: 740px; margin: 0; padding: 0 54px 28px 0; color: var(--n6d-muted); font-size: .92rem; }

/* Journal */
.n6d-journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.n6d-journal-card__image { display: block; aspect-ratio: 3 / 2; margin-bottom: 24px; overflow: hidden; background: var(--n6d-sand); }
.n6d-journal-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--n6d-ease); }
.n6d-journal-card:hover img { transform: scale(1.04); }
.n6d-journal-card__meta { margin: 0 0 12px; color: var(--n6d-brass); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.n6d-journal-card h3 { margin-bottom: 22px; font-size: clamp(1.35rem, 2vw, 1.9rem); }
.n6d-journal-card h3 a:hover { color: var(--n6d-brass); }
.n6d-journal-card .n6d-arrow-link { font-size: .64rem; }

/* Contact section */
.n6d-contact { background: var(--n6d-ink); color: rgba(255, 255, 255, .72); }
.n6d-contact__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(540px, 1fr); gap: clamp(70px, 10vw, 160px); }
.n6d-contact__content h2 { max-width: 620px; color: var(--n6d-white); }
.n6d-contact__content > p:not(.n6d-eyebrow) { max-width: 580px; margin: 36px 0; }
.n6d-contact__phone { display: flex; align-items: flex-start; flex-direction: column; color: var(--n6d-brass-light); font-family: var(--n6d-serif); font-size: clamp(1.65rem, 3vw, 2.7rem); line-height: 1.2; }
.n6d-contact__phone span { margin-bottom: 8px; color: rgba(255, 255, 255, .55); font-family: var(--n6d-sans); font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.n6d-contact-form { position: relative; display: grid; gap: 25px; }
.n6d-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.n6d-contact-form label { display: grid; gap: 9px; }
.n6d-contact-form label > span { color: rgba(255, 255, 255, .56); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.n6d-contact-form input, .n6d-contact-form select, .n6d-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .26);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--n6d-white);
  padding: 10px 0 13px;
  transition: border-color .2s;
}
.n6d-contact-form select option { background: var(--n6d-ink); }
.n6d-contact-form textarea { resize: vertical; }
.n6d-contact-form input:focus, .n6d-contact-form select:focus, .n6d-contact-form textarea:focus { border-color: var(--n6d-brass-light); }
.n6d-contact-form__footer { display: flex; margin-top: 8px; align-items: center; gap: 26px; }
.n6d-contact-form__footer p { max-width: 210px; margin: 0; color: rgba(255, 255, 255, .45); font-size: .69rem; line-height: 1.45; }
.n6d-contact-form.is-sending { opacity: .68; pointer-events: none; }
.n6d-form-message { display: none; padding: 12px 16px; border-left: 2px solid var(--n6d-brass); color: var(--n6d-white); font-size: .84rem; }
.n6d-form-message.is-visible { display: block; }
.n6d-form-message.is-error { border-color: #e18879; color: #f5c0b8; }
.n6d-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* Inner page and article templates */
.n6d-breadcrumbs { display: flex; margin-bottom: 34px; flex-wrap: wrap; gap: 9px; color: var(--n6d-muted); font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; }
.n6d-breadcrumbs a:hover { color: var(--n6d-brass); }
.n6d-page-hero { position: relative; padding: clamp(90px, 11vw, 170px) 0 clamp(70px, 8vw, 120px); background: var(--n6d-sand); overflow: hidden; isolation: isolate; }
.n6d-page-hero::after { position: absolute; z-index: -1; top: -50%; right: -10%; width: 48vw; aspect-ratio: 1; border: 1px solid rgba(178, 147, 91, .25); border-radius: 50%; content: ""; }
.n6d-page-hero h1 { max-width: 1100px; font-size: clamp(3rem, 6vw, 6.5rem); }
.n6d-page-hero .n6d-container > p:last-child { max-width: 720px; margin: 30px 0 0; color: var(--n6d-muted); font-size: 1.08rem; }
.n6d-page-hero--image { min-height: 600px; display: flex; align-items: end; color: var(--n6d-white); }
.n6d-page-hero__media, .n6d-page-hero__shade { position: absolute; z-index: -2; inset: 0; }
.n6d-page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.n6d-page-hero__shade { z-index: -1; background: linear-gradient(90deg, rgba(14, 18, 15, .85), rgba(14, 18, 15, .3)); }
.n6d-page-hero--image h1 { color: var(--n6d-white); }
.n6d-page-hero--image .n6d-breadcrumbs { color: rgba(255, 255, 255, .66); }
.n6d-page-hero--image .n6d-container > p:last-child { color: rgba(255, 255, 255, .78); }
.n6d-portfolio-hero .n6d-page-hero__media img { object-position: center 52%; }
.n6d-portfolio-list__grid .n6d-card { grid-column: auto; }
.n6d-portfolio-list__grid .n6d-card__media { aspect-ratio: 4 / 5; }
.n6d-single-hero { padding-top: clamp(70px, 9vw, 130px); }
.n6d-single-hero__heading { display: grid; margin-bottom: clamp(55px, 7vw, 100px); grid-template-columns: minmax(0, 1fr) auto; gap: 50px; align-items: end; }
.n6d-single-hero h1 { max-width: 1050px; font-size: clamp(2.8rem, 5.8vw, 6.2rem); }
.n6d-single-hero__meta { display: flex; padding-bottom: 10px; flex-direction: column; color: var(--n6d-muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.n6d-single-hero__image { width: min(100% - 48px, 1500px); max-height: 920px; margin: 0 auto; overflow: hidden; }
.n6d-single-hero__image img { width: 100%; max-height: 920px; object-fit: cover; }
.n6d-article { width: var(--n6d-reading); margin-inline: auto; }
.n6d-entry-content { font-size: 1.04rem; line-height: 1.85; }
.n6d-entry-content > *:first-child { margin-top: 0; }
.n6d-entry-content h2, .n6d-entry-content h3, .n6d-entry-content h4 { margin: 2.2em 0 .75em; line-height: 1.2; }
.n6d-entry-content h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); }
.n6d-entry-content h3 { font-size: clamp(1.55rem, 2.6vw, 2.35rem); }
.n6d-entry-content p, .n6d-entry-content ul, .n6d-entry-content ol { margin: 0 0 1.6em; }
.n6d-entry-content a { color: #8b6e39; text-decoration: underline; text-underline-offset: 3px; }
.n6d-entry-content blockquote { margin: 2.2em 0; border-left: 2px solid var(--n6d-brass); padding: 8px 0 8px 36px; color: var(--n6d-ink); font-family: var(--n6d-serif); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.45; }
.n6d-entry-content img { margin-block: 2.2em; }
.n6d-entry-content .alignwide { width: min(1220px, calc(100vw - 48px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.n6d-entry-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.n6d-entry-content table { display: block; width: 100%; margin: 2em 0; border-collapse: collapse; overflow-x: auto; }
.n6d-entry-content th, .n6d-entry-content td { border: 1px solid var(--n6d-border); padding: 12px 16px; text-align: left; }
.n6d-article__footer { display: flex; margin-top: 70px; align-items: center; justify-content: space-between; border-top: 1px solid var(--n6d-border); padding-top: 28px; font-size: .75rem; }
.n6d-article__footer > div > span { margin-right: 12px; color: var(--n6d-muted); text-transform: uppercase; }
.n6d-comments { border-top: 1px solid var(--n6d-border); }
.n6d-comments .n6d-entry-content { width: var(--n6d-reading); margin: auto; }
.comment-list { padding: 0; list-style: none; }
.comment-list li { margin-bottom: 24px; border-bottom: 1px solid var(--n6d-border); padding-bottom: 24px; }

/* Listings, pagination, 404 */
.n6d-listing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px 30px; }
.n6d-listing__grid .n6d-card { grid-column: auto; }
.n6d-listing__grid .n6d-card__media { aspect-ratio: 3 / 2; }
.n6d-pagination { margin-top: 80px; }
.n6d-pagination .nav-links { display: flex; align-items: center; justify-content: center; gap: 8px; }
.n6d-pagination .page-numbers { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--n6d-border); font-size: .8rem; }
.n6d-pagination .current, .n6d-pagination a:hover { border-color: var(--n6d-ink); background: var(--n6d-ink); color: var(--n6d-white); }
.n6d-empty { max-width: 700px; margin: auto; padding: 90px 0; text-align: center; }
.n6d-empty h2 { margin-bottom: 24px; }
.n6d-search-form { display: flex; max-width: 600px; margin: 35px auto 0; gap: 12px; }
.n6d-search-form label { flex: 1; }
.n6d-search-form input { width: 100%; height: 56px; border: 1px solid var(--n6d-border); background: var(--n6d-white); padding: 0 16px; }
.n6d-404 { min-height: 75vh; display: grid; place-items: center; text-align: center; }
.n6d-404 .n6d-container { max-width: 850px; }
.n6d-404__number { margin: 0; color: rgba(178, 147, 91, .2); font-family: var(--n6d-serif); font-size: clamp(8rem, 20vw, 18rem); line-height: .62; }
.n6d-404 .n6d-eyebrow { justify-content: center; margin-top: 40px; }
.n6d-404 h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
.n6d-404 .n6d-container > p:not(.n6d-404__number, .n6d-eyebrow) { max-width: 630px; margin: 30px auto; color: var(--n6d-muted); }
.n6d-404__actions { display: flex; justify-content: center; align-items: center; gap: 30px; }

/* Footer */
.n6d-footer-cta { background: var(--n6d-forest); color: var(--n6d-white); padding-block: 70px; }
.n6d-footer-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.n6d-footer-cta h2 { max-width: 900px; color: var(--n6d-white); font-size: clamp(2rem, 3.4vw, 3.5rem); }
.n6d-footer { background: #10120f; color: rgba(255, 255, 255, .61); }
.n6d-footer__grid { display: grid; padding-block: 90px 80px; grid-template-columns: 1.35fr .75fr .75fr 1fr; gap: clamp(40px, 6vw, 90px); }
.n6d-footer__brand img { width: 214px; height: auto; margin-bottom: 30px; }
.n6d-footer__brand p { max-width: 370px; font-size: .88rem; }
.n6d-footer h3 { margin-bottom: 26px; color: var(--n6d-white); font-family: var(--n6d-sans); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.n6d-footer__links { margin: 0; padding: 0; list-style: none; }
.n6d-footer__links li { margin-bottom: 12px; }
.n6d-footer__links a, .n6d-footer__contact a { font-size: .84rem; transition: color .2s; }
.n6d-footer__links a:hover, .n6d-footer__contact a:hover { color: var(--n6d-brass-light); }
.n6d-footer__contact p { margin-bottom: 20px; font-size: .84rem; }
.n6d-footer__contact a { display: block; margin-bottom: 7px; }
.n6d-footer__contact .n6d-footer__phone { margin: 26px 0 8px; color: var(--n6d-brass-light); font-family: var(--n6d-serif); font-size: 1.7rem; }
.n6d-footer__bottom { display: flex; min-height: 74px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .68rem; letter-spacing: .05em; }
.n6d-footer__bottom p { margin: 0; }
.n6d-floating-actions { position: fixed; z-index: 900; right: 20px; bottom: 24px; display: grid; gap: 10px; }
.n6d-floating-actions__item { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255, 255, 255, .65); border-radius: 50%; box-shadow: 0 8px 30px rgba(20, 24, 19, .18); transition: transform .2s; }
.n6d-floating-actions__item:hover { transform: translateY(-3px); }
.n6d-floating-actions__item--zalo { background: #1676d2; color: #fff; font-size: .65rem; font-weight: 800; }
.n6d-floating-actions__item--phone { background: var(--n6d-brass); }
.n6d-floating-actions__item svg { width: 21px; fill: var(--n6d-ink); }

/* Motion enhancement */
.has-js .n6d-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--n6d-ease), transform .8s var(--n6d-ease); }
.has-js .n6d-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1260px) {
  .n6d-header__inner { gap: 20px; }
  .n6d-menu { gap: 16px; }
  .n6d-menu > li > a { font-size: .72rem; }
  .n6d-philosophy { grid-template-columns: 1.05fr .95fr; }
  .n6d-philosophy__content { padding: 70px; }
  .n6d-footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .n6d-footer__contact { grid-column: 2 / 4; }
}

@media (max-width: 1080px) {
  :root { --n6d-container: min(100% - 40px, 1320px); --n6d-reading: min(100% - 40px, 920px); }
  .admin-bar .n6d-header { top: 32px; }
  .n6d-header__inner { min-height: 76px; justify-content: space-between; }
  .n6d-brand img, .n6d-brand .custom-logo { height: 51px; }
  .n6d-nav-toggle { display: flex; align-items: center; gap: 12px; }
  .n6d-header__actions { display: none; }
  .n6d-nav {
    position: fixed;
    z-index: 1001;
    inset: 76px 0 auto;
    display: block;
    max-height: calc(100vh - 76px);
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    background: var(--n6d-ivory);
    border-top: 1px solid var(--n6d-border);
    padding: 28px 20px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s, transform .3s var(--n6d-ease);
  }
  .n6d-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .n6d-nav.is-open::after { position: fixed; z-index: -1; inset: 76px 0 0; background: var(--n6d-ivory); content: ""; }
  .n6d-menu { display: block; }
  .n6d-menu > li { border-bottom: 1px solid var(--n6d-border); }
  .n6d-menu > li > a { min-height: 58px; font-family: var(--n6d-serif); font-size: 1.45rem; font-weight: 400; }
  .n6d-menu > li > a::after, .n6d-menu .menu-item-has-children > a::before { display: none; }
  .n6d-menu .sub-menu { position: static; display: none; width: 100%; padding: 0 0 20px 20px; border: 0; background: transparent; box-shadow: none; grid-template-columns: 1fr 1fr; opacity: 1; pointer-events: auto; transform: none; }
  .n6d-menu li.is-submenu-open > .sub-menu { display: grid; }
  .n6d-menu .sub-menu li { border-bottom-color: var(--n6d-border); }
  .n6d-menu .sub-menu a { color: var(--n6d-muted); }
  .n6d-menu .sub-menu a:hover { color: var(--n6d-brass); }
  .n6d-submenu-toggle { position: absolute; display: block; top: 13px; right: 0; width: 40px; height: 40px; border: 0; background: transparent; font-size: 1.3rem; }
  .n6d-submenu-toggle::before { content: "+"; }
  .is-submenu-open > .n6d-submenu-toggle::before { content: "−"; }
  .n6d-nav__cta { display: flex; width: 100%; margin-top: 28px; }
  .n6d-nav-toggle[aria-expanded="true"] .n6d-nav-toggle__icon i:first-child { transform: translateY(4px) rotate(45deg); }
  .n6d-nav-toggle[aria-expanded="true"] .n6d-nav-toggle__icon i:last-child { width: 25px; transform: translateY(-4px) rotate(-45deg); }
  .n6d-hero { min-height: 720px; }
  .n6d-trustbar__grid { grid-template-columns: 1fr 1fr; }
  .n6d-trustbar__grid > div:nth-child(2) { border-right: 0; }
  .n6d-trustbar__grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .n6d-trustbar__grid > div:nth-child(3) { padding-left: 0; }
  .n6d-values { grid-template-columns: 1fr 1fr; }
  .n6d-values > div:nth-child(2) { border-right: 0; }
  .n6d-values > div:nth-child(-n+2) { border-bottom: 1px solid var(--n6d-border); }
  .n6d-values > div:nth-child(3) { padding-left: 0; }
  .n6d-signature__grid { grid-template-columns: 1fr; }
  .n6d-signature__gallery { max-width: 850px; }
  .n6d-signature__content { max-width: 830px; }
  .n6d-services__grid { grid-template-columns: 1fr 1fr; }
  .n6d-service { min-height: 370px; }
  .n6d-projects__grid { gap-block: 55px; }
  .n6d-card { grid-column: span 6; }
  .n6d-card--wide { grid-column: span 12; }
  .n6d-philosophy { grid-template-columns: 1fr; }
  .n6d-philosophy__image { min-height: 620px; }
  .n6d-process__list { grid-template-columns: 1fr 1fr; }
  .n6d-process__list li:nth-child(2) { border-right: 0; }
  .n6d-process__list li:nth-child(-n+2) { border-bottom: 1px solid var(--n6d-border); }
  .n6d-process__list li:nth-child(3) { padding-left: 0; }
  .n6d-commitments__grid { grid-template-columns: 1fr 1fr; }
  .n6d-testimonials__cards { grid-template-columns: 1fr 1fr; }
  .n6d-testimonials__cards .n6d-quote-card:last-child { grid-column: 1 / -1; min-height: 300px; }
  .n6d-faq__grid { grid-template-columns: 1fr; }
  .n6d-faq__heading { position: static; max-width: 780px; }
  .n6d-real-projects__grid { grid-template-columns: 1fr 1fr; }
  .n6d-contact__grid { grid-template-columns: 1fr; }
  .n6d-contact__content { max-width: 780px; }
  .n6d-listing__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
  .admin-bar .n6d-header { top: 46px; }
}

@media (max-width: 720px) {
  :root { --n6d-container: min(100% - 32px, 1320px); --n6d-reading: min(100% - 32px, 920px); --n6d-section: 82px; }
  body { font-size: 15px; }
  .n6d-topbar { display: none; }
  .n6d-header__inner { min-height: 70px; }
  .n6d-brand img, .n6d-brand .custom-logo { height: 46px; max-width: 178px; }
  .n6d-nav { inset: 70px 0 auto; max-height: calc(100vh - 70px); max-height: calc(100svh - 70px); }
  .n6d-nav.is-open::after { inset: 70px 0 0; }
  .n6d-menu .sub-menu, .n6d-menu li.is-submenu-open > .sub-menu { grid-template-columns: 1fr; }
  .n6d-hero { min-height: calc(100vh - 70px); min-height: calc(100svh - 70px); }
  .n6d-hero__content { width: var(--n6d-container); max-width: none; padding-block: 78px 90px; }
  .n6d-hero h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .n6d-hero__lead { margin: 26px 0 32px; font-size: .98rem; }
  .n6d-hero__actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .n6d-hero__scroll { display: none; }
  .n6d-hero__shade { background: linear-gradient(90deg, rgba(13, 17, 14, .88), rgba(13, 17, 14, .45)), linear-gradient(0deg, rgba(13, 17, 14, .5), transparent); }
  .n6d-trustbar__grid > div { min-height: 108px; padding: 22px 18px; }
  .n6d-trustbar__grid > div:first-child, .n6d-trustbar__grid > div:nth-child(3) { padding-left: 0; }
  .n6d-trustbar strong { font-size: 1.55rem; }
  .n6d-trustbar span { font-size: .58rem; letter-spacing: .08em; }
  .n6d-intro__grid, .n6d-section-heading { grid-template-columns: 1fr; gap: 34px; }
  .n6d-intro h2, .n6d-section-heading h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .n6d-values { margin-top: 60px; grid-template-columns: 1fr; }
  .n6d-values > div { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--n6d-border); padding: 23px 0; grid-template-columns: 45px 1fr; align-items: center; }
  .n6d-values > div:last-child { border-bottom: 0; }
  .n6d-signature__gallery { grid-template-columns: 1.08fr .72fr; gap: 12px; }
  .n6d-signature__image--detail { margin-top: 52px; }
  .n6d-signature__content h2 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .n6d-services__grid { grid-template-columns: 1fr; }
  .n6d-service { min-height: 350px; padding: 28px; }
  .n6d-service:hover { transform: none; }
  .n6d-projects__filters { margin-top: -20px; gap: 16px; }
  .n6d-projects__grid { display: block; }
  .n6d-card { margin-bottom: 54px; }
  .n6d-card--wide .n6d-card__media, .n6d-card__media { aspect-ratio: 4 / 5; }
  .n6d-philosophy__image { min-height: 440px; }
  .n6d-philosophy__content { padding: 74px 24px; }
  .n6d-philosophy__content h2 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .n6d-process__list { grid-template-columns: 1fr; }
  .n6d-process__list li { min-height: auto; border-right: 0; border-bottom: 1px solid var(--n6d-border); padding: 30px 0; }
  .n6d-process__list li:last-child { border-bottom: 0; }
  .n6d-process__list span { margin-bottom: 30px; }
  .n6d-commitments__grid { grid-template-columns: 1fr; }
  .n6d-commitments__grid > div { min-height: auto; padding: 28px; }
  .n6d-commitments__grid span { margin-bottom: 28px; }
  .n6d-testimonials__cards { grid-template-columns: 1fr; }
  .n6d-testimonials__cards .n6d-quote-card:last-child { grid-column: auto; }
  .n6d-quote-card { min-height: 340px; padding: 34px 28px 30px; }
  .n6d-faq__grid { gap: 50px; }
  .n6d-faq summary { padding-right: 36px; }
  .n6d-faq details p { padding-right: 20px; }
  .n6d-journal__grid { grid-template-columns: 1fr; gap: 55px; }
  .n6d-real-projects__grid { grid-template-columns: 1fr; gap: 52px; }
  .n6d-contact__grid { gap: 55px; }
  .n6d-form-row { grid-template-columns: 1fr; }
  .n6d-contact-form__footer { align-items: flex-start; flex-direction: column; }
  .n6d-contact-form__footer .n6d-button { width: 100%; }
  .n6d-page-hero { padding-block: 85px 70px; }
  .n6d-page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  .n6d-page-hero--image { min-height: 520px; }
  .n6d-single-hero { padding-top: 70px; }
  .n6d-single-hero__heading { grid-template-columns: 1fr; gap: 28px; }
  .n6d-single-hero__image { width: 100%; }
  .n6d-entry-content .alignwide, .n6d-entry-content .alignfull { width: 100vw; }
  .n6d-article__footer { align-items: flex-start; flex-direction: column; gap: 25px; }
  .n6d-listing__grid { grid-template-columns: 1fr; }
  .n6d-search-form { flex-direction: column; }
  .n6d-404__actions { align-items: stretch; flex-direction: column; }
  .n6d-footer-cta__inner { grid-template-columns: 1fr; gap: 35px; }
  .n6d-footer__grid { grid-template-columns: 1fr 1fr; }
  .n6d-footer__brand { grid-column: 1 / -1; }
  .n6d-footer__contact { grid-column: 1 / -1; }
  .n6d-footer__bottom { min-height: 100px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
  .n6d-floating-actions { right: 12px; bottom: 15px; }
  .n6d-floating-actions__item { width: 44px; height: 44px; }
}

@media (max-width: 430px) {
  .n6d-nav-toggle__label { display: none; }
  .n6d-footer__grid { grid-template-columns: 1fr; }
  .n6d-footer__brand, .n6d-footer__contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .has-js .n6d-reveal { opacity: 1; transform: none; }
}

/* ========================================================================== 
   HOME6D UI refinement 1.3.0
   Balanced editorial imagery and a clearer Vietnamese type hierarchy.
   ========================================================================== */

:root {
  --n6d-ink: #151713;
  --n6d-ink-soft: #2b2f29;
  --n6d-brass: #9b7740;
  --n6d-muted: #5d6259;
  --n6d-reading: min(100% - 48px, 820px);
}

body {
  color: var(--n6d-ink-soft);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -.004em;
}

h1, h2 {
  font-weight: 500;
  letter-spacing: -.022em;
  line-height: 1.12;
}

h3, h4, h5, h6 {
  font-family: var(--n6d-sans);
  font-weight: 650;
  letter-spacing: -.016em;
  line-height: 1.36;
}

h1 { font-size: clamp(3rem, 5.4vw, 5.8rem); }
h2 { font-size: clamp(2.35rem, 3.8vw, 4.15rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.75rem); }

.n6d-eyebrow {
  margin-bottom: 20px;
  color: var(--n6d-brass);
  font-size: .75rem;
  letter-spacing: .16em;
}

.n6d-eyebrow::before {
  width: 42px;
  height: 2px;
}

.n6d-button {
  font-size: .78rem;
  letter-spacing: .1em;
}

.n6d-text-link,
.n6d-arrow-link {
  font-size: .76rem;
  letter-spacing: .085em;
}

.n6d-topbar { font-size: .72rem; }
.n6d-menu > li > a { font-size: .82rem; font-weight: 650; }
.n6d-menu .sub-menu a { font-size: .84rem; line-height: 1.5; }

.n6d-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 5.4vw, 5.75rem);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1.06;
}

.n6d-hero__lead {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}

.n6d-trustbar strong { font-weight: 500; }
.n6d-trustbar span { font-size: .7rem; letter-spacing: .1em; }

.n6d-intro h2,
.n6d-section-heading h2,
.n6d-signature__content h2,
.n6d-philosophy__content h2,
.n6d-contact__content h2 {
  font-size: clamp(2.35rem, 3.8vw, 4.15rem);
  line-height: 1.13;
  text-wrap: balance;
}

.n6d-intro__copy p,
.n6d-section-heading > p,
.n6d-signature__content > p:not(.n6d-eyebrow),
.n6d-philosophy__content > p:not(.n6d-eyebrow) {
  font-size: 1.05rem;
  line-height: 1.78;
}

.n6d-values strong { font-weight: 500; }
.n6d-values span { font-size: .92rem; line-height: 1.58; }

/* Equal, aligned diptych instead of one oversized and one undersized image. */
.n6d-signature__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
  gap: clamp(60px, 6vw, 96px);
}

.n6d-signature__gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
  align-items: stretch;
}

.n6d-signature__image--main,
.n6d-signature__image--detail {
  aspect-ratio: 4 / 5;
  margin-top: 0;
  box-shadow: 0 22px 55px rgba(24, 28, 22, .1);
}

.n6d-signature__image img { object-position: center; }
.n6d-signature__points li { font-size: .92rem; line-height: 1.55; }

.n6d-service h3,
.n6d-card__title,
.n6d-journal-card h3,
.n6d-process__list h3,
.n6d-commitments__grid h3 {
  color: var(--n6d-ink);
  font-family: var(--n6d-sans);
  font-weight: 650;
  letter-spacing: -.016em;
  line-height: 1.38;
}

.n6d-service p { font-size: .96rem; line-height: 1.72; }
.n6d-service__link { font-size: .72rem; letter-spacing: .1em; }

.n6d-card__eyebrow { font-size: .7rem; letter-spacing: .12em; }
.n6d-card__title { font-size: clamp(1.3rem, 1.75vw, 1.8rem); }
.n6d-card__summary { font-size: .94rem; line-height: 1.72; }

.n6d-process__list p,
.n6d-commitments__grid p { font-size: .94rem; line-height: 1.72; }

.n6d-quote-card blockquote {
  font-size: clamp(1.3rem, 1.75vw, 1.65rem);
  line-height: 1.5;
}

.n6d-faq summary {
  font-family: var(--n6d-sans);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -.012em;
  line-height: 1.48;
}

.n6d-faq details p { font-size: .98rem; line-height: 1.75; }

.n6d-journal-card__meta { font-size: .72rem; letter-spacing: .1em; }
.n6d-journal-card h3 { font-size: clamp(1.25rem, 1.55vw, 1.55rem); }
.n6d-journal-card .n6d-arrow-link { font-size: .69rem; }

.n6d-page-hero h1 {
  max-width: 1050px;
  font-size: clamp(2.9rem, 5vw, 5.35rem);
  line-height: 1.1;
}

.n6d-page-hero .n6d-container > p:last-child {
  font-size: 1.08rem;
  line-height: 1.78;
}

.n6d-single-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.75rem, 4.7vw, 4.85rem);
  line-height: 1.12;
}

.n6d-entry-content {
  color: #343831;
  font-size: 1.08rem;
  line-height: 1.9;
}

.n6d-entry-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -.018em;
  line-height: 1.22;
}

.n6d-entry-content h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  line-height: 1.38;
}

.n6d-footer-cta h2 { font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1.18; }
.n6d-footer h3 { letter-spacing: .12em; }
.n6d-footer__brand p,
.n6d-footer__links a,
.n6d-footer__contact a,
.n6d-footer__contact p { font-size: .9rem; line-height: 1.7; }

@media (max-width: 1100px) {
  .n6d-signature__grid { grid-template-columns: 1fr; gap: 64px; }
  .n6d-signature__gallery { width: 100%; max-width: 850px; }
  .n6d-signature__content { max-width: 780px; }
  .n6d-menu > li > a { font-family: var(--n6d-sans); font-size: 1.14rem; font-weight: 650; }
}

@media (max-width: 720px) {
  :root { --n6d-reading: min(100% - 32px, 820px); }
  body { font-size: 16px; line-height: 1.72; }
  .n6d-hero h1 { font-size: clamp(2.75rem, 11.5vw, 3.65rem); line-height: 1.08; }
  .n6d-intro h2,
  .n6d-section-heading h2,
  .n6d-signature__content h2,
  .n6d-philosophy__content h2,
  .n6d-contact__content h2 { font-size: clamp(2.15rem, 9.5vw, 3.05rem); line-height: 1.16; }
  .n6d-page-hero h1,
  .n6d-single-hero h1 { font-size: clamp(2.35rem, 10.5vw, 3.55rem); line-height: 1.13; }
  .n6d-signature__gallery { gap: 14px; }
  .n6d-signature__image--main,
  .n6d-signature__image--detail { margin-top: 0; }
  .n6d-entry-content { font-size: 1.03rem; line-height: 1.82; }
  .n6d-journal-card h3 { font-size: 1.35rem; }
}

@media (max-width: 520px) {
  .n6d-signature__gallery { grid-template-columns: 1fr; }
  .n6d-signature__image--main,
  .n6d-signature__image--detail { aspect-ratio: 4 / 3; }
}

/* ========================================================================== 
   HOME6D mobile density refinement 1.4.0
   Less empty space, stronger headings and compact content cards.
   ========================================================================== */

.n6d-section-heading { margin-bottom: clamp(46px, 5vw, 70px); }

.n6d-service {
  min-height: 370px;
  padding: 30px;
}

.n6d-service__icon {
  margin: 42px 0 32px;
  font-size: 3.1rem;
}

.n6d-service h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
}

.n6d-service p {
  font-size: 1.02rem;
  line-height: 1.68;
}

.n6d-process__list li { min-height: 275px; }
.n6d-process__list span { margin-bottom: 40px; }
.n6d-process__list h3,
.n6d-commitments__grid h3 { font-size: clamp(1.25rem, 1.55vw, 1.5rem); }

.n6d-commitments__grid > div { min-height: 225px; }
.n6d-commitments__grid span { margin-bottom: 32px; }

.n6d-quote-card { min-height: 350px; }
.n6d-quote-card blockquote { margin: 38px 0 32px; }

@media (max-width: 720px) {
  :root { --n6d-section: 64px; }

  .n6d-section-heading {
    margin-bottom: 38px;
    gap: 22px;
  }

  .n6d-intro__grid { gap: 24px; }
  .n6d-intro__copy p { margin-bottom: 24px; }

  .n6d-intro h2,
  .n6d-section-heading h2,
  .n6d-signature__content h2,
  .n6d-philosophy__content h2,
  .n6d-contact__content h2 {
    font-size: clamp(2.25rem, 9.8vw, 3.1rem);
  }

  .n6d-eyebrow {
    margin-bottom: 16px;
    font-size: .73rem;
  }

  .n6d-trustbar__grid > div {
    min-height: 94px;
    padding-block: 17px;
  }

  .n6d-trustbar strong { font-size: 1.68rem; }
  .n6d-trustbar span { font-size: .64rem; line-height: 1.45; }

  .n6d-values { margin-top: 42px; }
  .n6d-values > div {
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }
  .n6d-values strong { font-size: 1.08rem; }
  .n6d-values span { font-size: .98rem; line-height: 1.55; }

  .n6d-signature__grid { gap: 42px; }
  .n6d-signature__content > p:not(.n6d-eyebrow) { margin: 24px 0 28px; }
  .n6d-signature__points { margin-bottom: 30px; }
  .n6d-signature__points li { min-height: 58px; font-size: .96rem; }

  .n6d-services__grid { border-left: 0; }
  .n6d-service {
    display: grid;
    min-height: 0;
    padding: 25px 22px 24px;
    border-left: 3px solid var(--n6d-brass);
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto auto;
    column-gap: 18px;
  }

  .n6d-service__number {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: .9rem;
  }

  .n6d-service__icon {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 2.25rem;
  }

  .n6d-service h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 20px 0 10px;
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .n6d-service p {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
  }

  .n6d-service__link {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 19px;
    font-size: .75rem;
  }

  .n6d-projects__filters {
    margin: -8px 0 34px;
    gap: 14px;
  }

  .n6d-card { margin-bottom: 42px; }
  .n6d-card__body { padding-top: 20px; }
  .n6d-card__title { margin-bottom: 14px; font-size: 1.45rem; }
  .n6d-card__summary { margin-bottom: 18px; font-size: .98rem; }

  .n6d-philosophy__image { min-height: 350px; }
  .n6d-philosophy__content { padding: 56px 20px; }
  .n6d-philosophy__content > p:not(.n6d-eyebrow) { margin: 26px 0 30px; }

  .n6d-process__list li {
    min-height: 0;
    padding: 23px 0;
  }
  .n6d-process__list span { margin-bottom: 14px; font-size: 1.02rem; }
  .n6d-process__list h3 { margin-bottom: 10px; font-size: 1.35rem; }
  .n6d-process__list p { font-size: .98rem; }

  .n6d-commitments__grid > div {
    min-height: 0;
    padding: 23px 21px;
  }
  .n6d-commitments__grid span { margin-bottom: 14px; font-size: 1rem; }
  .n6d-commitments__grid h3 { margin-bottom: 9px; font-size: 1.32rem; }
  .n6d-commitments__grid p { font-size: .98rem; }

  .n6d-testimonials__cards { gap: 18px; }
  .n6d-quote-card,
  .n6d-testimonials__cards .n6d-quote-card:last-child {
    min-height: 0;
    padding: 28px 23px 24px;
  }
  .n6d-quote-card__mark { top: -40px; font-size: 8rem; }
  .n6d-quote-card blockquote {
    margin: 30px 0 26px;
    font-size: 1.3rem;
    line-height: 1.48;
  }
  .n6d-quote-card p { font-size: .8rem; }

  .n6d-faq__grid { gap: 32px; }
  .n6d-faq__heading > p:last-child { margin-top: 20px; }
  .n6d-faq summary {
    padding-block: 21px;
    font-size: 1.15rem;
    line-height: 1.45;
  }
  .n6d-faq summary::after { top: 21px; }
  .n6d-faq details p { padding-bottom: 22px; font-size: 1rem; }

  .n6d-journal__grid { gap: 42px; }
  .n6d-journal-card__image { margin-bottom: 18px; }
  .n6d-journal-card h3 { margin-bottom: 16px; font-size: 1.45rem; line-height: 1.36; }

  .n6d-contact__grid { gap: 38px; }
  .n6d-contact__content > p:not(.n6d-eyebrow) { margin: 24px 0 28px; }
  .n6d-contact-form { gap: 20px; }

  .n6d-page-hero { padding-block: 68px 50px; }
  .n6d-single-hero { padding-top: 52px; }
  .n6d-single-hero__heading { gap: 20px; }

  .n6d-footer-cta { padding-block: 58px; }
  .n6d-footer-cta__inner { gap: 26px; }
  .n6d-footer__grid { padding-block: 54px; gap: 36px 24px; }
  .n6d-footer__bottom { min-height: 82px; }
}

@media (max-width: 430px) {
  .n6d-service { padding-inline: 20px; }
  .n6d-card__title,
  .n6d-journal-card h3 { font-size: 1.4rem; }
}

/* Bright contemporary hero image treatment 1.5.0. */
.n6d-hero__image {
  object-position: center center;
  filter: brightness(1.04) saturate(.96) contrast(1.01);
}

.n6d-hero__shade {
  background:
    linear-gradient(90deg, rgba(14, 18, 16, .72) 0%, rgba(14, 18, 16, .52) 42%, rgba(14, 18, 16, .14) 74%, rgba(14, 18, 16, .05) 100%),
    linear-gradient(0deg, rgba(14, 18, 16, .22), transparent 48%);
}

@media (max-width: 720px) {
  .n6d-hero__image { object-position: 60% center; }
  .n6d-hero__shade {
    background:
      linear-gradient(90deg, rgba(14, 18, 16, .78), rgba(14, 18, 16, .38)),
      linear-gradient(0deg, rgba(14, 18, 16, .34), transparent 55%);
  }
}

/*
 * Hero source fail-safe 1.6.0.
 * The plugin also replaces the img URL in rendered HTML. Keeping the same
 * bundled image as the media background prevents Customizer and full-page
 * cache layers from restoring the old dark hero.
 */
.n6d-hero__media {
  background: #c9c4b8 url("../images/home6d-hero-modern-luxury.webp") center center / cover no-repeat;
}

.n6d-hero__media > .n6d-hero__image {
  opacity: 0;
}

@media (max-width: 720px) {
  .n6d-hero__media { background-position: 60% center; }
}

/* Curated Vietnamese project collection 1.7.0. */
.n6d-portfolio-list__grid {
  align-items: start;
  gap: clamp(46px, 5vw, 74px) clamp(20px, 2.4vw, 34px);
}

.n6d-portfolio-list__grid .n6d-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ded8cc;
}

.n6d-portfolio-list__grid .n6d-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--n6d-ease), filter .5s var(--n6d-ease);
}

.n6d-portfolio-list__grid .n6d-card:hover .n6d-card__media img {
  filter: saturate(.96) contrast(1.02);
  transform: scale(1.025);
}

.n6d-portfolio-list__grid .n6d-card__body {
  padding-top: 22px;
}

.n6d-portfolio-list__grid .n6d-card__title {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1.2;
}

.n6d-project-lead {
  margin-bottom: 40px;
  color: var(--n6d-ink);
  font-family: var(--n6d-serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.n6d-project-facts {
  margin: 0 0 clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--n6d-border);
  border-bottom: 1px solid var(--n6d-border);
}

.n6d-project-facts dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.n6d-project-facts dl > div {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid var(--n6d-border);
}

.n6d-project-facts dl > div:first-child { padding-left: 0; }
.n6d-project-facts dl > div:last-child { border-right: 0; }

.n6d-project-facts dt {
  margin-bottom: 8px;
  color: var(--n6d-brass);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.n6d-project-facts dd {
  margin: 0;
  color: var(--n6d-ink);
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .n6d-project-facts dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .n6d-project-facts dl > div {
    border-right: 0;
    border-bottom: 1px solid var(--n6d-border);
    padding-inline: 0 20px;
  }
  .n6d-project-facts dl > div:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 720px) {
  .n6d-portfolio-list__grid { gap-block: 44px; }
  .n6d-portfolio-list__grid .n6d-card__body { padding-top: 18px; }
  .n6d-portfolio-list__grid .n6d-card__title { font-size: 1.55rem; }
  .n6d-project-lead { margin-bottom: 30px; font-size: 1.35rem; }
  .n6d-project-facts { margin-bottom: 42px; }
  .n6d-project-facts dl { grid-template-columns: 1fr; }
  .n6d-project-facts dl > div,
  .n6d-project-facts dl > div:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--n6d-border);
    padding: 15px 0;
  }
  .n6d-project-facts dl > div:last-child { border-bottom: 0; }
}

/* Project case studies and bundled image galleries – 1.8.0 */
.n6d-project-story {
  display: grid;
  margin: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--n6d-border);
  border-left: 1px solid var(--n6d-border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.n6d-project-story section {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--n6d-border);
  border-bottom: 1px solid var(--n6d-border);
}

.n6d-project-story h2 {
  margin: 0 0 18px;
  font-family: var(--n6d-sans);
  font-size: clamp(1.3rem, 1.7vw, 1.72rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.n6d-project-story p:last-child { margin-bottom: 0; }

.n6d-project-kicker {
  margin: 0 0 16px;
  color: var(--n6d-brass);
  font-family: var(--n6d-sans);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.n6d-project-gallery {
  margin: clamp(56px, 8vw, 104px) 0;
}

.n6d-project-gallery__header {
  display: grid;
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 48px);
  gap: 8px;
}

.n6d-project-gallery__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.n6d-project-gallery__header > p:last-child {
  max-width: 610px;
  margin: 8px 0 0;
  color: var(--n6d-muted);
  font-size: 1rem;
}

.n6d-project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px) clamp(18px, 3vw, 36px);
}

.n6d-project-gallery__item {
  min-width: 0;
  margin: 0;
}

.n6d-project-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #e9e5dc;
}

.n6d-project-gallery__item figcaption {
  padding-top: 13px;
  color: var(--n6d-muted);
  font-family: var(--n6d-sans);
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .n6d-project-story {
    margin: 38px 0 52px;
    grid-template-columns: 1fr;
  }

  .n6d-project-story section { padding: 24px 20px; }
  .n6d-project-story h2 { font-size: 1.35rem; }

  .n6d-project-gallery { margin: 48px 0 58px; }
  .n6d-project-gallery__header { margin-bottom: 26px; }
  .n6d-project-gallery__header h2 { font-size: 2.25rem; }
  .n6d-project-gallery__header > p:last-child { font-size: .96rem; }
  .n6d-project-gallery__grid { grid-template-columns: 1fr; gap: 28px; }
  .n6d-project-gallery__item figcaption { padding-top: 11px; font-size: .7rem; }
}
