@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #080a09;
  color: #f3f5f3;
  line-height: 1.6;
}

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

/* Header & Navigation */
.header {
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  background: rgba(8, 10, 9, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.logo {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -2px;
}

.logo span,
h1 span,
h2 span {
  color: #8cff3f;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 13px;
  color: #aeb5ae;
  transition: 0.25s;
}

nav a:hover {
  color: #8cff3f;
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 25px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 7% 70px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(90, 255, 50, 0.13), transparent 28%),
    linear-gradient(115deg, #080a09 40%, #0c160d 100%);
  z-index: -2;
}

.hero-circle {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  right: 7%;
  top: 50%;
  transform: translateY(-40%);
  border: 2px solid #8cff3f;
  box-shadow: 0 0 50px rgba(140, 255, 63, 0.35), inset 0 0 30px rgba(140, 255, 63, 0.2);
  overflow: hidden;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-circle:hover {
  transform: translateY(-40%) scale(1.03);
  box-shadow: 0 0 75px rgba(140, 255, 63, 0.55), inset 0 0 40px rgba(140, 255, 63, 0.3);
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-content {
  max-width: 650px;
}

.eyebrow,
.section-tag {
  color: #8cff3f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

h1 {
  font-size: clamp(62px, 10vw, 130px);
  line-height: 0.88;
  letter-spacing: -7px;
  margin: 18px 0 30px;
}

h1 span {
  display: inline-block;
}

.hero-text {
  max-width: 650px;
  color: #adb4ad;
  font-size: 18px;
}

.buttons,
.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.25s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn.primary {
  background: #8cff3f;
  color: #081006;
  border-color: #8cff3f;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(140, 255, 63, 0.18);
}

.btn.ghost {
  color: #eee;
  background: transparent;
}

.btn.ghost:hover {
  border-color: #8cff3f;
  color: #8cff3f;
}

.stats {
  display: flex;
  gap: 50px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  max-width: 720px;
}

.stats div {
  display: flex;
  flex-direction: column;
}

.stats strong {
  font-size: 14px;
}

.stats small {
  color: #727a73;
  font-size: 10px;
  margin-top: 3px;
}

/* General Section Styling */
.section {
  padding: 120px 7%;
  background: #f0f3ef;
  color: #0b0e0b;
}

.section.dark {
  background: #0b100c;
  color: #f3f5f3;
}

.section h2,
.contact h2 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin: 20px 0 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 30px;
}

.text {
  color: #596159;
  max-width: 650px;
}

.dark .text {
  color: #9ca49d;
}

.text p {
  margin-bottom: 18px;
}

/* Timeline */
.timeline {
  border-left: 1px solid rgba(140, 255, 63, 0.35);
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  padding-bottom: 42px;
}

.dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8cff3f;
  left: -35px;
  top: 7px;
  box-shadow: 0 0 18px rgba(140, 255, 63, 0.5);
}

.date {
  font-size: 10px;
  color: #6a7569;
  letter-spacing: 2px;
  font-weight: 800;
}

.timeline h3 {
  font-size: 25px;
  margin: 8px 0;
}

.timeline p:last-child {
  color: #9ca49d;
}

/* Cards & Grids */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.card {
  background: #fff;
  border: 1px solid #dfe4de;
  border-radius: 12px;
  padding: 28px;
  min-height: 330px;
  position: relative;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #8cff3f;
}

.card-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #b8c0b8;
  font-size: 12px;
}

.icon {
  font-size: 34px;
  margin-bottom: 35px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  color: #687168;
  font-size: 14px;
}

.pill {
  display: inline-block;
  margin-top: 22px;
  padding: 6px 9px;
  border-radius: 4px;
  background: #edf5e9;
  color: #547343;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Interests */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 45px;
}

.interest {
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 26px;
}

.interest b {
  font-size: 16px;
}

.interest small {
  font-size: 11px;
  color: #7f8980;
}

/* Photo Breaks & Gallery */
.photo-break {
  padding: 70px 7%;
  background: #080a09;
  color: #f3f5f3;
}

.photo-break.light {
  background: #f0f3ef;
  color: #0b0e0b;
}

.photo-break-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.photo-break figure {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050705;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.photo-break.light figure {
  background: #dfe4de;
  border-color: #d8ded7;
}

.photo-break img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  margin: auto;
  transition: transform 0.5s ease;
}

.photo-break figure:hover img {
  transform: scale(1.012);
}

.photo-break .photo-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 5px;
  background: rgba(8, 10, 9, 0.78);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.photo-break-copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 22px;
}

.photo-break-copy h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-top: 12px;
}

.photo-break-copy h2 span {
  color: #8cff3f;
}

.photo-break-copy p {
  max-width: 420px;
  color: #9ca49d;
  font-size: 14px;
}

.photo-break.light .photo-break-copy p {
  color: #596159;
}

/* Contact Section & Form */
.contact {
  padding: 130px 7%;
  background: #8cff3f;
  color: #071006;
}

.contact h2 span {
  color: #071006;
}

.contact p:not(.eyebrow) {
  max-width: 570px;
  color: #33472d;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #071006;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(7, 16, 6, 0.25);
  background: rgba(255, 255, 255, 0.4);
  font-family: inherit;
  font-size: 14px;
  color: #071006;
  outline: none;
  transition: 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #ffffff;
  border-color: #071006;
}

.contact-status {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: none;
}

.contact-status.success {
  display: block;
  background: #071006;
  color: #8cff3f;
}

.contact-status.error {
  display: block;
  background: #d93838;
  color: #ffffff;
}

.contact .btn.ghost {
  color: #071006;
  border-color: rgba(7, 16, 6, 0.3);
}

.contact .btn.ghost:hover {
  border-color: #071006;
  color: #071006;
  background: rgba(7, 16, 6, 0.05);
}

.contact .btn.submit-btn {
  background: #071006;
  color: #8cff3f;
  border-color: #071006;
}

.contact .btn.submit-btn:hover {
  background: #14280f;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 7%;
  font-size: 10px;
  color: #687068;
  background: #080a09;
}

footer b {
  color: #eee;
  font-size: 16px;
}

footer b span {
  color: #8cff3f;
}

/* Mobile Responsiveness */
@media (max-width: 800px) {
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #080a09;
    padding: 20px 7%;
    flex-direction: column;
    gap: 18px;
    border-bottom: 1px solid #1c211d;
  }

  nav.open {
    display: flex;
  }

  .menu {
    display: block;
  }

  .hero {
    padding-top: 130px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-circle {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 40px auto 0;
    width: 300px;
    height: 300px;
  }

  .hero-circle:hover {
    transform: scale(1.03);
  }

  .stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .two-col,
  .cards,
  .interest-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section {
    padding: 90px 7%;
  }

  .section h2,
  .contact h2 {
    letter-spacing: -2px;
  }

  .photo-break {
    padding: 55px 7%;
  }

  .photo-break-copy {
    display: block;
  }

  .photo-break-copy p {
    margin-top: 16px;
  }

  .photo-break img {
    max-height: 560px;
  }

  .photo-break figure {
    border-radius: 12px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
