/* ── SECTION BASE ── */
section {
  padding: 110px 64px;
  position: relative;
}

.stag {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--a);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.stitle {
  font-family: var(--fh);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.ssub {
  font-size: 16.5px;
  color: var(--t2);
  max-width: 500px;
  font-weight: 300;
  line-height: 1.75;
}

/* ── SHARED TAGS ── */
.tag {
  font-family: var(--fm);
  font-size: 10.5px;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--t2);
}
.tag.v { background: rgba(180, 83, 9, .1);  color: var(--a);  border-color: rgba(180, 83, 9, .25); }
.tag.g { background: rgba(15, 118, 110, .08);   color: var(--a2); border-color: rgba(15, 118, 110, .2);   }
.tag.r { background: rgba(220, 38, 38, .08); color: var(--a3); border-color: rgba(220, 38, 38, .2); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}

nav.s {
  background: rgba(250, 250, 247, .92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: var(--t);
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--a);
  animation: pdot 2.4s ease-in-out infinite;
}

.nav-links { display: flex; gap: 36px; }

.nav-links a {
  font-size: 13.5px;
  color: var(--t2);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .015em;
}
.nav-links a:hover { color: var(--t); }

.nav-cta {
  background: var(--a);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: all .25s;
}
.nav-cta:hover {
  background: #c46c10;
  box-shadow: 0 0 32px rgba(180, 83, 9, .4);
}

/* ── LANG BUTTON ── */
.lang-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--t3);
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 6px 13px;
  border-radius: 40px;
  cursor: pointer;
  transition: all .2s;
  margin-right: 12px;
}
.lang-btn:hover {
  border-color: var(--a);
  color: var(--a);
  background: rgba(180,83,9,.07);
}

/* ── FOOTER ── */
footer {
  padding: 44px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-left { font-family: var(--fm); font-size: 11.5px; color: var(--t3); }
.f-left span { color: var(--a); }

.f-links { display: flex; gap: 28px; }
.f-links a { font-size: 13px; color: var(--t3); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--a); }
