:root {
  --bg: #f4efe7;
  --paper: #fbf8f3;
  --ink: #151515;
  --muted: #67615c;
  --line: rgba(21, 21, 21, 0.1);
  --accent: #b87a43;
  --accent-deep: #8e582c;
  --shadow: 0 18px 40px rgba(21, 21, 21, 0.08);
  --sans: "Archivo", sans-serif;
  --serif: "Instrument Serif", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top, rgba(184, 122, 67, 0.12), transparent 28%),
    linear-gradient(180deg, #faf6f0 0%, var(--bg) 42%, #efe6da 100%);
}

.home-body {
  background: #101010;
}

a { color: inherit; }

.page {
  width: min(1220px, calc(100% - 20px));
  margin: 0 auto;
  padding: 12px 0 40px;
}

.page-home {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  position: relative;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 6px 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.topbar-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  padding: 18px 20px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
  font-weight: 800;
}

.topbar-home .brand,
.topbar-home .desktop-links a,
.topbar-home .brand-sub {
  color: #fff9f2;
}

.topbar-home .brand-sub {
  opacity: 0.82;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 0.98rem;
  gap: 2px;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.desktop-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.82rem;
}

.desktop-links a {
  text-decoration: none;
  color: var(--muted);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.topbar-home .menu-button {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  position: relative;
  content: "";
}

.topbar-home .menu-button span,
.topbar-home .menu-button span::before,
.topbar-home .menu-button span::after {
  background: #fff9f2;
}

.menu-button span::before { top: -6px; position: absolute; }
.menu-button span::after { top: 6px; position: absolute; }

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21, 21, 21, 0.34);
  z-index: 15;
}

.drawer {
  display: none;
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 420px);
  background: #ffffff;
  z-index: 20;
  padding: 22px 22px 30px;
  box-shadow: 16px 0 34px rgba(21, 21, 21, 0.12);
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  margin-bottom: 14px;
  cursor: pointer;
}

.drawer nav {
  display: grid;
}

.drawer nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  text-decoration: none;
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.drawer-footer {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.menu-toggle:checked ~ .drawer-backdrop,
.menu-toggle:checked ~ .drawer {
  display: block;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #fff9f2;
  max-width: 8ch;
}

.landing-hero {
  margin: 0;
}

.landing-hero-card {
  position: relative;
  border-radius: 0;
  background: #d9d1c4;
  box-shadow: none;
}

.landing-hero-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  vertical-align: top;
}

.landing-hero-photo:first-of-type {
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
}

.landing-hero-photo + .landing-hero-photo {
  margin-top: -120px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0px, #000 120px);
          mask-image: linear-gradient(180deg, transparent 0px, #000 120px);
}

.landing-hero-content {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  pointer-events: none;
}

.landing-hero-content > h1 {
  text-align: right;
  margin: 0;
}

.lamer-says {
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  margin: 0 0 clamp(120px, 18vh, 220px);
  max-width: 24ch;
  color: #f4c77a;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.lamer-says-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(251, 248, 243, 0.75);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 6px 12px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  color: var(--ink);
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p,
.section-head a,
.section-copy {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.content-card,
.faq-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-card {
  padding: 22px;
}

.content-card h2 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.content-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.image-card {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e7ddd0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0), rgba(21, 21, 21, 0.62));
  color: #fff9f2;
}

.label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.image-overlay h3 {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.stack {
  display: grid;
  gap: 14px;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.bullet {
  padding: 12px 14px;
  border-radius: 18px;
  background: #fffdf9;
  border: 1px solid rgba(21, 21, 21, 0.07);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

summary::-webkit-details-marker { display: none; }

details p { margin: 10px 0 0; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 6px 0;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.signature {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1;
}

.footer-email {
  margin-top: 6px;
  font-size: 0.82rem;
}

.footer-email a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 980px) {
  .feature-split,
  .image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page {
    width: calc(100% - 12px);
    padding-top: 6px;
  }

  .page-home {
    width: 100%;
    padding: 0;
  }

  .desktop-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .topbar-home {
    padding: 16px 12px;
  }

  .landing-hero-card {
    border-radius: 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 18px;
  }

  .landing-hero-photo {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
  }

  .landing-hero-photo:first-of-type {
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
  }

  .landing-hero-photo + .landing-hero-photo {
    margin-top: -80px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0px, #000 80px);
            mask-image: linear-gradient(180deg, transparent 0px, #000 80px);
  }

  .landing-hero-content {
    height: 100vh;
    width: 100%;
    padding: 20px 16px 26px;
    gap: 12px;
  }

  .lamer-says {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 65%;
    font-size: clamp(2.4rem, 9vw, 3.6rem);
    margin-bottom: clamp(80px, 14vh, 160px);
  }

  h1 {
    flex: 0 0 auto;
    max-width: 5.5ch;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .image-card {
    min-height: 148px;
  }

  .content-card {
    padding: 18px;
  }

  .content-card h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .bullet-list {
    gap: 8px;
  }

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