/* ==========================================================================
   Pro Polish Metal LLC
   ========================================================================== */

:root{
  /* brand */
  --gold:        #C4922F;
  --gold-light:  #E2BC6B;
  --gold-dark:   #8C6519;
  --gold-glow:   rgba(196,146,47,.22);

  /* surfaces */
  --bg:          #0B0B0B;
  --bg-alt:      #111110;
  --surface:     #171614;
  --surface-2:   #1F1D1A;
  --line:        rgba(255,255,255,.10);
  --line-gold:   rgba(196,146,47,.35);

  /* text */
  --ink:         #F4F1EC;
  --ink-muted:   #A9A49C;
  --ink-dim:     #7C7770;

  /* type */
  --f-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --f-cond: "Barlow Condensed", "Segoe UI", system-ui, sans-serif;
  --f-body: "Barlow", "Segoe UI", system-ui, sans-serif;

  --wrap: 1200px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --radius: 4px;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:104px; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font:400 17px/1.65 var(--f-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-head); font-weight:800; line-height:1.1; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--pad); }
.gold{ color:var(--gold); }

.ico{ width:1em; height:1em; fill:currentColor; flex:none; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--gold); color:#111; padding:.6rem 1rem; font-weight:700;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:2px solid var(--gold-light); outline-offset:3px; }

/* horizontal gold hairline used under headings ------------------------- */
.rule{
  display:block; width:68px; height:3px; margin:1.4rem 0;
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
}
.rule--center{ margin-inline:auto; }

.eyebrow{
  margin:0 0 .5rem;
  font-family:var(--f-cond); font-weight:700; font-size:.95rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold);
}

/* ============================================================== BUTTONS */
.btn{
  --btn-bg:transparent; --btn-fg:var(--ink); --btn-bd:currentColor;
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:.95rem 1.6rem;
  background:var(--btn-bg); color:var(--btn-fg);
  border:2px solid var(--btn-bd); border-radius:var(--radius);
  font-family:var(--f-head); font-weight:700; font-size:.86rem;
  letter-spacing:.11em; text-transform:uppercase; text-decoration:none;
  white-space:nowrap; cursor:pointer; transition:background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:hover{ transform:translateY(-2px); }
.btn--gold{ --btn-bg:var(--gold); --btn-fg:#120E06; --btn-bd:var(--gold); box-shadow:0 8px 24px -10px var(--gold-glow); }
.btn--gold:hover{ --btn-bg:var(--gold-light); --btn-bd:var(--gold-light); }
.btn--outline{ --btn-fg:var(--ink); --btn-bd:rgba(255,255,255,.35); }
.btn--outline:hover{ --btn-bd:var(--gold); --btn-fg:var(--gold); }
.btn--ghost{ --btn-fg:var(--gold); --btn-bd:var(--gold); padding:.7rem 1.25rem; }
/* the header CTA competes with six nav links, so it runs tighter than the
   full-size buttons in the page body */
.nav__cta{ padding:.66rem 1.05rem; font-size:.77rem; letter-spacing:.07em; }
.btn--ghost:hover{ --btn-bg:var(--gold); --btn-fg:#120E06; }
.btn--dark{ --btn-bg:#120E06; --btn-fg:var(--gold-light); --btn-bd:#120E06; }
.btn--dark:hover{ --btn-bg:#000; }
.btn--block{ width:100%; }
/* buttons no longer wrap, so on the narrowest phones the longest labels
   ("Watch more on YouTube") need to shed a little padding to fit */
@media (max-width:400px){
  .btn{ padding-inline:1.05rem; font-size:.79rem; letter-spacing:.07em; }
}

/* =============================================================== TOP BAR */
.topbar{
  background:linear-gradient(90deg,var(--gold-dark),var(--gold) 45%,var(--gold-light) 120%);
  color:#160F02;
  font-size:.9rem; font-weight:600;
}
.topbar__inner{
  display:flex; flex-wrap:wrap; gap:.4rem 2rem;
  align-items:center; justify-content:space-between;
  min-height:40px; padding-block:.4rem;
}
.topbar__item{ display:inline-flex; align-items:center; gap:.5rem; text-decoration:none; }
.topbar__item:hover{ text-decoration:underline; }
@media (max-width:760px){
  .topbar__inner{ justify-content:center; gap:.3rem 1.2rem; font-size:.82rem; }
  /* roomier tap target once it drops onto its own row */
  .langtoggle__btn{ padding:.4rem .95rem; font-size:.78rem; }
}

/* ------------------------------------------------------ language toggle */
.langtoggle{
  display:inline-flex; flex:none; overflow:hidden;
  border:1px solid rgba(22,15,2,.45); border-radius:999px;
}
.langtoggle__btn{
  padding:.2rem .7rem; margin:0;
  background:transparent; border:0; cursor:pointer;
  font-family:var(--f-head); font-weight:700; font-size:.74rem;
  letter-spacing:.1em; color:#160F02;
  transition:background .2s, color .2s;
}
.langtoggle__btn:hover{ background:rgba(22,15,2,.14); }
.langtoggle__btn[aria-pressed="true"]{ background:#160F02; color:var(--gold-light); }
.langtoggle__btn:focus-visible{ outline:2px solid #160F02; outline-offset:2px; }

/* ================================================================ HEADER */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(11,11,11,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s;
}
.site-header.is-stuck{ box-shadow:0 12px 30px -18px #000; }
.site-header__inner{
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  min-height:88px;
}
.brand img{ width:auto; height:64px; }

.nav{ display:flex; align-items:center; gap:2rem; margin-left:auto; }
.nav__list{ display:flex; gap:1.75rem; }
.nav__link{
  position:relative; display:block; padding:.35rem 0;
  font-family:var(--f-head); font-weight:600; font-size:.82rem;
  letter-spacing:.13em; text-transform:uppercase; text-decoration:none;
  color:var(--ink);
}
.nav__link::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background:var(--gold); transition:right .25s;
}
.nav__link:hover::after,.nav__link.is-current::after{ right:0; }
.nav__link.is-current{ color:var(--gold); }

.burger{
  display:none; width:44px; height:44px; padding:10px;
  background:none; border:1px solid var(--line); border-radius:var(--radius); cursor:pointer;
}
.burger span{ display:block; height:2px; background:var(--ink); transition:transform .25s, opacity .2s; }
.burger span+span{ margin-top:6px; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* between these widths the nav is tight but still worth keeping horizontal */
@media (max-width:1320px){
  .nav{ gap:1.2rem; }
  .nav__list{ gap:1.2rem; }
  .nav__link{ font-size:.78rem; letter-spacing:.09em; }
  .brand img{ height:58px; }
}

@media (max-width:1040px){
  .brand img{ height:42px; }
  .burger{ display:block; }
  .nav{
    position:absolute; inset:100% 0 auto 0;
    flex-direction:column; align-items:stretch; gap:0;
    background:#0B0B0B; border-bottom:1px solid var(--line);
    padding:0 var(--pad);
    max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease;
  }
  .nav.is-open{ max-height:26rem; padding-block:1rem 1.5rem; }
  .nav__list{ flex-direction:column; gap:0; }
  .nav__link{ padding:.9rem 0; border-bottom:1px solid var(--line); font-size:.95rem; }
  .nav__link::after{ display:none; }
  .nav__cta{ margin-top:1rem; }
}

/* ================================================================== HERO */
.hero{ position:relative; background:#0A0A0A; overflow:hidden; }
.hero__media{
  position:absolute; inset:0 0 0 42%;
}
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:38% 34%; }
.hero__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,#0A0A0A 0%,rgba(10,10,10,.85) 22%,rgba(10,10,10,.15) 65%,rgba(10,10,10,.5) 100%);
}
.hero__inner{ position:relative; z-index:1; }
.hero__copy{
  max-width:min(560px,100%);
  padding-block:clamp(4rem,11vw,8.5rem);
}
.hero__title{
  font-size:clamp(2.6rem,6.6vw,4.4rem);
  letter-spacing:-.015em; text-transform:uppercase;
  text-shadow:0 4px 30px rgba(0,0,0,.6);
}
.hero__title span{ display:block; }
.hero__lede{ margin:0 0 2rem; max-width:44ch; color:var(--ink-muted); font-size:1.09rem; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:1rem; }

@media (max-width:860px){
  .hero__media{ inset:0; }
  .hero__media::after{
    background:linear-gradient(180deg,rgba(10,10,10,.88) 0%,rgba(10,10,10,.72) 55%,rgba(10,10,10,.95) 100%);
  }
  .hero__copy{ max-width:none; padding-block:clamp(3rem,14vw,5rem); }
}

/* ================================================================= TRUST */
.trust{ background:var(--surface); border-block:1px solid var(--line); }
.trust__grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding-block:2.25rem;
}
.trust__item{ display:flex; gap:1rem; padding-inline:1.6rem; }
.trust__item+.trust__item{ border-left:1px solid var(--line); }
.trust__item:first-child{ padding-left:0; }
.trust__item:last-child{ padding-right:0; }
.trust__ico{ width:38px; height:38px; fill:var(--gold); flex:none; }
.trust__item h3{ font-size:1rem; letter-spacing:.04em; text-transform:uppercase; color:var(--gold); }
.trust__item p{ margin:.35rem 0 0; font-size:.93rem; color:var(--ink-muted); line-height:1.5; }

@media (max-width:900px){
  .trust__grid{ grid-template-columns:repeat(2,1fr); gap:1.75rem 0; }
  .trust__item:nth-child(odd){ padding-left:0; border-left:0; }
  .trust__item:nth-child(even){ padding-right:0; }
}
@media (max-width:560px){
  .trust__grid{ grid-template-columns:1fr; }
  .trust__item{ padding-inline:0; border-left:0 !important; }
}

/* ============================================================== SECTIONS */
.section{ padding-block:clamp(4rem,8vw,6.5rem); }
.section--alt{ background:var(--bg-alt); }
.section__head{ max-width:760px; margin:0 auto clamp(2.5rem,5vw,3.5rem); text-align:center; }
.section__title{
  font-size:clamp(1.9rem,4vw,2.8rem);
  letter-spacing:.01em; text-transform:uppercase;
}
.section__lede{ margin:0; color:var(--ink-muted); font-size:1.05rem; }

/* ================================================================= CARDS */
.cards{ display:grid; gap:1.25rem; grid-template-columns:repeat(3,1fr); }
@media (max-width:900px){ .cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .cards{ grid-template-columns:1fr; } }

.card{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:2.25rem 1.6rem 1.9rem;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  transition:border-color .25s, transform .25s, background .25s;
}
.card:hover{ border-color:var(--line-gold); transform:translateY(-4px); background:var(--surface-2); }
.card__ico{
  display:grid; place-items:center; flex:none;
  width:66px; height:66px; margin-bottom:1.35rem;
  border:1px solid var(--line-gold); border-radius:50%;
  background:radial-gradient(circle at 50% 30%,rgba(196,146,47,.16),transparent 70%);
  transition:background .25s, border-color .25s;
}
.card__ico svg{ width:30px; height:30px; fill:var(--gold); transition:fill .25s; }
.card:hover .card__ico{ background:var(--gold); border-color:var(--gold); }
.card:hover .card__ico svg{ fill:#120E06; }
.card__body h3{
  font-size:1rem; letter-spacing:.05em; text-transform:uppercase; color:var(--ink);
}
.card__body p{ margin:.75rem 0 0; font-size:.93rem; color:var(--ink-muted); line-height:1.55; }
.card__list{
  margin:1.25rem 0 0; padding-top:1.1rem;
  border-top:1px solid var(--line);
  text-align:left;
}
.card__list li{
  position:relative; padding-left:1.15rem; margin-bottom:.5rem;
  font-size:.9rem; line-height:1.45; color:var(--ink-muted);
}
.card__list li::before{
  content:""; position:absolute; left:0; top:.62em;
  width:6px; height:1px; background:var(--gold);
}

/* ================================================================ METALS */
.metals{
  margin-top:3rem; padding:2.25rem clamp(1.25rem,4vw,2.75rem);
  background:var(--surface); border:1px solid var(--line-gold); border-radius:var(--radius);
  text-align:center;
}
.metals__title{
  font-size:1rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}
.metals__list{
  display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem;
  margin:1.25rem 0 0;
}
.metals__list li{
  padding:.45rem 1.05rem;
  border:1px solid var(--line); border-radius:999px;
  font-family:var(--f-cond); font-size:1.02rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; color:var(--ink);
}
.metals__note{ margin:1.5rem auto 0; max-width:60ch; color:var(--ink-muted); font-size:.96rem; }

/* ============================================================ INDUSTRIES */
.industries{ margin-top:2rem; text-align:center; }
.industries__title{
  font-size:1rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}
.industries__list{
  display:flex; flex-wrap:wrap; justify-content:center; gap:.4rem 1.5rem;
  margin:1.25rem 0 0;
}
.industries__list li{
  font-family:var(--f-cond); font-size:1.05rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; color:var(--ink-muted);
}
/* trailing separator, so a wrapped line never starts with a stray dot */
.industries__list li:not(:last-child)::after{
  content:"•"; margin-left:1.5rem; color:var(--gold);
}

/* ========================================================= BEFORE/AFTER */
.ba__job{
  display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  align-items:center; gap:clamp(1.5rem,4vw,3rem);
  padding:clamp(1rem,2.5vw,1.75rem);
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
}
.ba__pair{ display:grid; grid-template-columns:1fr 1fr; gap:3px; background:var(--line-gold); }
.ba__side{ position:relative; margin:0; background:#000; aspect-ratio:3/4; overflow:hidden; }
.ba__side img{ width:100%; height:100%; object-fit:cover; }
.ba__tag{
  position:absolute; top:.7rem; left:.7rem; z-index:2;
  padding:.32rem .8rem; border-radius:2px;
  font-family:var(--f-head); font-weight:700; font-size:.66rem;
  letter-spacing:.15em; text-transform:uppercase; white-space:nowrap;
}
.ba__tag--before{ background:rgba(0,0,0,.8); color:#fff; border:1px solid rgba(255,255,255,.35); }
.ba__tag--during{ background:var(--gold); color:#120E06; }
.ba__meta h3{ font-size:clamp(1.1rem,2.2vw,1.4rem); letter-spacing:.03em; text-transform:uppercase; color:var(--gold); }
.ba__meta p{ margin:1rem 0 0; color:var(--ink-muted); font-size:1rem; }
@media (max-width:800px){ .ba__job{ grid-template-columns:1fr; } }

/* =============================================================== GALLERY */
.gallery__title{
  margin:3.5rem 0 1.5rem; text-align:center;
  font-size:1rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
}
.gallery{ display:grid; gap:1rem; grid-template-columns:repeat(auto-fit,minmax(145px,1fr)); }
.gallery__item{
  position:relative; padding:0; margin:0; cursor:zoom-in;
  aspect-ratio:3/4; overflow:hidden;
  background:#000; border:1px solid var(--line); border-radius:var(--radius);
}
.gallery__item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s, opacity .3s; }
.gallery__item:hover img{ transform:scale(1.07); opacity:.85; }
.gallery__item::after{
  content:"＋"; position:absolute; inset:auto .6rem .5rem auto;
  color:var(--gold); font-size:1.4rem; opacity:0; transition:opacity .25s;
}
.gallery__item:hover::after{ opacity:1; }
.gallery__tag{
  position:absolute; top:.55rem; left:.55rem; z-index:2;
  padding:.28rem .7rem; border-radius:2px;
  background:rgba(0,0,0,.8); border:1px solid rgba(255,255,255,.35); color:#fff;
  font-family:var(--f-head); font-weight:700; font-size:.62rem;
  letter-spacing:.15em; text-transform:uppercase;
}

/* ================================================================ VIDEO */
.videos{
  display:grid; gap:clamp(1.1rem,2.2vw,1.75rem);
  grid-template-columns:repeat(3,1fr);
}
@media (max-width:900px){ .videos{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .videos{ grid-template-columns:1fr; max-width:340px; margin-inline:auto; } }

.video{
  display:flex; flex-direction:column; gap:.9rem;
  padding:0; margin:0; border:0; background:none; cursor:pointer;
  text-align:left; font:inherit; color:inherit;
}
.video__frame{
  position:relative; display:block; overflow:hidden;
  aspect-ratio:3/4; border-radius:14px;
  background:#0E0D0C;
  box-shadow:0 18px 40px -24px #000;
  transition:box-shadow .35s, transform .35s;
}
.video__frame::after{        /* grounds the rounded card and lifts the disc */
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(6,6,6,.16),transparent 42%,rgba(6,6,6,.42));
  transition:opacity .35s;
}
.video__frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:brightness(.9) saturate(1.05);
  transition:transform .6s cubic-bezier(.2,.7,.3,1), filter .35s;
}
.video:hover .video__frame,
.video:focus-visible .video__frame{
  transform:translateY(-5px);
  box-shadow:0 26px 50px -22px #000, 0 0 0 1px var(--line-gold);
}
.video:hover .video__frame img{ transform:scale(1.05); filter:brightness(.72) saturate(1.05); }

/* glass disc that fills with gold on hover - deliberately small, so the
   photograph stays the thing you look at */
.video__play{
  position:absolute; inset:0; margin:auto; z-index:2;
  display:grid; place-items:center;
  width:54px; height:54px; border-radius:50%;
  background:rgba(10,9,8,.52);
  -webkit-backdrop-filter:blur(10px) saturate(160%);
  backdrop-filter:blur(10px) saturate(160%);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 4px 20px -4px rgba(0,0,0,.85);
  transition:background .3s, border-color .3s, transform .3s;
}
.video__play svg{
  width:20px; height:20px; margin-left:2px;
  fill:#fff; filter:drop-shadow(0 1px 2px rgba(0,0,0,.5));
  transition:fill .3s;
}
.video:hover .video__play,
.video:focus-visible .video__play{
  background:var(--gold); border-color:var(--gold); transform:scale(1.09);
}
.video:hover .video__play svg,
.video:focus-visible .video__play svg{ fill:#120E06; }

.video__label{
  display:block; padding-inline:.15rem;
  font-size:.95rem; line-height:1.4; color:var(--ink-muted);
  transition:color .25s;
}
.video:hover .video__label{ color:var(--ink); }

/* the player takes over the frame; the caption stays put underneath */
.video.is-playing{ cursor:default; }
.video.is-playing .video__frame{ transform:none; box-shadow:0 0 0 1px var(--line-gold); }
.video.is-playing .video__frame::after{ opacity:0; }
.video.is-playing iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

.videos__cta{ margin-top:clamp(2rem,4vw,2.75rem); text-align:center; }
.btn--youtube{ --btn-bg:transparent; --btn-fg:var(--ink); --btn-bd:rgba(255,255,255,.28); }
.btn--youtube .ico{ width:1.35em; height:1.35em; color:#FF0033; }
.btn--youtube:hover{ --btn-bd:#FF0033; --btn-fg:#fff; --btn-bg:rgba(255,0,51,.1); }

.site-footer__yt{ display:inline-flex; align-items:center; gap:.5rem; }
.site-footer__yt .ico{ width:1.15em; height:1.15em; color:#FF0033; }

@media (prefers-reduced-motion:reduce){
  .video__frame,.video__frame img,.video__play,.video__label{ transition:none; }
  .video:hover .video__frame{ transform:none; }
  .video:hover .video__frame img{ transform:none; }
}

/* ================================================================= STEPS */
.steps{ display:grid; gap:1.5rem; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); counter-reset:s; }
.step{
  position:relative; padding:2rem 1.5rem 1.75rem;
  background:var(--surface); border:1px solid var(--line);
  border-top:3px solid var(--gold); border-radius:var(--radius);
}
.step__n{
  display:block; margin-bottom:.65rem;
  font-family:var(--f-head); font-weight:800; font-size:2.3rem; line-height:1;
  color:var(--gold); opacity:.55;
}
.step h3{ font-size:1rem; letter-spacing:.05em; text-transform:uppercase; color:var(--ink); }
.step p{ margin:.65rem 0 0; color:var(--ink-muted); font-size:.94rem; }

/* ================================================================= ABOUT */
.about{
  display:grid; gap:clamp(1.75rem,4vw,3rem);
  grid-template-columns:1.15fr .85fr 1fr;
  align-items:start;
}
.about__copy p{ color:var(--ink-muted); }
.about__copy .btn{ margin-top:1rem; }
.about__media{
  border:1px solid var(--line-gold); border-radius:var(--radius); overflow:hidden;
  aspect-ratio:3/4;
}
.about__media img{ width:100%; height:100%; object-fit:cover; }
.about__why{
  padding:1.85rem 1.6rem;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
}
.about__why h3{
  margin-bottom:1.2rem;
  font-size:1rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}
.ticks li{
  position:relative; padding-left:2rem; margin-bottom:.85rem;
  color:var(--ink-muted); font-size:.97rem; line-height:1.45;
}
.ticks li::before{
  content:""; position:absolute; left:0; top:.15rem;
  width:1.15rem; height:1.15rem; border-radius:50%;
  border:1.5px solid var(--gold);
  background:
    linear-gradient(45deg,transparent 46%,var(--gold) 46%,var(--gold) 60%,transparent 60%) no-repeat 2px 5px/6px 6px,
    linear-gradient(-45deg,transparent 46%,var(--gold) 46%,var(--gold) 60%,transparent 60%) no-repeat 5px 2px/8px 8px;
}
@media (max-width:1000px){
  .about{ grid-template-columns:1fr 1fr; }
  .about__media{ order:3; }
  .about__why{ order:2; }
}
@media (max-width:680px){
  .about{ grid-template-columns:1fr; }
  .about__media{ max-width:380px; }
}

/* =============================================================== CONTACT */
.contact{ display:grid; gap:2rem; grid-template-columns:1.4fr .85fr; align-items:start; }
@media (max-width:860px){ .contact{ grid-template-columns:1fr; } }

.form{
  padding:clamp(1.4rem,3.5vw,2.25rem);
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
}
.form__row{ display:grid; gap:1.1rem; grid-template-columns:1fr 1fr; }
@media (max-width:520px){ .form__row{ grid-template-columns:1fr; } }
.field{ margin-bottom:1.1rem; }
.field label{
  display:block; margin-bottom:.45rem;
  font-family:var(--f-head); font-weight:600; font-size:.76rem;
  letter-spacing:.13em; text-transform:uppercase; color:var(--ink-muted);
}
.field label span{ color:var(--gold); }
.field input,.field select,.field textarea{
  width:100%; padding:.85rem .95rem;
  background:var(--surface-2); color:var(--ink);
  border:1px solid var(--line); border-radius:var(--radius);
  font:400 1rem/1.4 var(--f-body);
  transition:border-color .2s, background .2s;
}
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--gold); background:#221F1B; outline:none;
}
.field input::placeholder,.field textarea::placeholder{ color:var(--ink-dim); }
.field select{ appearance:none; cursor:pointer;
  background-image:linear-gradient(45deg,transparent 50%,var(--gold) 50%),linear-gradient(135deg,var(--gold) 50%,transparent 50%);
  background-position:calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size:6px 6px; background-repeat:no-repeat;
}
.field select option{ background:#1F1D1A; color:var(--ink); }
.form__note{ margin:1rem 0 0; font-size:.9rem; color:var(--ink-dim); text-align:center; }
.form__note a{ color:var(--gold); }
/* spam trap — hidden from people, still in the DOM for bots to trip over */
.hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

.form__status{
  margin:0 0 1.1rem; padding:.9rem 1rem; border-radius:var(--radius);
  font-size:.95rem; border:1px solid var(--line-gold); background:rgba(196,146,47,.1);
  color:var(--gold-light);
}
.form__status[data-state="error"]{ border-color:rgba(220,90,70,.5); background:rgba(220,90,70,.1); color:#F0A99C; }
.btn:disabled{ opacity:.6; cursor:progress; transform:none; }

.contact__info h3{
  margin-bottom:1.35rem;
  font-size:1rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}
.contact__list li{ display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.35rem; }
.contact__list .ico{ width:22px; height:22px; margin-top:.2rem; fill:var(--gold); }
.contact__list span{
  display:block; font-family:var(--f-head); font-weight:600; font-size:.7rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink-dim);
}
.contact__list a{ font-size:1.06rem; font-weight:500; text-decoration:none; }
.contact__list a:hover{ color:var(--gold); }
.contact__list small{ display:block; margin-top:.2rem; font-size:.87rem; color:var(--ink-dim); }
.contact__badge{
  margin-top:2rem; padding:1.25rem 1.35rem;
  background:var(--surface); border-left:3px solid var(--gold); border-radius:var(--radius);
}
.contact__badge strong{
  display:block; margin-bottom:.4rem;
  font-family:var(--f-head); font-size:.82rem; letter-spacing:.12em;
  text-transform:uppercase; color:var(--gold);
}
.contact__badge p{ margin:0; font-size:.93rem; color:var(--ink-muted); }

/* =================================================================== CTA */
.cta{ background:linear-gradient(90deg,var(--gold-dark),var(--gold) 45%,var(--gold-light) 130%); color:#150F03; }
.cta__inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:1rem 2rem; padding-block:1.25rem;
}
.cta__phone{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--f-head); font-weight:800; font-size:1.25rem;
  text-decoration:none;
}
.cta__line{
  margin:0; font-family:var(--f-head); font-weight:700;
  font-size:1.05rem; letter-spacing:.06em; text-transform:uppercase;
}
@media (max-width:820px){
  .cta__inner{ flex-direction:column; text-align:center; padding-block:1.75rem; }
}

/* ================================================================ FOOTER */
.site-footer{ background:#070707; border-top:1px solid var(--line); }
.site-footer__grid{
  display:grid; gap:2.5rem;
  grid-template-columns:1.6fr 1fr 1.2fr 1.2fr;
  padding-block:3.5rem 2.5rem;
}
.site-footer__logo{ width:auto; height:54px; margin-bottom:1.2rem; }
.site-footer p{ margin:0; color:var(--ink-dim); font-size:.94rem; }
.site-footer h4{
  margin-bottom:1.1rem;
  font-size:.8rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}
.site-footer li{ margin-bottom:.6rem; color:var(--ink-muted); font-size:.95rem; }
.site-footer a{ text-decoration:none; }
.site-footer a:hover{ color:var(--gold); }
.site-footer__bar{
  display:flex; flex-wrap:wrap; gap:.5rem 2rem; justify-content:space-between;
  padding-block:1.35rem; border-top:1px solid var(--line);
}
.site-footer__bar p{ font-size:.87rem; }
@media (max-width:820px){ .site-footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .site-footer__grid{ grid-template-columns:1fr; } }

/* ============================================================== LIGHTBOX */
.lightbox{
  position:fixed; inset:0; z-index:120;
  display:flex; align-items:center; justify-content:center; gap:1rem;
  padding:clamp(1rem,4vw,3rem);
  background:rgba(5,5,5,.94);
  animation:fade .2s ease;
}
.lightbox[hidden]{ display:none; }
@keyframes fade{ from{ opacity:0; } }
.lightbox__figure{ margin:0; max-width:100%; max-height:100%; text-align:center; }
.lightbox__figure img{
  max-height:78vh; width:auto; margin-inline:auto;
  border:1px solid var(--line-gold); border-radius:var(--radius);
}
.lightbox__figure figcaption{ margin-top:1rem; color:var(--ink-muted); font-size:.95rem; }
.lightbox__close{
  position:absolute; top:1rem; right:1.25rem;
  width:44px; height:44px; line-height:1;
  background:none; border:0; color:var(--ink); font-size:2.2rem; cursor:pointer;
}
.lightbox__close:hover{ color:var(--gold); }
.lightbox__nav{
  width:52px; height:52px; flex:none;
  background:rgba(255,255,255,.06); border:1px solid var(--line); border-radius:50%;
  color:var(--ink); font-size:2rem; line-height:0; cursor:pointer;
  transition:background .2s, color .2s;
}
.lightbox__nav:hover{ background:var(--gold); color:#120E06; }
@media (max-width:640px){
  .lightbox__nav{ position:absolute; bottom:1.25rem; }
  .lightbox__nav--prev{ left:20%; }
  .lightbox__nav--next{ right:20%; }
}

/* =========================================================== ANIMATIONS */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .btn:hover,.card:hover{ transform:none; }
  .card__media img,.gallery__item img{ transition:none; }
}

@media print{
  .topbar,.site-header,.cta,.lightbox,.hero__media{ display:none !important; }
  body{ background:#fff; color:#000; }
}
