:root {
  --sage: #8e9b82;
  --deep-sage: #3f4a3c;
  --cream: #f7f1e7;
  --warm-white: #fffdf8;
  --charcoal: #171717;
  --clay: #b98668;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 23, 23, 0.35), rgba(23, 23, 23, 0.35)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2000&q=90") center/cover no-repeat;
  color: var(--warm-white);
  padding: 28px 5vw;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.logo {
  font-weight: 800;
  text-decoration: none;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-copy {
  max-width: 760px;
  margin-top: auto;
  margin-bottom: 8vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy h1,
.feature-copy h2,
.experience-section h2,
.about-copy h2,
.quote-section h2,
.contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.92;
}

.hero-copy h1 {
  font-size: clamp(54px, 9vw, 118px);
  margin-bottom: 24px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.button {
  display: inline-block;
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 14px 24px;
  border: 2px solid var(--warm-white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.button:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--warm-white);
}

.button.dark {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}

.marquee {
  background: var(--charcoal);
  color: var(--warm-white);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}

.marquee p {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollText 22s linear infinite;
}

@keyframes scrollText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.feature-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  padding: 110px 5vw;
  align-items: center;
}

.feature-copy h2,
.experience-section h2,
.about-copy h2,
.contact-section h2 {
  font-size: clamp(42px, 6vw, 82px);
  margin-bottom: 24px;
}

.feature-copy p,
.about-copy p,
.contact-section p,
.experience-cards p {
  font-size: 15px;
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-bottom: 2px solid var(--charcoal);
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 18px;
  align-items: end;
}

.image-tall {
  height: 720px;
}

.image-small {
  height: 420px;
}

.gallery-grid {
  padding: 0 5vw 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  height: 520px;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5) {
  height: 680px;
}

.experience-section {
  background: var(--deep-sage);
  color: var(--warm-white);
  padding: 110px 5vw;
}

.experience-section h2 {
  max-width: 820px;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 253, 248, 0.35);
  border-bottom: 1px solid rgba(255, 253, 248, 0.35);
}

.experience-cards div {
  padding: 38px;
  border-right: 1px solid rgba(255, 253, 248, 0.35);
}

.experience-cards div:last-child {
  border-right: none;
}

.experience-cards span {
  display: block;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.experience-cards h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  padding: 110px 5vw;
  background: var(--warm-white);
  align-items: center;
}

.about-section img {
  height: 760px;
}

.about-copy p {
  margin-bottom: 18px;
}

.quote-section {
  background: var(--sage);
  color: var(--charcoal);
  padding: 110px 5vw;
  text-align: center;
}

.quote-section h2 {
  font-size: clamp(48px, 8vw, 110px);
  max-width: 1100px;
  margin: auto;
}

.contact-section {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 110px 5vw;
  text-align: center;
}

.contact-section p {
  max-width: 560px;
  margin: 0 auto 28px;
}

footer {
  background: var(--charcoal);
  color: var(--warm-white);
  border-top: 1px solid rgba(255, 253, 248, 0.25);
  padding: 28px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    right: 5vw;
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    z-index: 20;
  }

  .nav-links.active {
    display: flex;
  }

  .feature-section,
  .about-section,
  .experience-cards {
    grid-template-columns: 1fr;
  }

  .feature-images,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-tall,
  .image-small,
  .gallery-grid img,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(5),
  .about-section img {
    height: 520px;
  }

  .experience-cards div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 253, 248, 0.35);
  }

  .experience-cards div:last-child {
    border-bottom: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
/* Bumble Bee Cursor */
body {
  cursor: none;
}

a,
button,
input,
textarea,
select {
  cursor: none;
}

#bee-cursor {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 24px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
  will-change: transform;
}

/* Honeycomb trail particles */
.honey-particle {
  position: fixed;
  width: 12px;
  height: 10px;
  background: rgba(245, 193, 67, 0.85);
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: honeyFade 1.2s ease-out forwards;
}

@keyframes honeyFade {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}

/* Restore default cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto;
  }

  #bee-cursor {
    display: none;
  }
}