@font-face {
  font-family: "Anton";
  src: url("/fonts/anton.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #faf3e7;
  --paper-2: #ffffff;
  --ink: #221f1b;
  --ink-soft: #5b5449;
  --border: #e7dcc8;
  --coral: #e85c41;
  --coral-dark: #c8442b;
  --mustard: #e9a23b;
  --teal: #2f6e63;
  --shadow: 0 1px 2px rgba(30, 22, 10, 0.05), 0 10px 28px rgba(30, 22, 10, 0.08);
  --shadow-lg: 0 18px 44px rgba(30, 22, 10, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, .display {
  font-family: "Anton", -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: #fdeae4;
  border: 1px solid #f6c8ba;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
}

.section-head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 640px;
}

.section-head .lede {
  max-width: 50ch;
  margin: 0.8rem auto 0;
}

section {
  padding: 5.5rem 0;
}

/* ---------------------------------------------------------------- nav -- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 243, 231, 0.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.brand {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand .dot {
  width: 0.6rem;
  height: 0.6rem;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }
}

/* -------------------------------------------------------------- button -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 92, 65, 0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  margin: 1rem 0 1.2rem;
}

.hero h1 span {
  color: var(--coral);
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual .booth-shot {
  width: 78%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper-2);
}

.hero-visual .strip-float {
  position: absolute;
  width: 34%;
  right: 0;
  bottom: -2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(7deg);
  border: 6px solid var(--paper-2);
}

.hero-visual .sparkle {
  position: absolute;
  top: -1.2rem;
  left: -0.5rem;
  font-family: "Anton", sans-serif;
  background: var(--mustard);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  transform: rotate(-8deg);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------- torn divider -- */

.torn {
  height: 26px;
  width: 100%;
  background: var(--paper);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20' preserveAspectRatio='none'%3E%3Cpath d='M0 20 L0 6 L4 14 L8 3 L12 12 L16 5 L20 15 L24 2 L28 11 L32 6 L36 16 L40 4 L40 20 Z'/%3E%3C/svg%3E") repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20' preserveAspectRatio='none'%3E%3Cpath d='M0 20 L0 6 L4 14 L8 3 L12 12 L16 5 L20 15 L24 2 L28 11 L32 6 L36 16 L40 4 L40 20 Z'/%3E%3C/svg%3E") repeat-x;
  -webkit-mask-size: 40px 20px;
  mask-size: 40px 20px;
}

.band {
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ------------------------------------------------------------- how-it -- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
}

.step-num {
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
  color: var(--coral);
  opacity: 0.9;
  line-height: 1;
}

.step h3 {
  text-transform: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0.7rem 0 0.4rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 0;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------ features -- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  text-transform: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.bg-coral { background: var(--coral); }
.bg-mustard { background: var(--mustard); }
.bg-teal { background: var(--teal); }

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------- gallery -- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--paper-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  aspect-ratio: 3 / 5.2;
}

.gallery-caption {
  padding: 0.9rem 1.1rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.gallery-caption strong {
  color: var(--ink);
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  .gallery-item.tall img {
    aspect-ratio: 3 / 4;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------- why -- */

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.why-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.why-list .mark {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.why-list span {
  color: var(--ink-soft);
}

.why-list strong {
  color: var(--ink);
}

.stat-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
}

.stat-card .display {
  font-size: 3rem;
  color: var(--mustard);
}

.stat-card p {
  color: #d9d0bf;
  margin: 0.5rem 0 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 860px) {
  .why {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------- pricing -- */

.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 14px, var(--mustard) 14px 28px);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.4rem 0 1.6rem;
}

.price-row .amount {
  font-family: "Anton", sans-serif;
  font-size: 3.4rem;
  color: var(--ink);
}

.price-row .amount small {
  font-size: 1.1rem;
  font-family: -apple-system, sans-serif;
  color: var(--ink-soft);
  font-weight: 600;
}

.price-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.price-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.price-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  flex: none;
}

/* ------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

input, textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}

input:focus, textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  background: #fff;
}

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

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-msg {
  margin-top: 1rem;
  font-size: 0.92rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-msg.ok {
  display: block;
  background: #e6f3ee;
  color: var(--teal);
  border: 1px solid #bfe0d2;
}

.form-msg.err {
  display: block;
  background: #fbeae6;
  color: var(--coral-dark);
  border: 1px solid #f4c3b6;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------- footer -- */

footer {
  background: var(--ink);
  color: #cfc6b4;
  padding: 3rem 0 2rem;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

footer .brand {
  color: var(--paper);
}

footer .foot-tag {
  color: #a89e8b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 32ch;
}

footer .foot-copy {
  color: #a89e8b;
  font-size: 0.82rem;
  margin-top: 3rem;
  text-align: center;
}

.foot-links {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.foot-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #877c66;
  margin: 0 0 0.7rem;
}

.foot-col a {
  display: block;
  color: #cfc6b4;
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.foot-col a:hover {
  color: #fff;
}
