/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --bg-primary: #295c4f;
  --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);
}

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

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

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

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

.kWJ5dve 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;
}

.kWJ5dve a::before,
.kWJ5dve 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);
}

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

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

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

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

.QR63Jhq {
  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;
}

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

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

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

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

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

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

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

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

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

.mbAs8Cspv {
  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;
}

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

.Q6ipuDkmyCz {
  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;
}

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

.q8a3gkRrvx {
  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;
}

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

.nRG3tonx {
  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;
}

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

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

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

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

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

.iqlKKJC {
  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;
}

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

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

.roQn3i::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%);
}

.hX6Q4Man {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cJUmDfXcR {
  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;
}

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

.eEImm7GM {
  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;
}

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

.FCxG8kc3jd {
  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
   ======================================== */
.fooBoMk6w1 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

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

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

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

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

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

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

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

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

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

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

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

.oonhDxV 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);
}

.nafCDtBTL7V {
  margin-bottom: 1.4rem;
}

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

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

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

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

.M5znKvYU6lN {
  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 */
.C1lgVrIP {
  margin-top: 3rem;
}

.C1lgVrIP 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);
}

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

.a3D2TnNdy {
  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);
}

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

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

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

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

.W8yW7gBd:first-child .TDlqZUsmP {
  aspect-ratio: 4/3;
}

.W8yW7gBd {
  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;
}

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

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

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

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

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

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

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

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

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

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

.DfjPCIFN8 {
  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;
}

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

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

.r0TiJ3N {
  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);
}

.r0TiJ3N:hover {
  gap: 0.8rem;
}

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

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

.MgFLyRvJq .cJUmDfXcR {
  justify-content: center;
}

.MgFLyRvJq .eEImm7GM {
  text-align: center;
}

.MgFLyRvJq .kpFg23 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.ZSt7aOb::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%);
}

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

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

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

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

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

.LIT2ZIfq4w7:nth-child(odd) .UotpwCapiCV {
  right: -6px;
}

.LIT2ZIfq4w7:nth-child(even) .UotpwCapiCV {
  left: -6px;
}

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

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

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

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

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

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

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

.rHvhfDfI {
  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;
}

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

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

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

.h49kU45H {
  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);
}

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

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

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

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

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

.DFEa2ZVHyKz input,
.DFEa2ZVHyKz 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;
}

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

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

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

.UdHUstng {
  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);
}

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

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

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

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

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

.DbD4xfYBA 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) {
  .v2UU3R2p {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .kWJ5dve {
    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;
  }

  .kWJ5dve.open {
    right: 0;
  }

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

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

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

  .BMnAhb1 {
    max-width: 220px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.Qr4j1Lh:focus {
  left: 1rem;
}

.xw9hvY {
  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;
}

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

.Vu6Flb08 {
  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));
}

.Vu6Flb08 .aErjotqBb {
  max-width: 900px;
}

.Z8dIGtPtfdj,
.wZvxTUf,
.PC1DOfi7,
.DfjPCIFN8,
.ROwm42uW {
  overflow-wrap: anywhere;
}

.Z8dIGtPtfdj {
  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;
}

.PC1DOfi7 {
  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;
}

.wZvxTUf {
  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;
}

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

.oq8QB7 {
  min-height: 100%;
}

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

.oq8QB7::after,
.w0OV6r8C::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;
}

.A3Tmky {
  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);
}

.A3Tmky h2,
.UdPjv4bZ h3,
.yKidYB1 h2,
.qgRhzvW h3,
.xkjpf3dWy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
}

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

.A3Tmky p,
.UdPjv4bZ p,
.yKidYB1 p,
.yKidYB1 li,
.qgRhzvW p,
.ROwm42uW {
  color: var(--text-secondary);
}

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

.Rt5KXw,
.m7gnxgtqDru,
.f2FpWacQp8C,
.HE9WTH1dgn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.UdPjv4bZ,
.qgRhzvW,
.JBmJqR86b,
.WGsbTLql {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.UdPjv4bZ,
.qgRhzvW,
.WGsbTLql {
  padding: 1.35rem;
}

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

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

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

.vdSJAp,
.PLQnKkS,
.F4tBjAGE,
.B1YdNGE {
  list-style: none;
}

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

.vdSJAp li:last-child,
.F4tBjAGE li:last-child,
.B1YdNGE li:last-child {
  border-bottom: 0;
}

.vdSJAp li::before,
.PLQnKkS 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;
}

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

.aCSyG64fYza .TDlqZUsmP {
  min-height: 210px;
}

.aCSyG64fYza .r0TiJ3N {
  cursor: default;
}

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

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

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

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

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

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

.srkkPhE {
  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: '-';
}

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

.N1gLDRiyEO.open {
  display: block;
}

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

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

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

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

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

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

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

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

.qgRhzvW .DwAfHq {
  color: var(--accent-light);
  font-weight: 500;
}

.xkjpf3dWy {
  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;
}

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

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

.DFEa2ZVHyKz 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;
}

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

.WaJwdX76YW {
  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;
}

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

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

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

.Wz6gVDK7d.visible {
  display: block;
}

.Om4d9UT0n {
  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);
}

.Om4d9UT0n.visible {
  display: flex;
}

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

.Om4d9UT0n 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;
}

.DbD4xfYBA {
  text-align: left;
}

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

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

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

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

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

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

.rlyXyfzd a,
.B1YdNGE a {
  color: var(--text-secondary);
}

.rlyXyfzd a:hover,
.B1YdNGE a:hover {
  color: var(--accent-light);
}

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

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

@media (max-width: 1024px) {
  .Rt5KXw,
  .m7gnxgtqDru,
  .f2FpWacQp8C,
  .HE9WTH1dgn,
  .BYFHZph {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nkIVoGhpc1 {
    min-height: auto;
  }

  .oq8QB7 {
    min-height: 52vh;
  }

  .Rt5KXw,
  .m7gnxgtqDru,
  .f2FpWacQp8C,
  .HE9WTH1dgn,
  .BYFHZph,
  .xnJYAieGQW,
  .kN1nNj {
    grid-template-columns: 1fr;
  }

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

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

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

  .xh5MP2JK {
    font-size: 1.7rem;
  }

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