/* ══════════════════════════════════════════
   BASE — Reset, Typography, Cursor, Nav, Keyframes
══════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-body);
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.5s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(248,244,239,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  color: var(--warm-white);
  transition: color 0.4s ease;
}
.nav-logo .brand-logo { height: 26px; width: auto; }
nav.scrolled .nav-logo { color: var(--dark); }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-link-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,243,238,0.75);
  background: none; border: none; cursor: none;
  position: relative; padding-bottom: 2px;
  transition: color 0.4s ease;
}
nav.scrolled .nav-link-btn { color: var(--charcoal); }
.nav-link-btn::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link-btn:hover::after { width: 100%; }

.nm-btn {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 300; letter-spacing: 0.08em;
  color: rgba(247,243,238,0.75);
  background: none; border: none; cursor: none;
  padding: 10px 0;
  transition: color 0.25s;
  text-align: center; display: block; width: 100%;
}
.nm-btn:hover { color: var(--gold-light); }

.nav-links a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(247,243,238,0.75);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}
nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--gold);
  padding: 11px 28px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--brown-mid); }

/* ── NAV RIGHT ── */
.nav-right {
  display: flex; align-items: center; gap: 18px;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: none; padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.4s;
}
nav.scrolled .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.nav-mobile-drawer {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,83,76,0.97);
  backdrop-filter: blur(16px);
  z-index: 150;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-mobile-drawer.open {
  opacity: 1; pointer-events: all;
}
.nav-mobile-drawer a, .nav-mobile-drawer button {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 300; letter-spacing: 0.08em;
  color: rgba(247,243,238,0.75);
  text-decoration: none; background: none;
  border: none; cursor: none;
  padding: 10px 0;
  transition: color 0.25s;
  text-align: center; display: block; width: 100%;
}
.nav-mobile-drawer a:hover,
.nav-mobile-drawer button:hover { color: var(--gold-light); }
.nav-mobile-drawer .nm-divider {
  width: 40px; height: 1px;
  background: rgba(111,162,135,0.25);
  margin: 8px auto;
}
.nav-mobile-cta {
  margin-top: 20px;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.65rem !important; font-weight: 500 !important;
  letter-spacing: 0.25em !important; text-transform: uppercase !important;
  color: var(--dark) !important;
  background: var(--gold) !important;
  padding: 15px 48px !important;
}

/* ── SECTION BASE ── */
section { padding: 100px 60px; }
.section-tag {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-tag::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--brown-mid); }

/* ── ABOUT ── */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative; height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 85%;
  background: linear-gradient(135deg, #00534c 0%, #74956c 50%, #00534c 100%);
  overflow: hidden;
}
.about-img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(111,162,135,0.2), transparent 60%);
}
.about-img-main svg {
  position: absolute;
  bottom: 0; right: 0;
  width: 70%; height: 90%;
  opacity: 0.15;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.about-accent-text {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem; font-weight: 300;
  color: var(--dark);
  text-align: center;
  line-height: 1;
}
.about-accent-text small {
  display: block; font-size: 0.55rem;
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 6px; font-weight: 400;
}
.about-line {
  position: absolute; top: 30%; left: 80%;
  width: 1px; height: 140px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.about-text p {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.9;
  color: var(--brown-mid);
  margin-bottom: 20px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Prompt', sans-serif;
  font-size: 2.6rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown-light);
  margin-top: 6px;
  line-height: 1.6;
}
.about-signature {
  font-family: 'Prompt', sans-serif;
  font-size: 1.15rem; font-style: italic; font-weight: 300;
  color: var(--gold);
  margin-top: 24px; margin-bottom: 32px;
}

/* ── EXPERIENCE ── */
#experience {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.exp-visual {
  background: linear-gradient(160deg, #00534c, #74956c);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.exp-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.exp-circle-outer {
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(111,162,135,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: rotateSlowly 20s linear infinite;
}
.exp-circle-inner {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,220,210,0.15), transparent);
  border: 1px solid rgba(111,162,135,0.35);
  display: flex; align-items: center; justify-content: center;
}
.exp-circle-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem; font-style: italic; font-weight: 300;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.5;
}
.exp-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold);
  opacity: 0.6;
}
.exp-content {
  background: var(--cream);
  padding: 100px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.exp-list { list-style: none; margin-top: 40px; }
.exp-item {
  display: flex; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.exp-item:first-child { border-top: 1px solid var(--border); }
.exp-item-num {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem; font-weight: 400;
  color: var(--gold);
  min-width: 28px;
  padding-top: 2px;
}
.exp-item-body h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.exp-item-body p {
  font-size: 0.78rem; font-weight: 300;
  line-height: 1.7;
  color: var(--brown-light);
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dark);
  padding: 0 50px;
}
.marquee-dot {
  font-size: 0.5rem;
  color: rgba(0,83,76,0.4);
  padding: 0 4px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.3); opacity: 0.3; }
}
@keyframes rotateSlowly {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Smooth hero image fade-in on load */
.hero-image {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-image.loaded { opacity: 1; }
