:root {
  --paper: #fbf8ef;
  --paper-deep: #f2ead5;
  --surface: #fffdf8;
  --ink: #242016;
  --muted: #716957;
  --brand: #8a5129;
  --brand-dark: #60351c;
  --green: #728b51;
  --blue: #5f8294;
  --line: #ded3b8;
  --shadow: 0 18px 50px rgba(67, 52, 29, 0.1);
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(224, 205, 149, 0.3), transparent 32rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-dark);
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(138, 81, 41, 0.16);
  background: rgba(251, 248, 239, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  padding: 7px 11px;
  text-decoration: none;
}

.links a:hover,
.links a[aria-current="page"] {
  background: var(--paper-deep);
  color: var(--brand-dark);
}

.hero,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

.hero {
  display: grid;
  align-items: center;
  gap: clamp(36px, 7vw, 84px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  min-height: 70vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 800px;
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fffaf0;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--brand-dark);
  color: #fffaf0;
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.phone {
  min-height: 520px;
  padding: 16px;
  border: 9px solid #282218;
  border-radius: 36px;
  background: #15140f;
  box-shadow: 0 30px 80px rgba(36, 28, 18, 0.24);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #f6ebc9;
}

.phone-header {
  padding: 18px;
  background: #e5d29b;
  font-weight: 800;
  text-align: center;
}

.timeline {
  padding: 18px;
}

.fake-card {
  margin: 14px 0;
  padding: 14px;
  border-radius: var(--radius-sm);
  color: #fffaf0;
}

.event {
  background: var(--brand);
}

.task {
  background: var(--green);
}

.brand-showcase {
  overflow: hidden;
  max-width: 460px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: clamp(28px, 6vw, 64px);
  background: #050505;
  box-shadow: 0 30px 80px rgba(20, 42, 72, 0.2);
}

.brand-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.description-copy {
  max-width: 860px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.description-copy p {
  margin: 0;
  color: var(--muted);
}

.description-copy p + p {
  margin-top: 18px;
}

.planned-features {
  margin-top: 54px;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: rgba(242, 234, 213, 0.48);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.card p:last-child {
  margin-bottom: 0;
}

.features-grid {
  grid-auto-rows: 1fr;
}

.features-grid .card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.feature-list li {
  color: var(--muted);
}

.feature-list li::marker {
  color: var(--brand);
}

.content {
  max-width: 900px;
  min-height: 64vh;
  margin: 0 auto;
  padding: 64px 24px;
}

.content > h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.content p,
.content li {
  color: var(--muted);
}

.content .card + .card {
  margin-top: 16px;
}

.gallery {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.shot-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.shot-media {
  display: grid;
  aspect-ratio: 9 / 16;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(138, 81, 41, 0.08), rgba(114, 139, 81, 0.13)),
    var(--paper-deep);
}

.shot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shot-fallback {
  max-width: 15rem;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.shot-card figcaption {
  padding: 16px 18px 18px;
}

.shot-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
}

.shot-card span {
  color: var(--muted);
  font-size: 14px;
}

.resource-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.resource {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.resource-meta {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

.form-card {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

label {
  color: var(--ink);
  font-weight: 700;
}

.optional,
.form-help,
.form-notice {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.form-help {
  display: block;
  margin-top: 4px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin: 0;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-status[data-state="success"] {
  background: rgba(114, 139, 81, 0.15);
  color: #44572f;
}

.form-status[data-state="error"] {
  background: rgba(138, 81, 41, 0.12);
  color: var(--brand-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(138, 81, 41, 0.12);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.footer {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 800px) {
  .hero,
  .grid,
  .gallery,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .gallery {
    max-width: 420px;
  }

  .features-grid .card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .links {
    justify-content: flex-start;
    margin-left: -8px;
  }

  .links a {
    padding: 5px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
