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

:root {
  --white: #ffffff;
  --black: #111010;
  --dim: #999;
  --border: #ddd;
}

body {
  background: #000;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 64px;
  border-bottom: 1px solid #222;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }

.ig-link {
  color: var(--white);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.ig-link:hover { color: var(--white); }

/* HERO */
.hero {
  background: #000;
  height: calc(100vh - 64px - 52px);
  display: flex;
  overflow: hidden;
}

.beetle-wrap {
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.beetle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.2);
  transform-origin: center center;
}

.beetle-wrap:nth-child(2) .beetle {
  transform: scale(1.2) translateY(3%);
}

.hero-overlay {
  position: fixed;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  pointer-events: auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 1.4rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 2px;
}

.overlay-main {
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.03em;
}

.overlay-sub {
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
}

.overlay-link {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FOOTER */
footer {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 3rem;
  border-top: 1px solid #222;
  background: #000;
}

footer p {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* INNER PAGES */
.page-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 3rem;
}

/* ABOUT */
.about-block {
  max-width: 580px;
  width: 100%;
}

.about-block h1 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-body p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white);
}

.about-body em {
  font-style: italic;
}

/* CONTACT */
.contact-block {
  max-width: 520px;
  width: 100%;
}

.contact-block h1 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.contact-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 0.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--white);
}

.submit-btn {
  align-self: flex-start;
  background: none;
  border: none;
  border-bottom: 1px solid var(--white);
  padding: 0.3rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.submit-btn:hover {
  color: #aaa;
  border-color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }

  .brand { font-size: 0.85rem; }

  .nav-right { gap: 1.25rem; }

  .hero { min-height: calc(100vh - 64px - 52px); }

  .page-main { padding: 3.5rem 1.5rem; }

  .about-block h1,
  .contact-block h1 { font-size: 2.2rem; }

  .about-body p { font-size: 1.05rem; }
}
