:root {
  --ink: #14110e;
  --paper: #f3ebe0;
  --sand: #e4d5c2;
  --amber: #c9853a;
  --amber-deep: #9a5f1f;
  --smoke: #2a2420;
  --muted: #6d6359;
  --line: rgba(20, 17, 14, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-deep); }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  background: rgba(20, 17, 14, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-nav img { width: min(200px, 42vw); }
.site-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  align-items: center;
}
.site-nav a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.site-nav a:hover { color: #fff; }
@media (max-width: 640px) {
  .site-nav ul { gap: .75rem; }
  .site-nav .nav-hide-sm { display: none; }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  padding-top: 4rem;
  background: var(--ink) center/cover no-repeat;
  background-image:
    linear-gradient(180deg, rgba(12,10,8,.4) 0%, rgba(12,10,8,.75) 55%, rgba(12,10,8,.94) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201,133,58,.25), transparent),
    linear-gradient(135deg, #1a1510 0%, #2d241c 50%, #14110e 100%);
}
.hero-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  animation: rise .9s ease both;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: .9rem;
}
.hero p {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 300;
  max-width: 44ch;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.75rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #1a1208; }
.btn-primary:hover { background: #db9a4d; }
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }

main { width: min(1120px, calc(100% - 2.5rem)); margin: 0 auto; }
section { padding: 4.25rem 0 0; }
section:last-of-type { padding-bottom: 4.5rem; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: .65rem;
}
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
  max-width: 20ch;
}
.lede {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.tile {
  background: linear-gradient(160deg, #fffaf4, var(--sand));
  border-radius: 1.1rem;
  padding: 1.35rem 1.25rem 1.4rem;
  min-height: 100%;
}
.tile h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: .45rem;
}
.tile p { color: var(--smoke); font-size: .98rem; }

.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 1.2rem;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.55);
  border: 1px dashed rgba(255,255,255,.18);
  margin-top: 1rem;
}
.video-placeholder svg { opacity: .5; margin-bottom: .75rem; }
.video-placeholder p { font-size: .95rem; }

.demo-banner {
  margin-top: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.2rem;
  background: var(--ink);
  color: #f6efe6;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 700px) {
  .demo-banner { grid-template-columns: 1fr; }
}
.demo-banner h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: .35rem;
}
.demo-banner p { color: rgba(246,239,230,.72); font-size: .98rem; max-width: 48ch; }
.demo-limits {
  margin-top: .75rem;
  font-size: .85rem;
  color: rgba(246,239,230,.55);
  list-style: none;
}
.demo-limits li { padding: .15rem 0; }
.demo-limits li::before { content: "· "; color: var(--amber); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .35rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: .65rem;
  padding: .7rem .85rem;
  font: inherit;
  background: #fff;
  margin-bottom: 1rem;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .hp { position: absolute; left: -9999px; opacity: 0; }

.alert {
  padding: .85rem 1rem;
  border-radius: .65rem;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-error { background: #fdecea; color: #c62828; }

footer {
  margin-top: 2rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
footer a { font-weight: 500; text-decoration: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
