/* Larsen Commerce – V2 "editorial". Warm paper, serif display, restrained motion. */

:root {
  --paper: #faf6ef;
  --paper-tint: #f3ecdf;
  --ink: #1b1610;
  --muted: #6f6557;
  --line: #e2d8c8;
  --green: #1b4d35;
  --green-deep: #143c29;
  --radius: 4px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, .price, .quote, .step-number, .service-number {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.45em;
}

h1 em {
  font-style: italic;
  color: var(--green);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h3 { font-size: 1.35rem; font-weight: 600; margin: 0 0 0.4em; }

p { margin: 0 0 1em; }

a { color: var(--green); }

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 66px;
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav { display: flex; gap: 26px; }

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after { transform: scaleX(1); }

/* Buttons */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid var(--green);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
}

.btn-outline:hover { background: var(--green); color: #fff; }

.btn-small { padding: 8px 20px; font-size: 0.9rem; background: var(--green); color: #fff; }

.btn-small:hover { background: var(--green-deep); }

.btn-block { display: block; width: 100%; text-align: center; }

.text-link {
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s ease;
}

.text-link:hover { border-color: var(--green); }

/* Hero */

.hero {
  padding: 110px 0 90px;
  text-align: left;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 22px;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

/* Marquee */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 13px 0;
  background: var(--paper);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.02rem;
  white-space: nowrap;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee .star { color: var(--green); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Demo note */

.demo-note { padding: 38px 0 0; }

.demo-note p {
  margin: 0;
  background: var(--paper-tint);
  border: 1px solid var(--ink);
  border-left: 5px solid var(--green);
  padding: 18px 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.demo-note strong { color: var(--ink); }

/* Sections */

.section { padding: 90px 0; }

.section-tinted {
  background: var(--paper-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 48px;
}

/* Services – editorial numbered list */

.service-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.service {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid var(--ink);
}

.service:last-child { border-bottom: 1px solid var(--ink); }

.service-number {
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1;
}

.service-body p {
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 14px;
}

.step-number {
  display: block;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1;
}

.step h3 { font-size: 1.1rem; }

.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Pricing rows */

.price-rows { border-top: 1px solid var(--ink); }

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 34px 18px;
  border-bottom: 1px solid var(--ink);
  transition: background 0.2s ease;
}

.price-row:hover { background: rgba(27, 77, 53, 0.045); }

.price-row.featured { background: rgba(27, 77, 53, 0.07); }

.price-info h3 { margin-bottom: 0.3em; }

.price-info p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
  max-width: 52ch;
}

.tag {
  display: inline-block;
  vertical-align: middle;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 3px 12px;
  margin-left: 10px;
}

.price {
  font-size: 1.7rem;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}

.pricing-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: center;
}

/* Reference / quote */

.quote {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 auto 56px;
  text-align: center;
}

.reference {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 34px 32px;
}

.reference-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--green);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.reference-body h3 { margin-bottom: 0.4em; }

.reference-tag {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}

.reference-body p { color: var(--muted); }

/* About */

.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
}

.about-photo {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
}

.about-copy p { color: var(--muted); max-width: 58ch; }

.signature {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 18px;
}

/* Contact */

.section-dark {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark h2 { color: #fff; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-copy p { color: rgba(255, 255, 255, 0.75); }

.contact-details {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-details li { display: grid; gap: 2px; }

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.contact-details a,
.contact-details span:not(.contact-label) {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-details a:hover { text-decoration: underline; }

.contact-form {
  background: var(--paper);
  padding: 34px 30px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 0.97rem;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}

/* Footer */

.site-footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.8); }

/* Responsive */

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

  .price-row {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 28px 14px;
  }

  .price { font-size: 1.5rem; }

  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }

  .site-nav { display: none; }

  .service {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 30px 0;
  }

  .service-number { font-size: 1.7rem; }

  .steps { grid-template-columns: 1fr; }

  .about-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-copy p { text-align: left; }

  .reference { grid-template-columns: 1fr; }
}
