/* ================================================================
   GWENNATO EPOXY — HOME PAGE v16
   ================================================================ */

/* ---------- HERO (epoxy substrate) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px var(--pad-x) 100px;
  isolation: isolate;
  background: var(--bg);
}

/* Background layers — black & gold epoxy marble */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}
.hero__bg-image {
  position: absolute;
  inset: -4%;
  background: url("../background.jpeg") center / cover no-repeat;
  background-position: center 35%;
  animation: heroBgDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroBgDrift {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1.2%, 1.2%); }
}
.hero__bg-veil {
  position: absolute;
  inset: 0;
  background:
    /* dark veil from left for legibility */
    linear-gradient(95deg,
      rgba(8,7,10,0.88) 0%,
      rgba(8,7,10,0.62) 35%,
      rgba(8,7,10,0.32) 65%,
      rgba(8,7,10,0.55) 100%),
    /* top-and-bottom vignette so text breathes */
    linear-gradient(180deg,
      rgba(8,7,10,0.55) 0%,
      transparent 22%,
      transparent 70%,
      rgba(8,7,10,0.65) 100%);
}
.hero__bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
}

/* Subtle gold corner brackets framing the whole hero */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-2);
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}
.hero::before {
  top: 110px;
  left: var(--pad-x);
  border-right: 0;
  border-bottom: 0;
}
.hero::after {
  bottom: 60px;
  right: var(--pad-x);
  border-left: 0;
  border-top: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; min-width: 0; }

/* Right column — finish deck card */
.hero__deck {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__deck-card {
  width: 100%;
  max-width: 420px;
  padding: 28px 26px 24px;
  background: rgba(8, 7, 10, 0.55);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
}
.hero__deck-card::before,
.hero__deck-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-2);
  pointer-events: none;
}
.hero__deck-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero__deck-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.hero__deck-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
}
.hero__deck-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}
.hero__deck-count {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.hero__swatches {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.hero__swatch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(244, 239, 230, 0.02);
  transition: border-color .35s, transform .35s, background .35s;
}
.hero__swatch:hover {
  border-color: var(--gold-line);
  transform: translateX(3px);
  background: rgba(190, 120, 56, 0.05);
}
.hero__swatch-dot {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(244,239,230,0.12);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
}
.hero__swatch--gold .hero__swatch-dot {
  background: conic-gradient(from 30deg, #f5e6c0, #c9a458, #1a1410, #8a6118, #f5e6c0);
}
.hero__swatch--cosmic .hero__swatch-dot {
  background: conic-gradient(from 90deg, #061d3a, #2454ad, #0a3270, #d4a73e, #061d3a);
}
.hero__swatch--onyx .hero__swatch-dot {
  background: conic-gradient(from 30deg, #0a0a0a, #c9c2b3, #2a2a2a, #d1ccc1, #0a0a0a);
}
.hero__swatch--pearl .hero__swatch-dot {
  background: conic-gradient(from 60deg, #f4eee5, #d3c9b6, #efe6d4, #b8a98e, #f4eee5);
}
.hero__swatch strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.hero__swatch small {
  display: block;
  font-size: 0.66rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.hero__deck-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  width: 100%;
  font-weight: 500;
  transition: gap .35s;
}
.hero__deck-link:hover { gap: 16px; }
.hero__deck-link svg { width: 14px; height: 14px; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hero__vol {
  color: var(--gold-2);
  font-weight: 500;
}
.hero__rule {
  flex: 0 0 36px;
  height: 1px;
  background: var(--gold-line);
}
.hero__brand { font-weight: 500; }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6.4vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(8, 7, 10, 0.6);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
  display: inline-block;
}

.hero__desc {
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: auto;
  padding-bottom: 56px;
  flex-wrap: wrap;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.hero__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold-line);
  transition: background .35s;
}
.hero__link:hover::after { background: var(--gold-2); }
.hero__link svg { width: 14px; height: 14px; transition: transform .35s; }
.hero__link:hover svg { transform: translateX(4px); }

.hero__signature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  margin: 0;
}
.hero__signature dt {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.hero__signature dd {
  font-family: var(--f-display);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: var(--pad-x);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-3);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { to { left: 100%; } }

/* Title em — solid warm gold, fully legible against the marble bg */
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
  display: inline-block;
  text-shadow:
    0 1px 0 rgba(8, 7, 10, 0.6),
    0 0 24px rgba(217, 154, 85, 0.35);
}

@media (max-width: 1024px) {
  .hero { padding: 130px var(--pad-x) 90px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__signature { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero::before, .hero::after { display: none; }
  .hero__deck-card { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding: 120px var(--pad-x) 80px; }
  .hero__signature { grid-template-columns: 1fr; }
  .hero__cta { gap: 18px; }
  .hero__meta { flex-wrap: wrap; }
  .hero__bg-veil { background:
      linear-gradient(180deg, rgba(8,7,10,0.85) 0%, rgba(8,7,10,0.55) 50%, rgba(8,7,10,0.85) 100%); }
}

/* ---------- KEYWORD MARQUEE (below hero) ---------- */
.keyword-marquee {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}
.keyword-marquee__track {
  display: flex;
  width: max-content;
  animation: keywordScroll 32s linear infinite;
}
.keyword-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(244,239,230,0.32);
  white-space: nowrap;
}
.keyword-marquee__item .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}
@keyframes keywordScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- FINISH TEASER (new on home) ---------- */
.finish-teaser {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.finish-teaser__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.finish-teaser__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.finish-teaser__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.finish-teaser__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.finish-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.finish-chip {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  transition: transform .5s var(--ease-out), border-color .5s;
  isolation: isolate;
}
.finish-chip:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
}
.finish-chip__visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: transform .8s var(--ease-out);
}
.finish-chip:hover .finish-chip__visual { transform: scale(1.08); }
.finish-chip__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(8,7,10,0.9));
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.15;
}
.finish-chip__label small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 4px;
}

/* ---------- ABOUT (home) ---------- */
.about {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--iridescent-soft);
  opacity: 0.3;
}
.about__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 16px 0 24px;
}
.about__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__text p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.about__text p + p { margin-top: 16px; }
.about__cta { margin-top: 28px; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
}
.about__stat {
  padding: 24px 24px;
  background: var(--bg-card);
  transition: background .3s;
}
.about__stat:hover { background: var(--bg-card-2); }
.about__stat dd {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 6px;
}
.about__stat dt {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Epoxy-pour visual panel */
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  isolation: isolate;
}
.about__visual-layer {
  position: absolute;
  inset: 0;
  background: url("../background.jpeg") center / cover no-repeat;
  filter: saturate(1.05) contrast(1.06);
  animation: aboutPourShift 24s ease-in-out infinite;
  z-index: -1;
}
@keyframes aboutPourShift {
  0%, 100% { transform: scale(1.06) rotate(0deg); }
  50%      { transform: scale(1.12) rotate(-1.5deg); }
}
.about__visual-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(8,7,10,0.55) 100%),
    repeating-linear-gradient(-32deg, transparent 0 90px, rgba(190,120,56,0.05) 90px 91px);
}
.about__visual-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244,239,230,0.08);
  pointer-events: none;
}
.about__visual-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__visual-tag::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* ---------- PROMISE STRIP (7 pillars as clean typographic row) ---------- */
.promise {
  padding: 72px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.promise__grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  counter-reset: pr;
}
.promise__item {
  counter-increment: pr;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .3s;
}
.promise__item:hover { background: rgba(190,120,56,0.04); }
.promise__item:last-child { border-right: 0; }
.promise__item::before {
  content: counter(pr, decimal-leading-zero);
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-2);
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 16px;
}
.promise__item h4 {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.promise__item p {
  font-size: 0.72rem;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 300;
}

/* ---------- SERVICES (home) ---------- */
.services {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.services__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.services__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.services__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.services__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services__desc {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 38ch;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  cursor: pointer;
  transition: background .5s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: -40px;
  right: 20px;
  font-family: var(--f-display);
  font-size: 10rem;
  font-weight: 300;
  color: rgba(190,120,56,0.05);
  line-height: 1;
  pointer-events: none;
  transition: color .5s;
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--iridescent);
  transition: width .6s var(--ease-out);
}
.service-card:hover { background: var(--bg-card-2); }
.service-card:hover::before { color: rgba(190,120,56,0.1); }
.service-card:hover::after { width: 100%; }
.service-card > * { position: relative; z-index: 1; }
.service-card__tag {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-2);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.service-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.service-card__name .arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s, transform .4s var(--ease-out);
  color: var(--gold);
}
.service-card:hover .service-card__name .arrow { opacity: 1; transform: translateX(0); }
.service-card__desc {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- FEATURED PORTFOLIO (home) ---------- */
.featured {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  position: relative;
}
.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--iridescent-soft);
  opacity: 0.3;
}
.featured__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.featured__head {
  text-align: center;
  margin-bottom: 56px;
}
.featured__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.featured__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
.project-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  cursor: pointer;
  isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .5s;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
}
.project-card__visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  transition: transform .8s var(--ease-out), filter .5s;
  z-index: -1;
}
.project-card:hover .project-card__visual { transform: scale(1.06); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 35%, rgba(8,7,10,0.92) 100%);
}
.project-card__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
}
.project-card__cat {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.project-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8,7,10,0.6);
  border: 1px solid rgba(244,239,230,0.15);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px);
  transition: all .35s var(--ease-out);
}
.project-card__arrow svg { width: 14px; height: 14px; }
.project-card:hover .project-card__arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.featured__foot { text-align: center; }

/* ---------- WHY (home) ---------- */
.why {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.why__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.why__head {
  text-align: center;
  margin-bottom: 64px;
}
.why__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.why__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.why-card {
  padding: clamp(32px, 3.2vw, 44px);
  background: var(--bg-card);
  transition: background .4s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--iridescent);
  transition: height .5s var(--ease-out);
}
.why-card:hover { background: var(--bg-card-2); }
.why-card:hover::before { height: 2px; }
.why-card__num {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  opacity: 0.7;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.why-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- PROCESS (home) ---------- */
.process {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--iridescent-soft);
  opacity: 0.3;
}
.process__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.process__head {
  text-align: center;
  margin-bottom: 76px;
}
.process__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.process__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--gold), var(--line));
}
.process-step {
  text-align: center;
  padding: 0 24px;
}
.process-step__num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
  transition: all .4s var(--ease-out);
  position: relative;
  z-index: 2;
}
.process-step:hover .process-step__num {
  border-color: var(--gold);
  background: var(--gold-wash);
  color: var(--gold-2);
  box-shadow: 0 0 28px rgba(190,120,56,0.25);
  transform: translateY(-3px);
}
.process-step h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .promise__grid { grid-template-columns: repeat(4, 1fr); }
  .promise__item:nth-child(4) { border-right: 0; }
  .about__inner,
  .services__head,
  .finish-teaser__head { grid-template-columns: 1fr; gap: 40px; }
  .services__desc { text-align: left; max-width: none; }
  .finish-teaser__grid { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process__steps::before { display: none; }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 110px 24px 80px; min-height: 92vh; }
  .hero__stats { gap: 32px; flex-wrap: wrap; padding-top: 28px; }
  .hero__scroll { display: none; }

  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .promise__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .promise__item:nth-child(2n) { border-right: 0; }
  .promise__item:nth-last-child(-n+1) { border-bottom: 0; }
  .promise { padding: 48px 0; }

  .finish-teaser__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about__visual { aspect-ratio: 3/2; max-width: 520px; margin: 0 auto; }
  .featured__grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .featured__grid::-webkit-scrollbar { display: none; }
  .project-card { flex: 0 0 260px; scroll-snap-align: start; }

  .why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .finish-teaser__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 24px; }
  .hero__stat dd { font-size: 1.5rem; }
  .about__stats { grid-template-columns: 1fr 1fr; }
}
