
:root {
  --gold:        #bf8b45;
  --gold-deep:   #a5742e;
  --gold-text:   #8a6425;
  --gold-soft:   rgba(191, 139, 69, 0.13);

  --paper:       #faf7f1;
  --paper-2:     #f3eee4;
  --white:       #ffffff;

  --ink:         #16140f;
  --body:        #565049;
  --muted:       #938b7e;
  --line:        #e7dfd1;
  --field-bg:    #fcfaf6;

  --footer-bg:   #14110d;
  --footer-text: rgba(245, 240, 232, 0.62);
  --footer-line: rgba(245, 240, 232, 0.10);

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --gutter:      clamp(1.25rem, 4vw, 5rem);
  --maxw:        1280px;
  --radius:      14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed; top: .75rem; left: 50%; z-index: 300;
  transform: translate(-50%, -160%);
  padding: .65rem 1.3rem; background: var(--gold); color: #fff;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; border-radius: 4px;
  transition: transform .35s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); outline: none; }

::selection { background: rgba(191, 139, 69, 0.22); color: var(--ink); }

.eyebrow {
  display: block;
  font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1.1rem;
}
.overline {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1.4rem;
}
.hero__content .overline { color: var(--gold); }

a:focus-visible {
  outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px;
}
.overline::before { content: ""; width: 2.2rem; height: 2px; background: var(--gold); }

.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .overline { justify-content: center; }
.section-title {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.06; letter-spacing: -0.01em;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-sub {
  margin-top: 1.2rem; max-width: 54ch; font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 300; line-height: 1.75; color: var(--body);
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 2.1rem; border-radius: 5px;
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; transition: all .35s var(--ease);
}
.btn--sm { padding: .8rem 1.5rem; }
.btn--gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
  box-shadow: 0 14px 28px -14px rgba(165, 116, 46, 0.65);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.btn--outline { color: var(--ink); border-color: var(--line); background: transparent; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease;
}
.nav--scrolled {
  background: rgba(12, 10, 7, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.1rem var(--gutter);
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 52px; width: auto; display: block; }
.brand__logo--footer { height: 44px; opacity: 0.9; }

.nav__links { display: flex; gap: clamp(1.1rem, 2vw, 2rem); }
.nav__links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.78); transition: color .3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }

.nav__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 4px; transition: all .35s var(--ease);
}
.nav__cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.lang-menu { position: relative; }
.lang-menu__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .8rem; border-radius: 4px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.28); color: rgba(245, 240, 232, 0.78);
  background: none; transition: all .3s var(--ease); white-space: nowrap;
}
.lang-menu__btn svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.lang-menu__btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-menu.is-open .lang-menu__btn svg { transform: rotate(180deg); }
.lang-menu__list {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 210;
  min-width: 132px; padding: .4rem;
  background: rgba(12, 10, 7, 0.97); border: 1px solid rgba(245, 240, 232, 0.12); border-radius: 8px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.lang-menu.is-open .lang-menu__list { opacity: 1; visibility: visible; transform: none; }
.lang-menu__list li a, .lang-menu__list li span {
  display: block; padding: .55rem .8rem; border-radius: 5px;
  font-size: .78rem; font-weight: 500; color: rgba(245, 240, 232, 0.85);
}
.lang-menu__list li .lang-menu__current { color: var(--gold); cursor: default; }
.lang-menu__list li a:hover { background: rgba(245, 240, 232, 0.08); color: #fff; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; transition: .3s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  padding-top: 70px;
  display: flex; align-items: center;
  background: #0c0a07;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/hero-home.jpg");
  background-size: cover; background-position: 62% center;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(12,10,7,0.94) 0%,
    rgba(12,10,7,0.86) 35%,
    rgba(12,10,7,0.38) 62%,
    rgba(12,10,7,0.04) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) clamp(2rem, 4vw, 3.5rem);
}
.hero__content { max-width: 50ch; }

.js .hero__content > * {
  opacity: 0; transform: translateY(26px);
  animation: heroRise 1s var(--ease) forwards;
}
.js .hero__content > .overline      { animation-delay: .15s; }
.js .hero__content > .hero__title   { animation-delay: .30s; }
.js .hero__content > .hero__text    { animation-delay: .48s; }
.js .hero__content > .hero__actions { animation-delay: .66s; }
@keyframes heroRise {
  to { opacity: 1; transform: none; }
}
.hero__title {
  font-family: var(--font-display); font-weight: 500; color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.015em;
}
.hero__title span { color: var(--gold); font-style: italic; }
.hero__text {
  margin-top: 1.2rem; max-width: 46ch; font-size: 1.05rem;
  font-weight: 300; line-height: 1.8; color: rgba(245, 240, 232, 0.72);
}
.hero__actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .btn--outline {
  color: rgba(245, 240, 232, 0.88); border-color: rgba(245, 240, 232, 0.3);
}
.hero .btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.work { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) var(--gutter); }
.work__list { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); }
.project { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; }
.project__media { position: relative; display: block; }
.project__frame { position: relative; aspect-ratio: 16 / 11; overflow: hidden; border-radius: 12px; }
.project__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1); will-change: transform; }
.project__media:hover img { transform: scale(1.07); }
.project__index {
  position: absolute; top: 1rem; left: 1.1rem; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-style: italic; color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.project__cat { margin-bottom: .9rem; font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-text); }
.project__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 3.5vw, 2.7rem); line-height: 1.1; color: var(--ink); margin-bottom: 1rem; }
.project__desc { max-width: 44ch; font-weight: 300; line-height: 1.7; margin-bottom: 1.4rem; }
.project__deliverables {
  display: flex; flex-wrap: wrap; gap: .35rem .6rem; margin: .9rem 0 1.2rem;
}
.project__deliverables li {
  font-size: .64rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-text); padding: .28rem .7rem; border: 1px solid rgba(191, 139, 69, 0.25); border-radius: 4px;
  background: rgba(191, 139, 69, 0.05);
}

@media (min-width: 900px) {
  .project { grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 5rem); }
  .project--reverse .project__media { order: 2; }
  .project--reverse .project__info { order: 1; }
}

.services { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(4.5rem, 9vw, 8rem) var(--gutter); }
.services > .section-head .overline,
.services > .section-head .eyebrow { color: var(--gold-text); }
.services > .section-head .section-title { color: var(--ink); }
.services > .section-head .section-sub { color: var(--body); }
.services > .section-head, .services__grid, .services__footer {
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: border-color 200ms var(--motion), transform 200ms var(--motion), box-shadow 200ms var(--motion);
}
.svc-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); box-shadow: 0 18px 44px -20px rgba(40,28,12,0.16); }
.svc-card__icon {
  width: 56px; height: 56px; margin-bottom: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft); border-radius: 12px; color: var(--gold);
  transition: border-color 200ms var(--motion), background 200ms var(--motion);
}
.svc-card:hover .svc-card__icon { border-color: rgba(191,139,69,0.4); background: var(--gold-soft); }
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card__title {
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.2; margin-bottom: .7rem;
}
.svc-card__desc { font-size: .9rem; font-weight: 300; line-height: 1.7; color: var(--body); }

.services__footer {
  margin: 2.8rem auto 0;
  display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap;
}
.services__footer p { font-size: .92rem; color: var(--muted); }

@media (max-width: 999px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.industries { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) var(--gutter); }
.industries__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ind-tile {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px; display: block;
}
.ind-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ind-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,0.05) 30%, rgba(20,16,10,0.78) 100%); }
.ind-tile:hover img { transform: scale(1.07); }
.ind-tile__label {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 1; color: #fff;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 500;
}
@media (min-width: 760px) { .industries__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.why { background: var(--paper); border-top: 1px solid var(--line); }
.why__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.why .section-title { color: var(--ink); }
.why .eyebrow { color: var(--gold-text); }

.why__checklist { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: .85rem; }
.why__checklist li { display: flex; align-items: center; gap: .85rem; font-size: .96rem; color: var(--body); }
.why__checklist li svg { flex: none; width: 20px; height: 20px; color: var(--gold); }

.why__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.why__pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  transition: border-color 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why__pillar:hover { border-color: var(--gold-soft); box-shadow: 0 14px 38px -18px rgba(40,28,12,0.18); transform: translateY(-3px); }
.why__pillar-icon {
  width: 48px; height: 48px; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft); border-radius: 50%; color: var(--gold);
  transition: border-color 200ms, background 200ms;
}
.why__pillar:hover .why__pillar-icon { border-color: rgba(191,139,69,0.4); background: var(--gold-soft); }
.why__pillar-icon svg { width: 22px; height: 22px; }
.why__pillar-title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); line-height: 1.25;
}

@media (max-width: 900px) { .why__inner { grid-template-columns: 1fr; } }

.about-section { background: var(--paper-2); border-top: 1px solid var(--line); padding: clamp(4.5rem, 9vw, 8rem) var(--gutter); }
.about-section > .section-head { max-width: var(--maxw); margin-left: auto; margin-right: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.about__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: var(--maxw); margin: 0 auto;
}
.about__card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: border-color 200ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about__card:hover { border-color: var(--gold-soft); transform: translateY(-4px); box-shadow: 0 18px 44px -20px rgba(40,28,12,0.16); }
.about__card-icon {
  width: 52px; height: 52px; margin-bottom: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft); border-radius: 50%; color: var(--gold);
}
.about__card-icon svg { width: 24px; height: 24px; }
.about__card-title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  color: var(--ink); margin-bottom: .9rem;
}
.about__card-text { font-size: .93rem; font-weight: 300; line-height: 1.78; color: var(--body); }
.about__card-text--quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--gold); font-weight: 500; line-height: 1.5;
}
@media (max-width: 760px) { .about__cards { grid-template-columns: 1fr; } }

.cta-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line); overflow: hidden;
}
.cta-banner__image {
  min-height: 360px;
  background: url("images/hero-home.jpg") 30% center / cover no-repeat;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cta-banner:hover .cta-banner__image { transform: scale(1.04); }
.cta-banner__text {
  background: var(--paper-2); padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.cta-banner__eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1rem;
}
.cta-banner__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--ink); line-height: 1.1; margin-bottom: 1.8rem;
}
@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__image { min-height: 240px; overflow: hidden; }
}

.process { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) var(--gutter); }
.process__steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; counter-reset: step; }
.step {
  position: relative; padding: 2rem 1.8rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(40, 28, 12, 0.25); }
.step__num { font-family: var(--font-display); font-style: italic; font-size: 2.4rem; font-weight: 600; color: var(--gold); opacity: .32; line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin: .4rem 0 .6rem; }
.step p { font-size: .92rem; font-weight: 300; line-height: 1.65; }
@media (min-width: 640px) { .process__steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .process__steps { grid-template-columns: repeat(4, 1fr); } }

.footer { background: var(--footer-bg); color: var(--footer-text); padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--footer-line);
}
.brand--footer .brand__name { color: #f3ede2; }
.footer__tagline { margin: 1.2rem 0 1.4rem; font-size: .88rem; line-height: 1.7; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--footer-line); transition: all .3s var(--ease); }
.footer__social svg { width: 17px; height: 17px; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer__col h4 { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer__col a, .footer__contact { display: block; font-size: .88rem; color: var(--footer-text); margin-bottom: .7rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__contact { display: flex; align-items: center; gap: .6rem; }
.footer__contact svg { width: 15px; height: 15px; flex: none; color: var(--gold); }
.footer__bottom {
  max-width: var(--maxw); margin: 1.6rem auto 0; display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: space-between; font-size: .78rem; color: rgba(245, 240, 232, 0.4);
}
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr; } }

@media (max-width: 940px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(12, 10, 7, 0.97); border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    max-height: 0; overflow: hidden; transition: max-height .45s var(--ease);
  }
  .nav__links.is-open { max-height: 80vh; }
  .nav__links a { padding: 1rem var(--gutter); border-top: 1px solid rgba(245, 240, 232, 0.08); }
}

:root { --motion: cubic-bezier(0.2, 0.8, 0.2, 1); }

.nav__links a { position: relative; padding-bottom: 3px; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 220ms var(--motion);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.btn {
  transition: background 180ms var(--motion), border-color 180ms var(--motion),
    transform 180ms var(--motion), box-shadow 180ms var(--motion), color 180ms var(--motion);
}
.btn--gold:hover { box-shadow: 0 18px 36px -16px rgba(165,116,46,0.55); }

.ind-tile img { filter: brightness(0.9) saturate(0.85); transition: transform 900ms var(--motion), filter 900ms var(--motion); will-change: transform; }
.ind-tile:hover img { transform: scale(1.06); filter: brightness(0.96) saturate(0.9); }

.step { transition: transform 180ms var(--motion), box-shadow 180ms var(--motion); }
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 52px -28px rgba(40,28,12,0.25); }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms var(--motion), transform 640ms var(--motion);
}
.reveal.is-visible { opacity: 1; transform: none; }

.js .reveal--left  { transform: translate3d(-32px, 12px, 0); }
.js .reveal--right { transform: translate3d(32px, 12px, 0); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: none; }

.services__grid .svc-card:nth-child(2) { transition-delay: 80ms; }
.services__grid .svc-card:nth-child(3) { transition-delay: 160ms; }
.services__grid .svc-card:nth-child(4) { transition-delay: 80ms; }
.services__grid .svc-card:nth-child(5) { transition-delay: 160ms; }
.services__grid .svc-card:nth-child(6) { transition-delay: 240ms; }

.services__grid .svc-card.is-visible { transition-delay: 0ms; }

.industries__grid .ind-tile:nth-child(2) { transition-delay: 70ms; }
.industries__grid .ind-tile:nth-child(3) { transition-delay: 140ms; }
.industries__grid .ind-tile:nth-child(4) { transition-delay: 70ms; }
.industries__grid .ind-tile:nth-child(5) { transition-delay: 140ms; }
.industries__grid .ind-tile:nth-child(6) { transition-delay: 210ms; }
.industries__grid .ind-tile.is-visible { transition-delay: 0ms; }

.about__cards .about__card:nth-child(2) { transition-delay: 90ms; }
.about__cards .about__card:nth-child(3) { transition-delay: 180ms; }
.about__cards .about__card.is-visible { transition-delay: 0ms; }

.process__steps .step:nth-child(2) { transition-delay: 90ms; }
.process__steps .step:nth-child(3) { transition-delay: 180ms; }
.process__steps .step:nth-child(4) { transition-delay: 270ms; }
.process__steps .step.is-visible { transition-delay: 0ms; }

.hero__title, .section-title, .project__title, .cta-banner__title {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.about__card { position: relative; overflow: hidden; }
.about__card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: height 300ms var(--motion);
}
.about__card:hover::before { height: 100%; }

.why__pillar:hover .why__pillar-title { color: var(--gold); transition: color 200ms var(--motion); }

.footer__tagline { font-style: italic; font-family: var(--font-display); font-size: .95rem; color: rgba(245,240,232,0.52); }

.ind-tile__label { font-weight: 600; letter-spacing: .04em; font-style: normal; }

.step h3 { letter-spacing: -0.01em; }

html { scroll-padding-top: 80px; }

@media (max-width: 760px) {
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(2.1rem, 8vw, 3rem); }
  .hero__text { font-size: .95rem; }
  .hero__actions { gap: .8rem; }
  .hero__actions .btn { padding: .95rem 1.6rem; font-size: .72rem; }

  .work { padding: clamp(3rem, 8vw, 5rem) var(--gutter); }
  .work__list { gap: clamp(3rem, 8vw, 5rem); }

  .services { padding: clamp(3rem, 8vw, 5rem) var(--gutter); }

  .industries { padding: clamp(3rem, 8vw, 5rem) var(--gutter); }
  .industries__grid { grid-template-columns: 1fr; gap: .8rem; }
  .ind-tile { aspect-ratio: 16/9; }

  .why { padding: 0; }
  .why__inner { padding: clamp(3rem, 8vw, 5rem) var(--gutter); gap: 2.5rem; }
  .why__pillars { grid-template-columns: 1fr; }

  .process { padding: clamp(3rem, 8vw, 5rem) var(--gutter); }
  .process__steps { grid-template-columns: 1fr; gap: 1rem; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__col { padding-bottom: 1.5rem; border-bottom: 1px solid var(--footer-line); }
  .footer__col:last-child { border-bottom: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .footer__bottom a { min-height: 44px; display: inline-flex; align-items: center; }

  .nav__links a { min-height: 48px; display: flex; align-items: center; }
  .footer__col a { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 480px) {
  .about__cards { gap: 1rem; }
  .cta-banner__text { padding: 2.5rem var(--gutter); }
  .section-title { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }

  .js .reveal, .js .hero__content > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}

.nav__lang { display: none; }
@media (max-width: 940px) {
  .lang-menu { display: none; }
  .nav__lang { display: block; }
}
