/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --bg-primary: #0b0f0d;
  --bg-secondary: #111817;
  --bg-card: #171b18;
  --bg-card-hover: #202821;
  --bg-elevated: #11151a;
  --text-primary: #f5efe4;
  --text-secondary: #c8c0ac;
  --text-muted: #877e6d;
  --accent: #c9a45b;
  --accent-light: #e4c982;
  --accent-dim: #8a7139;
  --emerald: #0e6d54;
  --emerald-dark: #0a3a32;
  --burgundy: #682333;
  --border: rgba(201, 164, 91, 0.14);
  --border-strong: rgba(201, 164, 91, 0.32);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background:
    linear-gradient(135deg, rgba(10, 58, 50, 0.22), transparent 32%),
    linear-gradient(180deg, var(--bg-primary), #0f1114 54%, var(--bg-primary));
  color: var(--text-primary);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: rgba(11, 15, 13, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(11, 15, 13, 0.96);
  box-shadow: 0 1px 0 var(--border);
}

.s7qyAloE {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.yC97PKAgXNf {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.yC97PKAgXNf span {
  color: var(--accent);
}

.yApiuhYPDqy {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
  list-style: none;
}

.yApiuhYPDqy a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s, letter-spacing 0.4s var(--ease-out);
  position: relative;
  padding: 0.3rem 0;
}

.yApiuhYPDqy a::before,
.yApiuhYPDqy a::after {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1.1em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}

.yApiuhYPDqy a::before {
  content: '[';
  left: -0.6em;
  transform: translateX(4px);
}

.yApiuhYPDqy a::after {
  content: ']';
  right: -0.6em;
  transform: translateX(-4px);
}

.yApiuhYPDqy a:hover,
.yApiuhYPDqy a.active {
  color: var(--accent);
  letter-spacing: 0.16em;
}

.yApiuhYPDqy a:hover::before,
.yApiuhYPDqy a:hover::after,
.yApiuhYPDqy a.active::before,
.yApiuhYPDqy a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.AbARn3 {
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  padding: 0.75rem 1.8rem !important;
  border: 1px solid var(--accent-dim);
  color: var(--accent) !important;
  transition: all 0.3s var(--ease-smooth) !important;
}

.AbARn3::before,
.AbARn3::after { display: none !important; }

.AbARn3:hover {
  background: var(--accent);
  color: var(--bg-primary) !important;
  border-color: var(--accent);
  letter-spacing: 0.12em !important;
}

/* Mobile menu */
.CzogSp {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.CzogSp span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.CzogSp.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.CzogSp.open span:nth-child(2) {
  opacity: 0;
}

.CzogSp.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ========================================
   HERO — SPLIT LAYOUT
   ======================================== */
.MApJIr1 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.UICDEXJ35 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vh, 8rem) clamp(2rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.EQomMT {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

.EQomMT::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.QviugWRDyto {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s forwards;
}

.QviugWRDyto em {
  font-style: italic;
  color: var(--accent);
}

.vOd7pe6E {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.6s forwards;
}

.NFSKAJszXnh {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.8s forwards;
}

.pNg9sy4 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.pNg9sy4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pNg9sy4:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
}

.pNg9sy4:hover::before {
  opacity: 1;
}

.pNg9sy4 svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.pNg9sy4:hover svg {
  transform: translateX(3px);
}

.k3esIEzg {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.k3esIEzg:hover {
  color: var(--accent);
}

/* Hero visual side */
.BAfFZ3gH6aX {
  position: relative;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.BAfFZ3gH6aX::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 109, 84, 0.22), transparent 54%),`r`n    linear-gradient(45deg, rgba(104, 35, 51, 0.16), transparent 62%);
}

.U9oNxzj8lRN {
  position: relative;
  width: 80%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeScale 1s var(--ease-out) 0.5s forwards;
}

.l1Au7fqjKH {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.u9AWtG2DIfG {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.u9AWtG2DIfG:nth-child(1) { background: #e06c60; opacity: 0.7; }
.u9AWtG2DIfG:nth-child(2) { background: #e5bf4e; opacity: 0.7; }
.u9AWtG2DIfG:nth-child(3) { background: #61c354; opacity: 0.7; }

.PJnvCur7 {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.SayU2KbgxJ {
  padding: 24px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.SayU2KbgxJ .kw { color: #c792ea; }
.SayU2KbgxJ .D6w0coOobT { color: #82aaff; }
.SayU2KbgxJ .str { color: #c3e88d; }
.SayU2KbgxJ .cm { color: var(--text-muted); font-style: italic; }
.SayU2KbgxJ .Vn54sEdccdF { color: #f78c6c; }
.SayU2KbgxJ .op { color: #89ddff; }
.SayU2KbgxJ .pr { color: var(--accent); }
.SayU2KbgxJ .typ { color: #ffcb6b; }

/* Floating decorative elements */
.aCJemiy {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}

.oCJDQ0s36NU {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.UN4EOgN3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 8%;
  animation-delay: -2s;
}

.FIBGL0Zz9WO {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 20%;
  opacity: 0.4;
  animation-delay: -4s;
}

/* ========================================
   SECTIONS — SHARED
   ======================================== */
.JxjWEokbJ {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.g2GPhChYV {
  max-width: 1100px;
  margin: 0 auto;
}

.BAtwVwwaAj {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.BAtwVwwaAj::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-dim);
}

.eiU0n3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.lN9u8uaTCgO {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.KhHBSCf {
  width: 100%;
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   ABOUT
   ======================================== */
.wbsQL6t {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.k0szLBjpnpF {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.BEtLZGZMXDA {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}

.BEtLZGZMXDA svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.BEtLZGZMXDA span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.Cj5oDcj h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.Cj5oDcj p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.9;
}

.lBpaqkuu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.wgV9hyF {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.lEkvUUdo6 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

/* ========================================
   SKILLS / TECH STACK
   ======================================== */
.H2C1EUgWmI {
  background: var(--bg-secondary);
}

.wuvvpGCp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.F8Y99BYcMz h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.VInoiKh4iaV {
  margin-bottom: 1.4rem;
}

.B0vhCstl7b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.aZd1OmThyB {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.FU7prV {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.mPauOvd {
  width: 100%;
  height: 3px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.CIa9EK {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 2px;
  width: var(--w);
  animation: barFill 1.2s var(--ease-out) forwards;
}

@keyframes barFill {
  from { width: 0; }
  to { width: var(--w); }
}

/* Tech stack icons */
.iYgbaHt {
  margin-top: 3rem;
}

.iYgbaHt h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.Duj6m9 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.OqIh9Kln {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}

.OqIh9Kln:hover {
  border-color: var(--border-strong);
  color: var(--accent);
  transform: translateY(-2px);
}

.OqIh9Kln svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   PROJECTS
   ======================================== */
.kdzolbWPa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.8rem;
}

.Up2Kml8:first-child {
  grid-row: 1 / 3;
}

.Up2Kml8:first-child .MfssgV {
  aspect-ratio: 4/3;
}

.Up2Kml8 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.Up2Kml8:nth-child(2),
.Up2Kml8:nth-child(3) {
  flex-direction: row;
}

.Up2Kml8:nth-child(2) .MfssgV,
.Up2Kml8:nth-child(3) .MfssgV {
  aspect-ratio: auto;
  min-width: 180px;
  max-width: 200px;
  flex-shrink: 0;
}

.Up2Kml8:nth-child(4) {
  grid-column: 1 / -1;
  flex-direction: row;
}

.Up2Kml8:nth-child(4) .MfssgV {
  aspect-ratio: auto;
  min-width: 280px;
  max-width: 340px;
  flex-shrink: 0;
}

.Up2Kml8:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.MfssgV {
  aspect-ratio: 16/10;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Qh4FaNCbRku {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 1px 1px, var(--accent) 1px, transparent 0);
  background-size: 20px 20px;
}

.TjPAEM9 {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  color: var(--accent-dim);
}

.D9N3CCzDx {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.OYZjggr3ch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.JtZtyvbBw {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

.J54Lm4Ld {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.qkAz5b {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.mJeR1q {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease-out);
}

.mJeR1q:hover {
  gap: 0.8rem;
}

.mJeR1q svg {
  width: 14px;
  height: 14px;
}

/* ========================================
   EXPERIENCE
   ======================================== */
.cBZiQ0 {
  background: var(--bg-secondary);
}

.cBZiQ0 .BAtwVwwaAj {
  justify-content: center;
}

.cBZiQ0 .eiU0n3 {
  text-align: center;
}

.cBZiQ0 .lN9u8uaTCgO {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.Z4bguNIdXh {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.Z4bguNIdXh::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-dim), var(--border), transparent);
  transform: translateX(-50%);
}

.mv5MNKNHhpW {
  position: relative;
  padding-bottom: 3.5rem;
  width: 46%;
}

.mv5MNKNHhpW:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 2.5rem;
}

.mv5MNKNHhpW:nth-child(even) {
  margin-left: 54%;
  text-align: left;
  padding-left: 2.5rem;
}

.mv5MNKNHhpW:last-child {
  padding-bottom: 0;
}

.TjesDz6aAAZ {
  position: absolute;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
}

.mv5MNKNHhpW:nth-child(odd) .TjesDz6aAAZ {
  right: -6px;
}

.mv5MNKNHhpW:nth-child(even) .TjesDz6aAAZ {
  left: -6px;
}

.duDqoPlfhN {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.PDpd49mV {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.ak8W3aEE8 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.ekY9n2L32 {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ========================================
   CONTACT
   ======================================== */
.J3GfJSkvvy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.ZxDn068mMn h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ZxDn068mMn p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.Fs1B1xS {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s;
  margin-bottom: 2rem;
}

.Fs1B1xS:hover {
  color: var(--accent-light);
}

.Fs1B1xS svg {
  width: 20px;
  height: 20px;
}

.XIThNT2AO {
  display: flex;
  gap: 1rem;
}

.ZG4xh6P {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
}

.ZG4xh6P:hover {
  color: var(--accent);
  border-color: var(--border-strong);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-2px);
}

.ZG4xh6P svg {
  width: 18px;
  height: 18px;
}

/* Contact form */
.FdzbgemPyc {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.t3RaLj {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.t3RaLj label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.t3RaLj input,
.t3RaLj textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}

.t3RaLj input::placeholder,
.t3RaLj textarea::placeholder {
  color: var(--text-muted);
}

.t3RaLj input:focus,
.t3RaLj textarea:focus {
  border-color: var(--accent-dim);
}

.t3RaLj textarea {
  resize: vertical;
  min-height: 120px;
}

.xTaenRc {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.xTaenRc:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
.dDqv0YaI {
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.dDqv0YaI p {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.dDqv0YaI p + p {
  margin-top: 0.4rem;
}

.dDqv0YaI a {
  color: var(--accent);
  transition: color 0.3s;
}

.dDqv0YaI a:hover {
  color: var(--accent-light);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .MApJIr1 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .UICDEXJ35 {
    padding: 8rem 2rem 4rem;
    order: 1;
  }

  .BAfFZ3gH6aX {
    order: 2;
    min-height: 50vh;
    padding: 3rem 2rem;
  }

  .wuvvpGCp {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .wbsQL6t {
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
  }

  .J3GfJSkvvy {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .Up2Kml8:nth-child(2),
  .Up2Kml8:nth-child(3) {
    flex-direction: column;
  }

  .Up2Kml8:nth-child(2) .MfssgV,
  .Up2Kml8:nth-child(3) .MfssgV {
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 768px) {
  .yApiuhYPDqy {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-elevated);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 120px 2rem 80px;
    border-left: 1px solid var(--border);
    transition: right 0.4s var(--ease-smooth);
    overflow-y: auto;
  }

  .yApiuhYPDqy.open {
    right: 0;
  }

  .CzogSp {
    display: flex;
    z-index: 1001;
  }

  .UICDEXJ35 {
    padding: 7rem 1.5rem 3rem;
  }

  .wbsQL6t {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .k0szLBjpnpF {
    max-width: 220px;
  }

  .lBpaqkuu {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

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

  .Up2Kml8:first-child {
    grid-row: auto;
  }

  .Up2Kml8:nth-child(2),
  .Up2Kml8:nth-child(3),
  .Up2Kml8:nth-child(4) {
    flex-direction: column;
  }

  .Up2Kml8:nth-child(2) .MfssgV,
  .Up2Kml8:nth-child(3) .MfssgV,
  .Up2Kml8:nth-child(4) .MfssgV {
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
  }

  .Up2Kml8:nth-child(4) {
    grid-column: auto;
  }

  /* Timeline collapse to single column */
  .Z4bguNIdXh::before {
    left: 0;
    transform: none;
  }

  .mv5MNKNHhpW {
    width: 100%;
    text-align: left !important;
    padding-left: 2rem !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
  }

  .TjesDz6aAAZ {
    left: -6px !important;
    right: auto !important;
  }

  .kodA6YHd8xw {
    grid-template-columns: repeat(26, 1fr);
  }
}

@media (max-width: 480px) {
  .QviugWRDyto {
    font-size: 2.4rem;
  }

  .NFSKAJszXnh {
    flex-direction: column;
    align-items: flex-start;
  }

  .wgV9hyF {
    font-size: 1.6rem;
  }
}
/* ========================================
   BRAXELMORI COMPONENTS
   ======================================== */
.REMwoUJ {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
}

.REMwoUJ:focus {
  left: 1rem;
}

.yoEhS9nfuA {
  color: var(--accent-light);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.S7PV8SqaIp {
  min-height: 76vh;
  padding-top: 80px;
}

.bHge1eBL {
  padding: clamp(8rem, 15vh, 11rem) clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vh, 6rem);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(120deg, rgba(14, 109, 84, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(17, 24, 23, 0.85), rgba(11, 15, 13, 0.98));
}

.bHge1eBL .g2GPhChYV {
  max-width: 900px;
}

.FkTWJIF,
.DuM1vO,
.IqW0YHuF,
.JtZtyvbBw,
.v0yNH2fA {
  overflow-wrap: anywhere;
}

.FkTWJIF {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.IqW0YHuF {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.DuM1vO {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--border-strong);
  color: var(--accent-light);
  background: rgba(14, 109, 84, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ov1r0D13Sx {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.FjUkne4e {
  min-height: 100%;
}

.OAV75rcBS,
.dMX0IvcyQs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.82);
}

.FjUkne4e::after,
.G2cwmr::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.08), rgba(11, 15, 13, 0.48));
  pointer-events: none;
}

.JyMabbMGor {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3rem);
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 4vw, 3rem);
  z-index: 2;
  padding: 1.25rem;
  border: 1px solid var(--border-strong);
  background: rgba(11, 15, 13, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.JyMabbMGor h2,
.tE6WhxL9PS h3,
.H6LcyDnf8 h2,
.OGlfH157p h3,
.aMOW0O5TDB h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
}

.JyMabbMGor h2 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.JyMabbMGor p,
.tE6WhxL9PS p,
.H6LcyDnf8 p,
.H6LcyDnf8 li,
.OGlfH157p p,
.v0yNH2fA {
  color: var(--text-secondary);
}

.G2cwmr {
  position: relative;
  min-height: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.KBorOGGaIt,
.Fv33sWe1l,
.WX0BlAbx,
.cbJKfb5ec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.tE6WhxL9PS,
.OGlfH157p,
.euaTfMBEq,
.kdqXC7cb {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.tE6WhxL9PS,
.OGlfH157p,
.kdqXC7cb {
  padding: 1.35rem;
}

.tE6WhxL9PS h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.tE6WhxL9PS p {
  font-size: 0.96rem;
  line-height: 1.75;
}

.tE6WhxL9PS strong {
  color: var(--accent-light);
  font-weight: 500;
}

.X9Y0Grl,
.bzUZFmou,
.vfP7xQy1n,
.a0nDIS8 {
  list-style: none;
}

.X9Y0Grl li,
.vfP7xQy1n li,
.a0nDIS8 li {
  color: var(--text-secondary);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201, 164, 91, 0.08);
}

.X9Y0Grl li:last-child,
.vfP7xQy1n li:last-child,
.a0nDIS8 li:last-child {
  border-bottom: 0;
}

.X9Y0Grl li::before,
.bzUZFmou li::before {
  content: '';
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

.bzUZFmou li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.fTI9pP7sxwr .MfssgV {
  min-height: 210px;
}

.fTI9pP7sxwr .mJeR1q {
  cursor: default;
}

.UeGue6 {
  grid-template-columns: repeat(3, 1fr);
}

.UeGue6 .Up2Kml8:first-child,
.UeGue6 .Up2Kml8:nth-child(2),
.UeGue6 .Up2Kml8:nth-child(3),
.UeGue6 .Up2Kml8:nth-child(4) {
  grid-row: auto;
  grid-column: auto;
  flex-direction: column;
}

.UeGue6 .Up2Kml8:nth-child(2) .MfssgV,
.UeGue6 .Up2Kml8:nth-child(3) .MfssgV,
.UeGue6 .Up2Kml8:nth-child(4) .MfssgV {
  min-width: 100%;
  max-width: 100%;
  aspect-ratio: 16/10;
}

.xOIdILj {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.xOIdILj blockquote {
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.xOIdILj cite {
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.H0Z4KMe {
  display: grid;
  gap: 0.9rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.22rem;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  content: '+';
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-question[aria-expanded='true']::after {
  content: '-';
}

.yGYzluewwB {
  display: none;
  padding: 0 1.2rem 1.15rem;
  color: var(--text-secondary);
}

.yGYzluewwB.open {
  display: block;
}

.H6LcyDnf8 {
  max-width: 900px;
  margin: 0 auto;
}

.H6LcyDnf8 section + section {
  margin-top: 2.6rem;
}

.H6LcyDnf8 h2 {
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
}

.H6LcyDnf8 h3 {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 1.4rem 0 0.5rem;
}

.H6LcyDnf8 p,
.H6LcyDnf8 li {
  line-height: 1.85;
}

.H6LcyDnf8 ul {
  margin-left: 1.2rem;
}

.kdqXC7cb {
  border-color: var(--border-strong);
  background: rgba(14, 109, 84, 0.13);
}

.OGlfH157p h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.OGlfH157p .rJ1KfEqMIJu {
  color: var(--accent-light);
  font-weight: 500;
}

.aMOW0O5TDB {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(201, 164, 91, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(201, 164, 91, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(14, 109, 84, 0.22), rgba(104, 35, 51, 0.12));
  background-size: 48px 48px, 48px 48px, auto;
}

.aMOW0O5TDB h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.lwwjXor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.t3RaLj select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
}

.t3RaLj select:focus {
  border-color: var(--accent-dim);
}

.OH2z0mtq {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.OH2z0mtq input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.lw2l34 {
  min-height: 1.1rem;
  color: #f2b6aa;
  font-size: 0.78rem;
}

.bUMPtFM1 {
  display: none;
  padding: 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-secondary);
  background: rgba(14, 109, 84, 0.14);
}

.bUMPtFM1.visible {
  display: block;
}

.OnPqnyX {
  position: fixed;
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  bottom: 1rem;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(17, 21, 26, 0.96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.OnPqnyX.visible {
  display: flex;
}

.OnPqnyX p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.OnPqnyX button {
  flex: 0 0 auto;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.dDqv0YaI {
  text-align: left;
}

.IwfnWyH {
  max-width: 1100px;
  margin: 0 auto;
}

.mp2x93p {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.3rem;
}

.mp2x93p span {
  color: var(--accent);
}

.MmOt5ETKwow {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.dDqv0YaI h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 0.7rem;
}

.q1qot8 {
  display: grid;
  gap: 0.45rem;
}

.q1qot8 a,
.a0nDIS8 a {
  color: var(--text-secondary);
}

.q1qot8 a:hover,
.a0nDIS8 a:hover {
  color: var(--accent-light);
}

.rdS0wH {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.5rem;
}

.rdS0wH p,
.k739GST {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .KBorOGGaIt,
  .Fv33sWe1l,
  .WX0BlAbx,
  .cbJKfb5ec,
  .UeGue6 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .yoEhS9nfuA {
    margin-top: 0.5rem;
  }

  .S7PV8SqaIp {
    min-height: auto;
  }

  .FjUkne4e {
    min-height: 52vh;
  }

  .KBorOGGaIt,
  .Fv33sWe1l,
  .WX0BlAbx,
  .cbJKfb5ec,
  .UeGue6,
  .lwwjXor,
  .MmOt5ETKwow {
    grid-template-columns: 1fr;
  }

  .JyMabbMGor {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .OnPqnyX {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 1.05rem;
    padding: 0.95rem 1rem;
  }

  .mp2x93p {
    font-size: 1.7rem;
  }

  .DuM1vO {
    border-radius: 8px;
  }
}