:root{
  --bg: #0b0f14;
  --bg-2: #070a0f;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.1);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.6);
  --border: rgba(255,255,255,0.12);
  --accent: #f6d60a;
  --accent-2: #ffb800;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --shadow-soft: 0 18px 60px rgba(0,0,0,0.28);
  --ring: rgba(255,181,0,0.55);

  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;
  --pad: 22px;
  --section: 72px;
  --header-h: 76px;

  --font: "Raleway", ui-sans-serif, "SF Pro Display", "SF Pro Text", -apple-system, system-ui, "Segoe UI Variable Display", "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*{box-sizing:border-box}
html{color-scheme:dark;scroll-behavior:smooth}
body{
  margin:0;
  position:relative;
  z-index:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 780px at 12% 8%, rgba(255,181,0,0.26), transparent 62%),
    radial-gradient(980px 680px at 88% 10%, rgba(255,184,0,0.22), transparent 58%),
    radial-gradient(1100px 780px at 46% 96%, rgba(255,255,255,0.16), transparent 64%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height:1.6;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit}
::selection{background:rgba(255,181,0,0.26)}
.text-shadow-lg{
  text-shadow: 0 0px 5px rgba(0,0,0,0.5), 0 5px 30px rgba(0,0,0,0.75);
}
.text-shadow{
  text-shadow: 0 0px 5px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.75);
}

[id]{scroll-margin-top: calc(var(--header-h) + 18px)}

.skip-link{
  position:absolute;
  top:-60px;
  left:12px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(255,255,255,0.12);
  border:1px solid var(--border);
  z-index:1000;
  transition:top 0.2s ease;
}
.skip-link:focus{top:12px;outline:none}

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

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter: blur(12px);
  background-color: var(--accent-2);
  color: black;
  transition:background 0.79s ease, box-shadow 0.79s ease;
}
.site-header.is-scrolled{
  background:rgba(0,0,0,0.78);
  box-shadow: 0 14px 50px rgba(0,0,0,0.35);
  color: var(--muted);
}
.site-header.is-scrolled .site-nav a::after{
  background:linear-gradient(90deg, rgba(255,181,0,0.0), rgba(255,181,0,0.65), rgba(255,184,0,0.55), rgba(255,184,0,0.0));
}
.site-header.is-scrolled .lang-link{
  border:1px solid var(--ring);
  background:rgba(255,255,255,0.04);
  color:var(--accent-2);
}
.site-header.is-scrolled .lang-link:hover{transform:translateY(-1px);}
.site-header.is-scrolled .lang-link[aria-current="page"]{
  color:var(--bg);
  background:var(--accent);
  border:1px solid var(--accent);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 0;
}

.menu-container{
  display: none;
}



.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:0.2px;
}
.brand-mark{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
}
.brand-mark img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  border-radius:inherit;
}
.brand-mark svg{width:20px;height:20px}
.brand .brand-name{
  font-weight:300;
  letter-spacing:3px;
}

.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:100%;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.06);
  color:var(--text);
}
.nav-toggle:focus-visible{outline:2px solid var(--ring);outline-offset:2px}

.site-nav{
  display:none;
}

.site-nav a{
  position:relative;
  padding:10px 12px;
  border-radius:8px;
  color: inherit;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition:background 0.78s ease, color 0.78s ease, transform 0.78s ease;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:1px;
  background:linear-gradient(90deg, rgba(0,0,0,0.0), rgba(0,0,0,0.65), rgba(0,0,0,0.55), rgba(0,0,0,0.0));
  opacity:0;
  transform:translateY(4px);
  transition:opacity 0.78s ease, transform 0.78s ease;
}
/* .site-nav a:hover{background:rgba(255,255,255,0.06);color:var(--text);transform:translateY(-1px)} */
.site-nav a:hover::after{opacity:1;transform:translateY(0)}
.site-nav a[aria-current="page"]{
  color:var(--text);
  /* background:rgba(255,181,0,0.12);
  border:1px solid rgba(255,181,0,0.22); */
}
.site-nav a[aria-current="page"]::after{opacity:1;transform:translateY(0)}

.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
}
.lang-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 30px;
  height: 30px;
  padding: 2px 0 0 2px;
  border-radius:100%;
  border:1px solid rgba(0,0,0,0.1);
  background:rgba(255,255,255,0.04);
  color:var(--bg);
  font-size:10px;
  letter-spacing:0.08em;
  line-height: 100%;
  vertical-align: bottom;
  text-align: center;
  text-transform:uppercase;
  transition:all 0.37s ease-in-out;
}
.lang-link:hover{color:var(--text);background:rgba(255,255,255,0.06);transform:translateY(-1px);border-color:rgba(255,255,255,0.16)}
.lang-link[aria-current="page"]{
  background:var(--bg);
  color:var(--accent);
}

.nav-panel{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.78s ease;
  z-index:80;
}
.nav-panel.is-open{opacity:1;pointer-events:auto}
.nav-sheet{
  position:absolute;
  inset:auto 0 0 0;
  background:rgba(11,15,20,0.92);
  backdrop-filter: blur(14px);
  border-top:1px solid var(--border);
  border-radius:14px 14px 0 0;
  padding:18px 18px 26px;
  transform:translateY(12px);
  transition:transform 0.78s ease;
}
.nav-panel.is-open .nav-sheet{transform:translateY(0)}
.nav-sheet nav{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:12px;
}
.nav-sheet a{
  padding:13px 16px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
  color:var(--text);
}

section.section {
  min-height: 90vh;
}

.hero{
  position:relative;
  overflow:hidden;
  padding: calc(var(--section) + 10px) 0 var(--section);
}
.hero:not(.hero--compact){
  min-height:90vh;
  display:flex;
  align-items:flex-end;
}
.hero::before, .hero::after{filter: blur(25px)}
.hero::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  inset:auto;
  width:520px;
  height:520px;
  transform-origin:0 0;
  --orbit-x:-80px;
  --orbit-y:-620px;
  animation:hero-orbit 20s linear infinite;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(255,184,0,0.58), rgba(255,184,0,0.0) 65%);
  will-change:transform;
  pointer-events:none;
  box-shadow: 100px 300px 150px rgba(255,255,255,0.15);
}
.hero::after{
  content:"";
  position:absolute;
  right:0%;
  bottom:0%;
  inset:auto;
  width:960px;
  height:900px;
  transform-origin:0 0;
  --orbit-x:380px;
  --orbit-y:200px;
  animation:hero-orbit-reverse 30s linear infinite;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(255,181,0,0.18), rgba(255,181,0,0.0) 68%);
  will-change:transform;
  pointer-events:none;
}
@keyframes hero-orbit{
  from{transform:rotate(0deg) translate(var(--orbit-x), var(--orbit-y))}
  to{transform:rotate(360deg) translate(var(--orbit-x), var(--orbit-y))}
}
@keyframes hero-orbit-reverse{
  from{transform:rotate(0deg) translate(var(--orbit-x), var(--orbit-y))}
  to{transform:rotate(-360deg) translate(var(--orbit-x), var(--orbit-y))}
}
.hero--compact{padding: calc(var(--section) - 10px) 0 calc(var(--section) - 12px)}
.hero-grid{
  display:grid;
  gap:24px;

}
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-family:var(--mono);
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:12px;
}
.eyebrow-dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(255,181,0,0.22);
}

h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin: 12px 0 12px;
  letter-spacing:-0.02em;
}
h2{
  font-size: clamp(24px, 3vw, 36px);
  line-height:1.12;
  margin: 0 0 12px;
  letter-spacing:-0.02em;
}
h3{
  font-size:18px;
  line-height:1.2;
  margin:0 0 10px;
}
p{margin:0 0 14px;color:var(--muted)}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:60ch;
}

.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 16px;
  border-radius:8px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.05);
  color:var(--text);
  transition:transform 0.79s ease, background 0.79s ease, border-color 0.79s ease, box-shadow 0.79s ease;
  will-change:transform;
}
.btn{
  padding:8px 16px;
  border-radius: 32px;
}
.btn:hover{transform:translateY(-2px);background:rgba(255,255,255,0.08);box-shadow: 0 14px 42px rgba(0,0,0,0.26)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:2px solid var(--ring);outline-offset:2px}
.btn-primary{
  background:linear-gradient(135deg, rgba(255,181,0,0.98), rgba(255,184,0,0.94));
  border-color:rgba(255,181,0,0.28);
  color:rgba(11,15,20,0.96);
  box-shadow: 0 16px 58px rgba(255,181,0,0.18);
}
.btn-primary:hover{
  background:linear-gradient(135deg, rgba(255,181,0,1), rgba(255,184,0,0.98));
  border-color:rgba(255,181,0,0.4);
  box-shadow: 0 18px 66px rgba(255,181,0,0.22);
}
.btn-ghost{
  background:transparent;
}
.btn-smoked{
  background:linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
  border-color:rgba(255,255,255,0.14);
  color:rgba(255,255,255,0.92);
}
.btn-smoked:hover{
  background:linear-gradient(180deg, rgba(0,0,0,0.86), rgba(0,0,0,0.56));
  border-color:rgba(255,255,255,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.hero-card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.kpi-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
}
.kpi{
  padding:16px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04);
}
.kpi strong{
  display:block;
  font-size:18px;
  letter-spacing:-0.01em;
}
.kpi span{color:var(--muted);font-size:13px}

.section{
  padding: var(--section) 0;
}
.section--light{
  background:#ffffff;
  color:rgba(11,15,20,0.92);
  --text: rgba(11,15,20,0.92);
  --muted: rgba(11,15,20,0.72);
  --muted-2: rgba(11,15,20,0.6);
  --border: rgba(11,15,20,0.12);
  --surface: rgba(11,15,20,0.03);
  --surface-2: rgba(11,15,20,0.06);
  --shadow-soft: 0 18px 60px rgba(0,0,0,0.12);
}
.section--light .card{
  background:linear-gradient(180deg, rgba(11,15,20,0.04), rgba(11,15,20,0.02));
}
.section--light .card:hover{
  border-color:rgba(11,15,20,0.18);
  background:linear-gradient(180deg, rgba(11,15,20,0.06), rgba(11,15,20,0.03));
  box-shadow: 0 26px 80px rgba(0,0,0,0.16);
}
.section--light .btn{
  background:rgba(11,15,20,0.04);
  border-color:var(--border);
  color:var(--text);
}
.section--light .btn:hover{background:rgba(11,15,20,0.06);box-shadow: 0 14px 42px rgba(0,0,0,0.14)}
.section--light .btn-ghost{background:transparent}
.section--light .btn-smoked{
  background:linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
  border-color:rgba(0,0,0,0.18);
  color:rgba(255,255,255,0.92);
}
.section--light .btn-smoked:hover{
  background:linear-gradient(180deg, rgba(0,0,0,0.86), rgba(0,0,0,0.56));
  border-color:rgba(0,0,0,0.26);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.section--light .tag{
  color:rgba(11,15,20,0.72);
  border-color:rgba(11,15,20,0.14);
  background:rgba(11,15,20,0.03);
}
.section--light .card-icon{
  border-color:rgba(11,15,20,0.14);
  background:
    radial-gradient(circle at 28% 22%, rgba(255,181,0,0.16), transparent 62%),
    radial-gradient(circle at 72% 70%, rgba(255,184,0,0.12), transparent 58%),
    rgba(11,15,20,0.02);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}
.section-head p{margin:0;max-width:70ch}


.section[aria-labelledby="home-about"]{
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--bg-2);
  min-height: 70vh;
  background-color: var(--accent);
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 50px rgba(0,0,0,0.5);
}
.section[aria-labelledby="home-about"] *{
  color: var(--bg-2);
}
.section[aria-labelledby="home-about"] .bg-face{
  position: absolute;
  top: 0%;
  right: -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section[aria-labelledby="home-about"] .bg-face img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: moveFace 10s linear infinite, faceOpacity 10s linear infinite alternate;
}
@keyframes faceOpacity{
  from{opacity:0.1}
  to{opacity:0.75}
}

.grid{
  display:grid;
  gap:20px;
}
.grid-3{grid-template-columns: repeat(1, minmax(0, 1fr))}
.grid-2{grid-template-columns: repeat(1, minmax(0, 1fr))}

.card{
  border-radius:var(--radius);
  /* border:1px solid var(--border); */
  background:linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
  padding:22px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 1s ease-in-out, border-color 1s ease-in-out;
  backdrop-filter: blur(10px);
}
.card:hover{
  border-color:rgba(255,255,255,0.2);
  transform:translateY(-3px);
  background:linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
  box-shadow: 0 10px 40px rgba(224, 195, 12, 0.5);
}

.card-icon{
  width:44px;
  height:44px;
  border-radius:8px;
  display:grid;
  place-items:center;
  border:1px solid var(--accent-2);
  /* background:
    radial-gradient(circle at 28% 22%, rgba(255,181,0,0.18), transparent 62%),
    radial-gradient(circle at 72% 70%, rgba(255,184,0,0.14), transparent 58%),
    rgba(255,255,255,0.04); */
  background: transparent;
  box-shadow: 0 18px 70px rgba(255,181,0,0.1);
}
.card-icon svg{width:22px;height:22px; color:var(--accent)}

.service-card{display: flex; flex-direction: column; gap: 8px; border: 1px solid rgba(255, 184, 0, 0.1)}
.service-card:hover{border-color: rgba(255, 184, 0, 0.3)}
.service-card h3{margin: 12px 0 8px}
.service-card p{margin:0;color:var(--muted)}
.service-card .tag{margin-top:10px}
.card-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.86);
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
}
.tag::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
}
.list{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}
.list li{margin:8px 0}

.split{
  display:grid;
  gap:22px;
  align-items:start;
}
.note{
  padding:16px 18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,181,0,0.18);
  background:rgba(255,181,0,0.06);
  color:rgba(255,255,255,0.88);
}
.note strong{display:block;margin-bottom:6px}
.note p{margin:0;color:rgba(255,255,255,0.78)}

.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap:22px;
}
.project{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.project-media{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.06);
}
.project-media img{
  width:100%;
  height:auto;
  transform:scale(1.01);
  transition:transform 0.28s ease, filter 0.28s ease;
}
.project-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:18px;
  background:linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.58));
  opacity:0;
  transform:translateY(6px);
  transition:opacity 0.24s ease, transform 0.24s ease;
}
.project:hover .project-overlay{opacity:1;transform:translateY(0)}
.project:hover .project-media img{transform:scale(1.06);filter:saturate(1.05)}
.project-overlay .tag{backdrop-filter: blur(10px)}
.project-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.project-title{
  font-size:16px;
  margin:0;
}
.project-desc{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

#section-contact{
  border-top:7px solid var(--accent-2);
  background:radial-gradient(circle at 30% 30%, rgba(255,184,0,0.58), rgba(255,184,0,0.0) 65%);
}

.filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin: 10px 0 24px;
}
.filter-btn{
  border-radius:999px;
  padding:11px 14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  color:var(--muted);
  cursor:pointer;
  transition:background 0.78s ease, color 0.78s ease, transform 0.78s ease;
}
.filter-btn[aria-pressed="true"]{color:rgba(11,15,20,0.96);background:rgba(255,181,0,0.9);border-color:rgba(255,181,0,0.3)}
.filter-btn:hover{transform:translateY(-1px);color:var(--text)}
.filter-btn:focus-visible{outline:2px solid var(--ring);outline-offset:2px}

.form{
  display:grid;
  gap:14px;
}
label{display:block;color:var(--muted);font-size:13px;margin-bottom:6px}
input, textarea{
  width:100%;
  padding:13px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.04);
  color:var(--text);
}
textarea{min-height:140px;resize:vertical}
input:focus, textarea:focus{outline:2px solid var(--ring);outline-offset:1px}
.form-row{display:grid;gap:14px}
.form-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.form-hint{color:var(--muted-2);font-size:13px;margin:0}

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  background:rgba(11,15,20,0.92);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 16px;
  box-shadow: var(--shadow);
  color:var(--text);
  max-width:min(520px, calc(100% - 24px));
  opacity:0;
  pointer-events:none;
  transition:opacity 0.78s ease, transform 0.78s ease;
  z-index:120;
}
.toast.is-visible{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(-2px)}

.site-footer{
  padding: 26px 0 38px;
  border-top:1px solid rgba(255,255,255,0.08);
  background:black;
}
.footer-grid{
  display:grid;
  gap:18px;
}
.footer-col{display:flex;flex-direction:column;gap:10px}
.footer-title{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--muted-2);
  font-family:var(--mono);
  margin:0;
}
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.footer-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:8px;
  /* border:1px solid rgba(255,255,255,0.1); */
  /* background:rgba(255,255,255,0.03); */
  color:var(--muted);
  transition:background 0.78s ease, color 0.78s ease, transform 0.78s ease, border-color 0.78s ease;
}
.footer-link:hover{color:var(--text);
  transform:translateY(-1px);
  /* border-color:rgba(255,255,255,0.16) */
  /* background:rgba(255,255,255,0.06); */
}
.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  flex-direction:column;
  gap:10px;
  justify-content:space-between;
}
.footer-bottom .footer-list{display:flex;flex-wrap:wrap;gap:10px}
.fineprint{color:var(--muted-2);font-size:13px;margin:0}

.reveal{
  opacity:0;
  transform:translateY(50px);
  filter:blur(5px);
  transition:opacity 0.80s ease-in-out, transform 0.80s ease-in-out, filter 0.40s ease-in-out;
}
.reveal.is-visible{
  opacity:1;
  filter:blur(0);
  transform:translateY(0);
  transition:opacity 0.80s ease-in-out, transform 0.80s ease-in-out, filter 0.40s ease-in-out;
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  body::before{animation:none}
  .reveal{opacity:1;transform:none;transition:none}
  .btn,.filter-btn,.nav-panel,.nav-sheet{transition:none}
  .hero::before,.hero::after{animation:none}
}

@media (min-width: 760px){
  :root{--pad: 28px; --section: 92px}
  .nav-toggle{display:none}
  .site-nav{display:flex;gap:6px;align-items:center}
  .menu-container{display:flex;align-items:center;justify-content:space-between;gap:12px;}
  .nav-panel{display:none}

  .hero-grid{grid-template-columns: 1.2fr 0.8fr;align-items:start}
  .kpi-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .grid-3{grid-template-columns: repeat(3, minmax(0, 1fr))}
  .grid-2{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .split{grid-template-columns: 1.1fr 0.9fr}
  .portfolio-grid{grid-template-columns: repeat(3, minmax(0, 1fr))}
  .footer-grid{grid-template-columns: 1.2fr 1fr 1fr;align-items:start}
  .footer-bottom{flex-direction:row;align-items:center}
}
