/* 01 TOKENS - VARIABLES   */
:root{
  --bg: #0F1115;
  --text: rgba(245, 241, 232, 0.92);
  --muted: rgba(167, 162, 154, 0.96);
  --line: rgba(245, 241, 232, 0.12);
  --accent: #B08D57; /* brass */

  --radius: 18px;
  --max: 1120px;

  --h1: clamp(38px, 5vw, 64px);
  --h2: clamp(22px, 2.2vw, 28px);
  --p: 15.5px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* ====================================== 02) RESET / BASE. ==================================================== */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
}
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(1000px 600px at 20% -10%, rgba(176, 141, 87, 0.10), transparent 60%),
    var(--bg);
}
/* Prevent scroll when mobile menu is open */
body[style*="overflow: hidden"] {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
a{ color: inherit; text-decoration: none; }
/* =====================================03) ACCESSIBILITY / UTILITIES. ====================================================== */
.container{
  width: min(var(--max), calc(100% - clamp(24px, 5vw, 56px)));
  margin: 0 auto;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--bg);
  color: var(--text);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 12px 0;
  border: 1px solid var(--line);
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
/* ===================================== 04) GLOBAL COMPONENTS (Buttons, Links, Typography helpers). ================================================== */
.link{ text-decoration: underline; text-underline-offset: 3px; }
.kicker{
  margin: 0 0 10px;
  color: rgba(167,162,154,.95);
  font-weight: 900;
  letter-spacing: .26px;
  font-size: 12.5px;
  text-transform: uppercase;
}
/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(245,241,232,.035);
  color: rgba(245,241,232,.94);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .18px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform .18s var(--ease),
    background-color .70s var(--ease),
    color .70s var(--ease),
    border-color .70s var(--ease),
    box-shadow .70s var(--ease);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(207, 189, 147, 0.055);
  border-color: rgba(245,241,232,.20);
  color: rgba(245,241,232,.98);
}
.btn:active{ transform: translateY(0); }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
button[type="submit"]:disabled {
  position: relative;
}
button[type="submit"]:disabled::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.btn--primary{
  border: 1px solid rgba(176,141,87,.35);
  background: linear-gradient(180deg, rgba(176,141,87,.95), rgba(176,141,87,.78));
  color: #0F1115;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.btn--ghost{ background: rgba(245,241,232,.03); }
/* =============================05) LAYOUT: HEADER / NAV.  ============================================ */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .70s var(--ease), border-color .70s var(--ease);
}
.header.is-scrolled{
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15,17,21,.86), rgba(15,17,21,.62));
  border-color: rgba(245,241,232,.14);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}
.brand__mark{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(176,141,87,.14);
}
/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  position: relative;
}
.nav__toggle{
  display: none;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(245,241,232,.035);
  color: rgba(245,241,232,.94);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .18px;
  white-space: nowrap;
  transition:
    transform .18s var(--ease),
    background-color .70s var(--ease),
    color .70s var(--ease),
    border-color .70s var(--ease);
}
.nav__toggle:hover{
  transform: translateY(-1px);
  background: rgba(207, 189, 147, 0.055);
  border-color: rgba(245,241,232,.20);
}
.nav__toggle:active{ transform: translateY(0); }
.nav__toggle-icon{
  width: 18px;
  height: 12px;
  position: relative;
  display:inline-block;
}
.nav__toggle-icon::before,
.nav__toggle-icon::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(245,241,232,.88);
  transition: transform .70s var(--ease), top .70s var(--ease);
}
.nav__toggle-icon::before{ top: 2px; }
.nav__toggle-icon::after{ top: 8px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-icon::before{
  top: 5px;
  transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-icon::after{
  top: 5px;
  transform: rotate(-45deg);
}
.nav__menu{
  display:flex;
  gap: 18px;
  align-items:center;
  color: rgba(245,241,232,.78);
  font-weight: 700;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a{
  position: relative;
  padding: 6px 0;
}
.nav__menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background: rgba(176,141,87,.7);
  transition: width .70s var(--ease);
}
.nav__menu a:hover{ color: rgba(245,241,232,.95); }
.nav__menu a:hover::after{ width:100%; }
/* ============== 06) SECTION BASE (titles/spacing) ========================================================= */
.section{ padding: 80px 0; }
.section--line{ border-top: 1px solid rgba(245,241,232,.10); }
.section__head{ margin-bottom: 22px; }
.section__title{
  margin:0;
  font-size: var(--h2);
  letter-spacing: -0.25px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}
.section__subtitle{
  margin: 10px 0 0;
  color: rgba(167,162,154,.96);
  max-width: 74ch;
  font-size: 14.5px;
}
/* =========================================================07) HERO ========================================================= */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  overflow: hidden;
  background-color: var(--bg);
}
.hero__media{
  position:absolute;
  inset:0;
  z-index: 0;
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02) brightness(0.8);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(176,141,87,.14), transparent 62%),
    linear-gradient(180deg, rgba(15,17,21,.10) 0%, rgba(15,17,21,.85) 100%);
  z-index: 1;
}
.hero__grain{
  position:absolute;
  inset:0;
  opacity: .06;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.hero__fade{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
}
.hero__inner{
  position: relative;
  padding: 128px 0 64px;
  z-index: 4;
}
.eyebrow{
  margin: 0 0 16px;
  color: rgba(167,162,154,.95);
  font-weight: 900;
  letter-spacing: .28px;
  font-size: 13px;
  text-transform: uppercase;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.eyebrow__divider{
  opacity: .55;
}
.hero__title{
  margin: 0 0 18px;
  font-size: var(--h1);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  max-width: 23ch;
  color: #ffffff;
  text-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.hero__title-line{
  display:block;
}
.hero__title-line + .hero__title-line{
  margin-top: 6px;
}
.accent{
  background: linear-gradient(180deg, rgba(176,141,87,1), rgba(176,141,87,.65));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead{
  margin: 0 0 32px;
  color: rgba(245,241,232,.85);
  font-size: clamp(15px, 1.25vw, 16.5px);
  max-width: 62ch;
  line-height: 1.6;
}
.hero__actions{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__trust{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 22px;
  align-items: center;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245,241,232,.88);
  font-weight: 850;
  font-size: 12.5px;
  letter-spacing: .16px;
  backdrop-filter: none;
  box-shadow: none;
  text-transform: uppercase;
}
.hero-badge::before{
  content:"";
  width: 1px;
  height: 14px;
  background: linear-gradient(to bottom, transparent, rgba(176,141,87,.75), transparent);
  box-shadow: none;
  border-radius: 0;
  opacity: .9;
}
/* ============ 08) WORK (Slider + Copy) ========================================================= */
.work-section{
  position: relative;
  padding: 92px 0;
  border-top: 1px solid rgba(245,241,232,.10);
  background:
    radial-gradient(950px 560px at 14% 12%, rgba(176,141,87,.12), transparent 62%),
    radial-gradient(880px 520px at 86% 42%, rgba(245,241,232,.10), transparent 60%),
    linear-gradient(180deg, rgba(245,241,232,.06), rgba(245,241,232,.02));
}
.work-split{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 36px;
  align-items: start;
  margin-top: 24px;
}
.work-slider{
  margin-left: calc(-1 * clamp(24px, 5vw, 56px));
  margin-right: -24px;
}
.work-slider__viewport{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: clamp(620px, 82vh, 900px);
  box-shadow: 0 28px 90px rgba(0,0,0,.40);
  cursor: grab;
  user-select: none;
}
.work-slider__viewport:active {
  cursor: grabbing;
}
.work-slider__viewport::after{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(60% 40% at 50% 50%, rgba(176,141,87,.18), transparent 70%);
  z-index:-1;
}
.work-slider__track{
  display:flex;
  width:100%;
  height:100%;
  transform: translate3d(0,0,0);
  transition: transform .78s var(--ease);
  will-change: transform;
}
.work-slide{
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  display:flex;
  flex-direction: column;
  position: relative;
}
.work-slide__media{
  flex: 1;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(245,241,232,.10);
}
.work-slide__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 18% 14%, rgba(176,141,87,.12), transparent 60%),
    linear-gradient(180deg, rgba(15,17,21,.03), rgba(15,17,21,.32));
  border-radius: inherit;
  pointer-events:none;
}
.work-slide__caption{
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(15,17,21,.35);
  backdrop-filter: blur(10px);
  color: rgba(245,241,232,.90);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: .18px;
  text-transform: uppercase;
  box-shadow:
    0 18px 44px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.work-slider__controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.work-slider__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.16);
  background: rgba(15,17,21,.14);
  color: rgba(245,241,232,.92);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  font-weight: 950;
  transition:
    transform .18s var(--ease),
    background-color .70s var(--ease),
    color .25s var(--ease),
    border-color .70s var(--ease);
}
.work-slider__btn:hover{
  transform: translateY(-1px);
  background: rgba(207, 189, 147, 0.055);
  border-color: rgba(245,241,232,.22);
}
.work-slider__btn:active{ transform: translateY(0); }
.work-slider__dots{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.work-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.22);
  background: rgba(245,241,232,.10);
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .70s var(--ease), border-color .70s var(--ease);
}
.work-dot[aria-current="true"],
.work-dot.is-active {
  background: rgba(176,141,87,.86);
  border-color: rgba(176,141,87,.86);
  transform: scale(1.55);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-copy{
  padding-top: 10px;
  padding-left: clamp(18px, 3vw, 56px);
}
.work__headline{
  margin: 0 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.3px;
  max-width: 28ch;
}
.work__meta{
  margin: 0 0 14px;
  color: rgba(167,162,154,.96);
  font-size: 13px;
  letter-spacing: .22px;
  text-transform: uppercase;
  font-weight: 900;
}
.work__text{
  margin: 0 0 16px;
  color: rgba(245,241,232,.78);
  max-width: 60ch;
}
.work__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(167,162,154,.96);
}
.work__list li{ margin: 8px 0; }
.work-copy__cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
   /* ============================= 09) SERVICES. ========================================================= */
#services{
  position: relative;
  overflow: hidden;
}
#services::before{
  content:"";
  position:absolute;
  inset:-220px -160px auto -160px;
  height: 520px;
  background:
    radial-gradient(420px 320px at 18% 40%, rgba(176,141,87,.10), transparent 65%),
    radial-gradient(520px 360px at 78% 30%, rgba(245,241,232,.08), transparent 60%);
  pointer-events:none;
}
.services-intro{
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(245,241,232,.10);
}
.services-intro__title{
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: .20px;
  font-size: 12.5px;
  text-transform: uppercase;
  color: rgba(245,241,232,.86);
}
.services-intro__text{
  margin: 0;
  color: rgba(167,162,154,.96);
  max-width: 70ch;
  font-size: 14px;
}
.services{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
  margin-top: 26px;
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 0;
}
.service{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245,241,232,.10);
}
.service:nth-child(1),
.service:nth-child(2){
  border-top: 1px solid rgba(245,241,232,.10);
}
.service::before{
  content:"";
  position:absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(176,141,87,.40), transparent);
  opacity: .35;
}
.service__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(176,141,87,.92);
  background:
    radial-gradient(18px 18px at 35% 30%, rgba(245,241,232,.10), transparent 60%),
    rgba(15,17,21,.22);
  box-shadow:
    inset 0 0 0 1px rgba(245,241,232,.10),
    0 18px 40px rgba(0,0,0,.20);
}
.service__icon svg{
  width: 22px;
  height: 22px;
}
.service__body h3{
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: rgba(245,241,232,.92);
}
.service__body p{
  margin: 0;
  color: rgba(167,162,154,.96);
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.6;
}
.service{
  transition: transform .55s var(--ease);
}
.service:hover{
  transform: translateY(-3px);
}
.service:hover .service__icon{
  transform: translateY(-2px);
  transition: transform .45s var(--ease);
  box-shadow:
    inset 0 0 0 1px rgba(176,141,87,.22),
    0 22px 54px rgba(0,0,0,.28);
}
.service:hover .service__body h3{
  color: rgba(245,241,232,.98);
}
/* ===============================.  10) BEFORE/AFTER  ========================= */
#before-after{
  position: relative;
  overflow: hidden;
}
#before-after::before{
  content:"";
  position:absolute;
  inset:-240px -160px auto -160px;
  height: 560px;
  background:
    radial-gradient(520px 360px at 18% 35%, rgba(176,141,87,.12), transparent 65%),
    radial-gradient(520px 360px at 78% 30%, rgba(245,241,232,.08), transparent 60%);
  pointer-events:none;
}
.ba-block{
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(245,241,232,.10);
}
.ba-block:first-of-type{
  margin-top: 18px;
}
.ba-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}
.ba-title{
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 18.5px;
  letter-spacing: -0.2px;
  color: rgba(245,241,232,.94);
}
.ba-meta{
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .22px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(167,162,154,.96);
  white-space: nowrap;
}
.ba{
  margin-top: 22px;
}
.ba__viewport{
  position: relative;
  overflow: hidden;
  border-radius: clamp(16px, 2.2vw, 24px);
  height: clamp(520px, 72vh, 820px);
  border: none;
  box-shadow:
    0 32px 110px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(245,241,232,.10);
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(176,141,87,.10), transparent 60%),
    rgba(245,241,232,.03);
}
.ba__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02) brightness(1.06);
}
.ba__before{
  position:absolute;
  inset:0;
  width: 50%;
  overflow: hidden;
  will-change: width;
  box-shadow: 1px 0 0 rgba(245,241,232,.22);
}
.ba__handle{
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 64px;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: ew-resize;
  outline: none;
  touch-action: none;
  transition: transform 0.2s ease;
}
.ba__handle:hover {
  transform: translateX(-50%) scale(1.1);
}
.ba__handle:active {
  cursor: grabbing;
}
.ba__handle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.ba__line{
  position:absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(245,241,232,.35);
}
.ba__knob{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.18);
  background:
    radial-gradient(18px 18px at 35% 30%, rgba(245,241,232,.16), transparent 55%),
    rgba(15,17,21,.40);
  box-shadow:
    0 16px 38px rgba(0,0,0,.38),
    inset 0 0 0 1px rgba(176,141,87,.25);
  position: relative;
}
.ba__knob::before,
.ba__knob::after{
  content:"";
  position:absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(245,241,232,.80);
  border-right: 2px solid rgba(245,241,232,.80);
  transform: translateY(-50%) rotate(45deg);
  opacity: .9;
}
.ba__knob::before{
  left: 12px;
  transform: translateY(-50%) rotate(225deg);
}
.ba__knob::after{ right: 12px; }
.ba__labels{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display:flex;
  justify-content: space-between;
  pointer-events: none;
}
.ba__tag{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(15,17,21,.35);
  backdrop-filter: blur(10px);
  color: rgba(245,241,232,.92);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22px;
  box-shadow:
    0 18px 44px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);
}
/* ================================ 11) PROCESS / TIMELINE. =========================================== */
.timeline{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(245,241,232,.12);
}
.timeline__aside{
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,241,232,.10);
  background: rgba(245,241,232,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  max-width: 74ch;
}
.timeline__aside-title{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: .12px;
  color: rgba(245,241,232,.90);
  font-size: 13px;
  text-transform: uppercase;
}
.timeline__aside-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(167,162,154,.96);
}
.timeline__aside-list li{ margin: 6px 0; }
.timeline--premium{
  margin-top: 22px;
  border-top: none;
  position: relative;
  padding-left: 6px;
}
.timeline--premium::before{
  content:"";
  position:absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(176,141,87,.35),
    rgba(245,241,232,.10),
    rgba(176,141,87,.25),
    transparent
  );
  opacity: .55;
}
.timeline__item{
  position: relative;
  display:grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245,241,232,.10);
}
.timeline__step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(176,141,87,.10);
  font-weight: 950;
  letter-spacing: .22px;
  font-size: 12.5px;
  box-shadow:
    0 18px 44px rgba(0,0,0,.32),
    inset 0 0 0 1px rgba(176,141,87,.22);
  color: rgba(245,241,232,.90);
  z-index: 1;
}
.timeline__item::before{
  content:"";
  position:absolute;
  left: 32px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(176,141,87,.85);
  box-shadow: 0 0 0 6px rgba(176,141,87,.12);
  opacity: .9;
}
.timeline__content h3{
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: -0.2px;
}
.timeline__content p{
  margin: 0;
  color: rgba(167,162,154,.96);
  max-width: 70ch;
}
.timeline__item:hover .timeline__step{
  transform: translateY(-2px);
  transition: transform .70s var(--ease);
}
   /* =========================================12) CONTACT (kept as your premium variant) ================================== */
.contact-section{
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(900px 520px at 16% 20%, rgba(176,141,87,.10), transparent 62%),
    radial-gradient(800px 520px at 88% 55%, rgba(245,241,232,.08), transparent 60%);
}
.contact--premium{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(22px, 3.5vw, 44px);
  margin-top: 22px;
  align-items: start;
}
.contact__headline{
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.12;
  max-width: 30ch;
  letter-spacing: -0.3px;
}
.contact__text{
  margin: 0 0 16px;
  color: rgba(245,241,232,.78);
  max-width: 64ch;
}
.contact__expect{
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,241,232,.10);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(176,141,87,.08), transparent 60%),
    rgba(15,17,21,.18);
  box-shadow:
    0 24px 70px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.04);
  max-width: 62ch;
}
.contact__expect-title{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: .12px;
  color: rgba(245,241,232,.90);
  text-transform: uppercase;
  font-size: 12.5px;
}
.contact__bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(167,162,154,.96);
}
.contact__bullets li{ margin: 8px 0; }
.contact__cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact__note{
  margin-top: 14px;
  color: rgba(167,162,154,.96);
  font-size: 13.5px;
}
.contact__copy{ padding-top: 6px; }
.form{
  border: 1px solid rgba(245,241,232,.12);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, rgba(245,241,232,.05), rgba(245,241,232,.02));
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
}
.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form--premium{
  padding: 20px;
  border-radius: clamp(16px, 2vw, 22px);
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(176,141,87,.10), transparent 60%),
    linear-gradient(180deg, rgba(245,241,232,.05), rgba(245,241,232,.02));
  box-shadow: 0 34px 110px rgba(0,0,0,.38);
}
.field{ margin-bottom: 12px; }
.label{
  display:block;
  font-size: 13px;
  color: rgba(167,162,154,.98);
  margin-bottom: 6px;
  font-weight: 900;
}
.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(15,17,21,.25);
  color: rgba(245,241,232,.92);
  outline: none;
  transition: border-color .70s var(--ease), background-color .75s var(--ease), box-shadow .70s var(--ease);
}
.input:hover{ border-color: rgba(245,241,232,.22); }
.input:focus{
  border-color: rgba(176,141,87,.75);
  box-shadow: 0 0 0 4px rgba(176,141,87,.14);
}
/* Form validation states */
.input[aria-invalid="true"] {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}
.input:focus[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.textarea{
  min-height: 132px;
  resize: vertical;
}
.hint {
  font-size: 12.5px;
  margin-top: 6px;
  min-height: 18px;
  transition: color 0.2s ease;
}
.hint--error {
  color: #ef4444;
}
.hint--success {
  color: #10b981;
}
.form-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.form-note--error {
  background: rgba(239, 68, 68, 0.10);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.form-note--success {
  background: rgba(16, 185, 129, 0.10);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.form__fineprint{
  margin: 12px 0 0;
  color: rgba(167,162,154,.90);
  font-size: 12.5px;
  line-height: 1.45;
}
/* =========================================================
   13) FOOTER
   ========================================================= */
.footer{
  margin-top: 72px;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(245,241,232,.12);
  background: linear-gradient(180deg, rgba(245,241,232,.04), rgba(245,241,232,.01));
  color: rgba(167,162,154,.95);
  font-size: 13px;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.footer__brand{
  display:flex;
  flex-direction: column;
  gap: 4px;
}
.footer__name{
  margin: 0;
  font-weight: 950;
  letter-spacing: .2px;
  color: rgba(245,241,232,.92);
}
.footer__meta {
  margin: 8px 0 0;
  color: rgba(167,162,154,.92);
  font-size: 12.5px;
  letter-spacing: .12px;
}
.footer__legal{
  margin: 8px 0 0;
  color: rgba(167,162,154,.85);
  font-size: 12px;
}
.footer__nav{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer__link{
  color: rgba(245,241,232,.82);
  font-weight: 800;
  letter-spacing: .14px;
  position: relative;
  width: fit-content;
}
.footer__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:1px;
  background: rgba(176,141,87,.7);
  transition: width .25s var(--ease);
}
.footer__link:hover{
  color: rgba(245,241,232,.94);
}
.footer__link:hover::after{
  width:100%;
}
.footer__right{
  display:flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer__social{
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content: center;
}
.social-icon{
  width: 40px;
  height: 40px;
  color: rgba(245,241,232,.78);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: color .50s var(--ease), transform .70s var(--ease);
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(15,17,21,.25);
  transition: transform .70s var(--ease), color .70s var(--ease), border-color .70s var(--ease), background-color .70s var(--ease);
}
.social-icon svg{
  width: 20px;
  height: 20px;
}
.social-icon:hover{
  transform: translateY(-1px);
  color: rgba(176,141,87,.95);
  border-color: rgba(176,141,87,.35);
  background: rgba(15,17,21,.40);
}
.footer__contact{
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer__phone{
  font-weight: 950;
  letter-spacing: .18px;
  color: rgba(245,241,232,.90);
}
.footer__phone:hover{
  color: rgba(176,141,87,.95);
}
.footer__credit{
  margin: 0;
  color: rgba(167,162,154,.85);
  font-size: 12.5px;
  text-align: right;
}
.credit-link{
  margin-left: 6px;
  font-weight: 950;
  color: rgba(176,141,87,.95);
}
.credit-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* =========================================================
   14) REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* ===========================
   WhatsApp Floating Button
   =========================== */
.wa-fab{
  position: fixed;
  right: clamp(16px, 2.2vw, 26px);
  bottom: clamp(16px, 2.2vw, 26px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: rgba(15,17,21,.55);
  backdrop-filter: blur(14px);
  color: rgba(245,241,232,.92);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .14px;
  box-shadow:
    0 22px 60px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .45s var(--ease),
    border-color .45s var(--ease),
    background-color .45s var(--ease),
    color .45s var(--ease);
}
.wa-fab:hover{
  transform: translateY(-2px);
  border-color: rgba(176,141,87,.35);
  background: rgba(15,17,21,.70);
  color: rgba(245,241,232,.96);
}
.wa-fab__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(176,141,87,.95);
}
.wa-fab__icon svg{
  width: 100%;
  height: 100%;
}
.wa-fab__label{
  line-height: 1;
}
/* =========================================================
   16) FOCUS STYLES & PERFORMANCE
   ========================================================= */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

.social-icon:focus-visible,
.footer__phone:focus-visible,
.footer__link:focus-visible,
.credit-link:focus-visible,
.wa-fab:focus-visible {
  outline: 2px solid rgba(176,141,87,.85);
  outline-offset: 4px;
}

/* GPU acceleration for performance */
.work-slider__track,
.ba__handle,
.ba__before,
.hero__video,
.reveal {
  will-change: transform;
}

.work-slider,
.ba {
  contain: layout;
}

/* =========================================================
   17) MEDIA QUERIES
   ========================================================= */
@media (max-width: 980px){
  .nav__toggle{ display:inline-flex; }

  .nav__menu{
    position:absolute;
    right: 0;
    top: 56px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(245,241,232,.12);
    background: linear-gradient(180deg, rgba(15,17,21,.78), rgba(15,17,21,.58));
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
  }

  .nav__menu.is-open{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
  }

  .nav__menu a{
    padding: 10px 10px;
    border-radius: 12px;
  }

  .nav__menu a::after{ display: none; }
  .nav__menu a:hover{ background: rgba(245,241,232,.06); }

  .hero{ min-height: 86vh; }
  .hero__inner{ padding: 110px 0 56px; }
  .hero__title{ max-width: 18ch; }

  .work-split{ grid-template-columns: 1fr; }
  .work-slider__viewport{ height: min(62vh, 560px); }
  .work-slider__controls{
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin-top: 0;
    pointer-events: none;
  }
  .work-slider__btn,
  .work-slider__dots{
    pointer-events: auto;
  }
  .work-slider__btn{
    background: rgba(15,17,21,.32);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0,0,0,.35);
  }
  .work-slider__dots{
    justify-content: center;
  }

  .services{ grid-template-columns: 1fr; gap: 18px; }
  .service::before{ display: none; }

  .ba__viewport{ height: min(62vh, 520px); }
  .ba__handle{ width: 56px; }
  .ba__knob{ width: 42px; height: 42px; }

  .contact--premium{ grid-template-columns: 1fr; gap: 22px; }
  .form__grid{ grid-template-columns: 1fr; }
}

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

  .service:nth-child(2){
    border-top: none;
  }

  .service::before{
    left: 0;
  }
}

@media (max-width: 900px){
  .footer__inner{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer__nav{
    justify-items: center;
  }

  .footer__right{
    align-items: center;
  }

  .footer__contact{
    align-items: center;
  }

  .footer__credit{
    text-align: center;
  }
}

@media (max-width: 860px){
  .footer__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__social{ justify-content: center; }
  .footer__credit{ text-align: center; }
}

@media (max-width: 720px){
  .timeline--premium::before{ left: 28px; }
  .timeline__item{ grid-template-columns: 64px 1fr; gap: 14px; }
  .timeline__step{ width: 52px; height: 52px; }
  .timeline__item::before{ left: 28px; }
}

@media (max-width: 640px){
  .ba-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .ba-meta{ white-space: normal; }
}

@media (max-width: 520px){
  .wa-fab{
    padding: 12px;
  }
  .wa-fab__label{
    display: none;
  }
}

@media (min-width: 1100px){
  .work-split{
    gap: 56px;
  }
  .work-copy{
    padding-left: clamp(28px, 4vw, 84px);
  }
}

@media (min-width: 1200px){
  .work-slider{ margin-left: -8vw; }
  .work-copy{ padding-left: 6vw; }
}

@media (prefers-reduced-motion: reduce){
  html {
    scroll-behavior: auto;
  }
  
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
  
  .btn {
    transition: none;
  }
  
  .header {
    transition: none;
  }
  
  .hero__video {
    display: none;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}