﻿:root {
  --gold: #d4a017;
  --gold-bright: #fcd339;
  --gold-strong: #b78812;
  --gold-soft: #f1e2b1;
  --navy: #0b3d91;
  --navy-deep: #071f4d;
  --navy-soft: #143f89;
  --wood: #4a2e1a;
  --wood-deep: #2f1b10;
  --wood-soft: #7a5734;
  --ink: #0f172a;
  --muted: #5f687b;
  --bg: #f7f0de;
  --paper: #fffdf8;
  --soft: #efe2be;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 22px 60px rgba(74, 46, 26, 0.14);
  --shadow-soft: 0 16px 38px rgba(74, 46, 26, 0.1);
  --shadow-strong: 0 30px 80px rgba(47, 27, 16, 0.18);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f0de 0%, #fbf7ee 38%, #fffdf8 100%);
}

img {
  max-width: 100%;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(183, 136, 18, 0.16);
  background: rgba(252, 247, 232, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  min-width: 6rem;
  padding: 0.55rem;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(92, 60, 35, 0.98), rgba(47, 27, 16, 0.98));
  border: 1px solid rgba(252, 211, 57, 0.22);
  box-shadow: var(--shadow);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(252, 211, 57, 0.06));
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wood-deep);
}

.brand-text small {
  max-width: 23rem;
  color: rgba(74, 46, 26, 0.72);
  font-size: 0.73rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--wood-deep);
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.84;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.45rem;
  border-radius: 1rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--wood-deep);
  font-size: 0.92rem;
  box-shadow: 0 16px 34px rgba(183, 136, 18, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(125deg, rgba(88, 57, 26, 0.94), rgba(183, 136, 18, 0.88)),
    radial-gradient(circle at top right, rgba(11, 61, 145, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(252, 211, 57, 0.22), rgba(212, 160, 23, 0.08)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255, 248, 220, 0.08) calc(100% - 1px)),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 248, 220, 0.08) calc(100% - 1px)),
    radial-gradient(circle at top right, rgba(11, 61, 145, 0.14), transparent 22%);
  background-size: 76px 76px, 76px 76px, auto;
  opacity: 0.88;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.2rem;
  padding: 6.8rem 0 5.8rem;
}

.eyebrow,
.section-label,
.project-type,
.note-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #aa7410;
}

.hero .eyebrow,
.hero .section-label,
.hero .project-type,
.hero .note-label,
.board-card.dark .note-label {
  color: #ffe08a;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
}

h1 {
  margin-top: 1.2rem;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  line-height: 1.08;
  max-width: 12ch;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.hero-text,
.section-copy p,
.section-heading p,
.feature-item p,
.project-copy p,
.footer-copy,
.cta-box p {
  line-height: 1.8;
}

.hero-text {
  max-width: 60rem;
  margin: 1.2rem 0 0;
  color: rgba(241, 245, 249, 0.9);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--wood-deep);
  box-shadow: 0 18px 40px rgba(212, 160, 23, 0.22);
}

.button-light {
  border: 1px solid rgba(255, 240, 196, 0.32);
  background: rgba(63, 36, 17, 0.22);
  color: #fffdf8;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 248, 220, 0.12);
  border-radius: 2rem;
  background: rgba(255, 248, 230, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

.hero-photo-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-photo,
.capability-photo {
  min-height: 17rem;
  background-size: cover;
  background-position: center;
}

.hero-photo {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(47, 27, 16, 0.08), rgba(47, 27, 16, 0.82)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80");
}

.hero-photo-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.35rem;
}

.hero-photo-copy h3 {
  margin-top: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #fffdf8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card,
.service-card,
.feature-item,
.project-card,
.timeline-card,
.cta-box,
.capability-visual,
.visual-notes article,
.credibility-item {
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 248, 220, 0.14);
  background: rgba(255, 252, 244, 0.08);
  border-radius: 1.35rem;
}

.stat-number {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffe08a;
}

.stat-label {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.6;
}

.section {
  padding: 6.5rem 0;
}

.credibility-strip {
  position: relative;
  margin-top: -2rem;
  z-index: 3;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.credibility-item {
  padding: 1.4rem 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(183, 136, 18, 0.14);
  background: rgba(255, 252, 245, 0.96);
}

.credibility-item h3 {
  margin-top: 0.7rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--wood-deep);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(212, 160, 23, 0.08), rgba(255, 255, 255, 0)),
    #f7f0de;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(252, 211, 57, 0.1), transparent 22%),
    linear-gradient(180deg, #faf5e8, #f3ebd8);
  color: var(--ink);
}

.section-dark h2,
.section-dark .section-heading p {
  color: var(--ink);
}

.two-col,
.capability-grid,
.footer-grid,
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.section-copy p,
.section-heading p,
.footer-copy,
.footer-info p {
  color: var(--muted);
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading h2 {
  margin-top: 0.8rem;
}

.section-heading p {
  margin: 1rem auto 0;
  max-width: 46rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card,
.feature-item,
.timeline-card,
.visual-notes article {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf7, #ffffff);
  border-radius: 1.35rem;
}

.service-card {
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 1.35rem 0 0 1.35rem;
  background: linear-gradient(180deg, var(--gold-bright), rgba(122, 87, 52, 0.34));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(252, 211, 57, 0.45);
  box-shadow: var(--shadow);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 0.95rem;
  background: rgba(252, 211, 57, 0.22);
  color: var(--wood-deep);
  font-weight: 800;
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.35;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-item span,
.timeline-card span {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(252, 211, 57, 0.2);
  color: var(--wood-deep);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.capability-visual {
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffef8, #ffffff);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.capability-photo {
  min-height: 26rem;
  border-radius: 1.5rem;
  background-image:
    linear-gradient(180deg, rgba(74, 46, 26, 0.08), rgba(74, 46, 26, 0.24)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80");
}

.visual-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.visual-notes article {
  background: #fbf3df;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.project-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 77, 0.08);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 1.45rem;
}

.project-visual {
  min-height: 14rem;
}

.project-card.tall .project-visual {
  min-height: 20rem;
}

.project-visual.gold {
  background:
    linear-gradient(135deg, rgba(7, 31, 77, 0.22), rgba(7, 31, 77, 0.04)),
    linear-gradient(135deg, rgba(252, 211, 57, 0.92), rgba(212, 160, 23, 0.26));
}

.project-visual.navy {
  background:
    linear-gradient(135deg, rgba(252, 211, 57, 0.26), rgba(7, 31, 77, 0.16)),
    linear-gradient(135deg, rgba(14, 49, 116, 1), rgba(7, 31, 77, 0.96));
}

.project-visual.mixed {
  background:
    linear-gradient(135deg, rgba(252, 211, 57, 0.3), rgba(7, 31, 77, 0.08)),
    linear-gradient(135deg, rgba(247, 220, 138, 0.96), rgba(14, 49, 116, 0.82));
}

.project-copy {
  padding: 1.4rem;
}

.project-copy h3 {
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.4;
}

.project-meta {
  margin: 0.65rem 0 0;
  color: rgba(74, 46, 26, 0.76);
  line-height: 1.6;
}

.project-copy > p:last-of-type {
  color: var(--muted);
  line-height: 1.75;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(252, 211, 57, 0.2);
  color: var(--wood-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.timeline-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.timeline-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  align-items: center;
  padding: 3rem;
  border: 1px solid rgba(183, 136, 18, 0.14);
  background:
    radial-gradient(circle at top right, rgba(122, 87, 52, 0.12), transparent 24%),
    linear-gradient(135deg, #fff6dd, #efd8a2);
  box-shadow: var(--shadow);
  border-radius: 1.8rem;
}

.cta-box h2,
.cta-box p {
  color: var(--wood-deep);
}

.cta-actions {
  display: flex;
  justify-content: end;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f6eedc;
}

.footer-grid {
  padding: 3rem 0;
}

.footer-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wood-deep);
}

.footer-copy {
  margin-top: 1rem;
  max-width: 45rem;
}

.footer-info {
  display: grid;
  gap: 0.65rem;
}

.socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.6rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--wood-deep);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-cta {
    align-self: center;
  }

  .hero-layout,
  .two-col,
  .capability-grid,
  .credibility-grid,
  .footer-grid,
  .cta-box,
  .timeline,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero-layout,
  .section,
  .footer-grid {
    gap: 1.5rem;
  }

  .hero-layout {
    padding: 4.8rem 0 4.2rem;
  }

  .stats-grid,
  .visual-notes,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2rem;
  }

  h1 {
    font-size: 2.8rem;
    max-width: 100%;
  }

  h2 {
    font-size: 2rem;
  }

  .brand-mark {
    width: 4.7rem;
    min-width: 4.7rem;
  }

  .brand-text strong {
    letter-spacing: 0.12em;
  }

  .brand-text small {
    max-width: none;
  }
}





/* Hoang Gia refreshed layout */
.hero-hg {
  min-height: 100svh;
}

.hero-layout-hg {
  grid-template-columns: minmax(0, 1.28fr) minmax(20rem, 0.72fr);
  align-items: start;
  gap: 2.5rem;
  padding: 6rem 0 4.8rem;
}

.hero-hg h1 {
  max-width: 60rem;
  font-family: "Lobster", cursive;
  font-weight: 400;
  font-size: clamp(2.45rem, 4.2vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-proof article {
  padding: 1.2rem 1.15rem;
  border-radius: 1.3rem;
  background: rgba(255, 249, 233, 0.12);
  border: 1px solid rgba(255, 232, 168, 0.22);
  box-shadow: var(--shadow-soft);
}

.hero-proof span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffe08a;
}

.hero-proof p {
  margin: 0.5rem 0 0;
  color: rgba(255, 248, 236, 0.88);
  line-height: 1.65;
}

.hero-panel-hg {
  gap: 1rem;
  padding: 0;
  border: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-legal-card,
.hero-contact-card,
.about-fact-card,
.solution-card,
.board-card,
.case-card,
.process-step,
.contact-detail-card {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-legal-card,
.hero-contact-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 231, 171, 0.18);
  background: rgba(255, 250, 238, 0.12);
  color: #fff9ef;
}

.hero-legal-card h3 {
  margin-top: 0.6rem;
  font-size: 1.35rem;
  line-height: 1.45;
}

.legal-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
}

.legal-list div {
  display: grid;
  gap: 0.22rem;
}

.legal-list dt {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 226, 145, 0.8);
}

.legal-list dd,
.hero-contact-card p {
  margin: 0;
  line-height: 1.7;
}

.hero-contact-card a {
  color: #fff6cf;
}

.profile-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.profile-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.profile-ribbon-card {
  padding: 1.45rem 1.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 252, 244, 0.96);
  border: 1px solid rgba(183, 136, 18, 0.14);
  box-shadow: var(--shadow-soft);
}

.profile-ribbon-card h3 {
  margin-top: 0.6rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--wood-deep);
}

.section-profile {
  padding-top: 4.5rem;
}

.about-shell,
.capability-shell,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.about-intro p,
.capability-copy > p,
.contact-copy-block p {
  color: var(--muted);
  line-height: 1.85;
}

.about-principles {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-principles-row {
  grid-template-columns: repeat(3, 1fr);
}

.about-principles article {
  padding: 1.35rem 1.4rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(183, 136, 18, 0.12);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(255, 247, 228, 0.94));
  box-shadow: var(--shadow-soft);
}

.about-principles article p:last-child {
  margin: 0.55rem 0 0;
}

.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.core-values li {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(252, 211, 57, 0.2);
  color: var(--wood-deep);
  font-weight: 700;
}

.about-intro h2,
.capability-copy h2,
.contact-copy-block h2 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.about-side {
  display: grid;
  gap: 1rem;
}

.about-fact-card {
  padding: 1.5rem;
  border: 1px solid rgba(183, 136, 18, 0.14);
  background: linear-gradient(180deg, #fffdf8, #fff8ec);
}

.about-fact-card.accent {
  background: linear-gradient(180deg, #fff5d9, #f1deb0);
}

.fact-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.align-left p {
  margin-left: 0;
}

.services-shell {
  display: grid;
  gap: 2rem;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.solution-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid rgba(183, 136, 18, 0.12);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 246, 225, 0.94));
}

.solution-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff8e0, #f0dfb5);
}

.solution-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.solution-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #514946;
  line-height: 1.8;
}

.capability-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.capability-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.capability-points span {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(252, 211, 57, 0.22);
  color: var(--wood-deep);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.capability-points h3 {
  font-size: 1.2rem;
  line-height: 1.4;
}

.capability-points p {
  margin: 0.45rem 0 0;
}

.capability-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.board-card {
  padding: 1.4rem;
  border: 1px solid rgba(183, 136, 18, 0.12);
  background: linear-gradient(180deg, #fffdf7, #fff7e3);
}

.board-card.dark {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(74, 46, 26, 0.98), rgba(122, 87, 52, 0.96));
  color: #fff7e9;
  border-color: rgba(255, 224, 138, 0.2);
}

.board-card.dark h3,
.board-card.dark p {
  color: inherit;
}

.board-card.accent {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffe9b0, #efd18a);
}

.board-card p:last-child {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.case-card {
  padding: 1.45rem;
  border: 1px solid rgba(183, 136, 18, 0.12);
  background: rgba(255, 251, 243, 0.96);
}

.case-card-large {
  grid-row: span 2;
  background: linear-gradient(160deg, #fff8e4, #eedbb0);
}

.case-card h3 {
  margin-top: 0.55rem;
  font-size: 1.35rem;
  line-height: 1.42;
}

.case-card p:last-of-type {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-process {
  background: linear-gradient(180deg, rgba(255, 247, 226, 0.7), rgba(255, 255, 255, 0));
}

.process-shell {
  display: grid;
  gap: 1.6rem;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  padding: 1.5rem;
  border: 1px solid rgba(183, 136, 18, 0.12);
  background: linear-gradient(180deg, #fffdf8, #fff7e9);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--wood-deep);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-step h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.process-step p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-shell {
  padding: 3rem;
  border: 1px solid rgba(183, 136, 18, 0.14);
  border-radius: 2rem;
  background: linear-gradient(135deg, #fff7df, #f2ddb0);
  box-shadow: var(--shadow);
}

.contact-detail-card {
  padding: 1.6rem;
  border: 1px solid rgba(122, 87, 52, 0.14);
  background: rgba(255, 252, 245, 0.84);
}

.contact-detail-card p {
  margin: 0 0 0.75rem;
  color: #4d433f;
  line-height: 1.72;
}

.contact-detail-card p:last-child {
  margin-bottom: 0;
}

.button-dark-text {
  color: var(--wood-deep);
}

.footer-grid-hg {
  align-items: start;
}

@media (max-width: 1080px) {
  .hero-layout-hg,
  .about-shell,
  .capability-shell,
  .contact-shell,
  .profile-ribbon-grid,
  .about-principles-row,
  .process-line {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .service-stack,
  .case-grid,
  .capability-board {
    grid-template-columns: 1fr;
  }

  .solution-card.featured,
  .board-card.dark,
  .board-card.accent,
  .case-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .hero-layout-hg {
    padding: 4.4rem 0 3.6rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    padding: 2rem;
  }

  .solution-card,
  .capability-points article {
    grid-template-columns: 1fr;
  }

  .hero-hg h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.16;
  }
}
