:root {
  --bg: #f3ede1;
  --bg-alt: #ece3d3;
  --panel: rgba(255, 255, 255, 0.68);
  --panel-strong: rgba(255, 255, 255, 0.86);
  --ink: #17382a;
  --ink-soft: #4b5d53;
  --ink-muted: #6f7d73;
  --sage: #97b95c;
  --sage-soft: rgba(151, 185, 92, 0.18);
  --terracotta: #b96e45;
  --line: rgba(23, 56, 42, 0.12);
  --shadow: 0 28px 70px rgba(16, 34, 25, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  color-scheme: light;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(151, 185, 92, 0.22), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(185, 110, 69, 0.16), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(42, 107, 78, 0.14), transparent 22%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(23, 56, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 56, 42, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 58%, transparent 100%);
}

a {
  color: inherit;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  letter-spacing: -0.03em;
}

.page-shell {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 44px;
}

.ambient {
  position: fixed;
  pointer-events: none;
  inset: auto;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.75;
}

.ambient-one {
  top: 120px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(151, 185, 92, 0.26), transparent 68%);
}

.ambient-two {
  right: -140px;
  top: 260px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(185, 110, 69, 0.18), transparent 70%);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 16px 14px 18px;
  margin-bottom: 26px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(23, 56, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--ink-muted);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(23, 56, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  padding: 10px 14px;
  font: inherit;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-icon span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.promise-strip,
.section,
.contact-band {
  border: 1px solid rgba(23, 56, 42, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(160deg, rgba(23, 56, 42, 0.95), rgba(31, 76, 58, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  color: #f5f1e9;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 185, 92, 0.24), transparent 70%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -120px -110px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(151, 185, 92, 0.22);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(245, 241, 233, 0.74);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

.lead {
  max-width: 62ch;
  margin-top: 18px;
  color: rgba(245, 241, 233, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-meta {
  margin-top: 14px;
  color: rgba(245, 241, 233, 0.72);
  font-size: 0.96rem;
  letter-spacing: 0.03em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f4ecdf, #e5d7bc);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(16, 34, 25, 0.18);
}

.button-secondary {
  border: 1px solid rgba(245, 241, 233, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f1e9;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 233, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 233, 0.9);
  font-size: 0.88rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 245, 236, 0.9));
}

.logo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(151, 185, 92, 0.14), transparent 28%),
    linear-gradient(160deg, #fffdf8, #f3ede3);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: auto -14% -22% auto;
  width: 76%;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(151, 185, 92, 0.6), rgba(185, 110, 69, 0.18));
  filter: blur(0.5px);
  opacity: 0.7;
}

.logo-frame img {
  width: 100%;
  height: auto;
}

.panel-copy {
  padding: 4px 2px 0;
}

.panel-label {
  margin-bottom: 6px;
  color: var(--ink-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.panel-copy p:last-child {
  max-width: 36ch;
  font-size: 1.02rem;
  color: var(--ink);
}

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

.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  background:
    linear-gradient(160deg, rgba(23, 56, 42, 0.96), rgba(31, 76, 58, 0.92));
  color: #f5f1e9;
}

.mini-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(151, 185, 92, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.mini-card p {
  color: rgba(245, 241, 233, 0.76);
  font-size: 0.88rem;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.promise-strip article {
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 241, 230, 0.9));
}

.promise-strip h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.promise-strip h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
}

.promise-strip p {
  color: var(--ink-soft);
}

.section,
.contact-band {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.section {
  padding: clamp(26px, 4vw, 40px);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading p:last-child,
.contact-copy p:last-child {
  color: var(--ink-soft);
  max-width: 68ch;
}

.card-grid,
.process-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.process-card,
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 234, 0.92));
  box-shadow: 0 18px 36px rgba(16, 34, 25, 0.08);
}

.service-card {
  padding: 20px;
  min-height: 210px;
}

.service-card::after,
.process-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 185, 92, 0.1), transparent 62%);
}

.card-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.service-card h3,
.process-card h3,
.project-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.service-card p,
.process-card p,
.project-card p {
  color: var(--ink-soft);
}

.section-split {
  display: grid;
  gap: 24px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 22px;
  min-height: 180px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(185, 110, 69, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  padding: 22px;
  min-height: 180px;
  background:
    linear-gradient(160deg, rgba(23, 56, 42, 0.96), rgba(36, 93, 68, 0.94));
  color: #f6f1e9;
}

.project-card p {
  color: rgba(246, 241, 233, 0.78);
}

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

.venue-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 229, 0.92));
  box-shadow: 0 18px 36px rgba(16, 34, 25, 0.08);
}

.venue-visual {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background-color: #1d2f27;
}

.venue-visual::before,
.venue-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.venue-visual-bar {
  background:
    radial-gradient(circle at 18% 24%, rgba(232, 196, 121, 0.44), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(214, 145, 82, 0.34), transparent 14%),
    linear-gradient(180deg, rgba(26, 43, 36, 0.95), rgba(52, 31, 23, 0.92));
}

.venue-visual-bar::before {
  inset: auto 12% 18% 12%;
  height: 22%;
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(96, 58, 35, 0.98), rgba(58, 34, 22, 0.98));
  box-shadow: 0 -22px 0 rgba(17, 28, 24, 0.38);
}

.venue-visual-bar::after {
  inset: 18% 18% auto 18%;
  height: 30%;
  background:
    linear-gradient(90deg, rgba(150, 198, 125, 0.28) 0 12%, transparent 12% 18%, rgba(212, 168, 95, 0.3) 18% 30%, transparent 30% 36%, rgba(139, 180, 115, 0.24) 36% 48%, transparent 48% 54%, rgba(229, 192, 112, 0.28) 54% 66%, transparent 66% 72%, rgba(140, 175, 105, 0.25) 72% 84%, transparent 84% 100%);
}

.venue-visual-couches {
  background:
    radial-gradient(circle at 22% 22%, rgba(237, 209, 148, 0.26), transparent 18%),
    radial-gradient(circle at 76% 20%, rgba(182, 112, 71, 0.26), transparent 16%),
    linear-gradient(180deg, rgba(45, 66, 56, 0.96), rgba(83, 58, 40, 0.94));
}

.venue-visual-couches::before {
  inset: auto 10% 16% 10%;
  height: 34%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(187, 149, 96, 0.96), rgba(132, 88, 54, 0.98));
  box-shadow:
    0 -18px 0 -4px rgba(204, 169, 122, 0.88),
    -88px 16px 0 -18px rgba(137, 96, 60, 0.88),
    88px 16px 0 -18px rgba(137, 96, 60, 0.88);
}

.venue-visual-couches::after {
  inset: auto 22% 8% 22%;
  height: 10%;
  border-radius: 999px;
  background: rgba(20, 35, 29, 0.5);
}

.venue-visual-tables {
  background:
    radial-gradient(circle at 24% 24%, rgba(233, 198, 124, 0.24), transparent 16%),
    radial-gradient(circle at 78% 18%, rgba(151, 185, 92, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(32, 49, 41, 0.96), rgba(61, 43, 33, 0.94));
}

.venue-visual-tables::before {
  inset: 22% 10% auto 10%;
  height: 58%;
  background:
    radial-gradient(circle at 18% 24%, rgba(172, 118, 73, 0.96) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 38%, rgba(189, 137, 87, 0.98) 0 13%, transparent 14%),
    radial-gradient(circle at 82% 24%, rgba(172, 118, 73, 0.96) 0 12%, transparent 13%),
    radial-gradient(circle at 32% 74%, rgba(189, 137, 87, 0.98) 0 13%, transparent 14%),
    radial-gradient(circle at 70% 74%, rgba(172, 118, 73, 0.96) 0 12%, transparent 13%);
}

.venue-visual-tables::after {
  inset: 34% 0 0 0;
  background:
    linear-gradient(90deg, transparent 16%, rgba(241, 234, 220, 0.16) 16% 17%, transparent 17% 33%, rgba(241, 234, 220, 0.16) 33% 34%, transparent 34% 50%, rgba(241, 234, 220, 0.16) 50% 51%, transparent 51% 67%, rgba(241, 234, 220, 0.16) 67% 68%, transparent 68% 84%, rgba(241, 234, 220, 0.16) 84% 85%, transparent 85%);
}

.venue-visual-grill {
  background:
    radial-gradient(circle at 22% 20%, rgba(238, 184, 99, 0.28), transparent 14%),
    radial-gradient(circle at 74% 18%, rgba(204, 106, 65, 0.24), transparent 16%),
    linear-gradient(180deg, rgba(30, 40, 35, 0.96), rgba(69, 36, 25, 0.96));
}

.venue-visual-grill::before {
  inset: auto 12% 14% 12%;
  height: 18%;
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0 12px, rgba(62, 62, 62, 0.88) 12px 18px);
  box-shadow: 0 -18px 0 rgba(104, 61, 33, 0.58);
}

.venue-visual-grill::after {
  inset: 30% 20% auto 20%;
  height: 14%;
  background:
    radial-gradient(circle at 16% 50%, rgba(226, 188, 93, 0.94) 0 10%, transparent 11%),
    radial-gradient(circle at 38% 50%, rgba(182, 112, 63, 0.94) 0 10%, transparent 11%),
    radial-gradient(circle at 60% 50%, rgba(226, 188, 93, 0.94) 0 10%, transparent 11%),
    radial-gradient(circle at 82% 50%, rgba(182, 112, 63, 0.94) 0 10%, transparent 11%);
}

.venue-card h3,
.venue-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.venue-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.venue-card p {
  padding-bottom: 20px;
  color: var(--ink-soft);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 8px 2px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(23, 56, 42, 0.96), rgba(31, 76, 58, 0.93));
  color: #f5f1e9;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 241, 233, 0.12);
}

.contact-row:last-of-type {
  border-bottom: 0;
}

.contact-row span {
  color: rgba(151, 185, 92, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-row strong {
  font-size: 1.02rem;
  font-weight: 600;
}

.contact-stack {
  display: grid;
  gap: 8px;
}

.contact-link {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #dce8c5;
}

.contact-note {
  margin-top: 4px;
  color: rgba(245, 241, 233, 0.72);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8px 0;
  color: var(--ink-muted);
}

.footer p {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.promise-strip,
.card-grid,
.process-grid,
.project-grid,
.venue-grid,
.contact-band {
  position: relative;
}

.service-card,
.process-card,
.project-card,
.venue-card,
.promise-strip article,
.contact-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.process-card:hover,
.project-card:hover,
.venue-card:hover,
.promise-strip article:hover,
.contact-card:hover {
  transform: translateY(-3px);
}

.menu-button:focus-visible,
.nav a:focus-visible,
.button:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(151, 185, 92, 0.45);
  outline-offset: 3px;
}

.template-page .hero-copy h1 {
  max-width: 12ch;
}

.payment-panel .panel-copy p:last-child {
  max-width: 34ch;
}

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

.summary-chip,
.payment-form-card,
.stack-card {
  border-radius: 26px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  box-shadow: 0 18px 36px rgba(16, 34, 25, 0.08);
}

.summary-chip {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 234, 0.94));
}

.summary-chip span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
}

.summary-chip strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.4;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.payment-form-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 229, 0.96));
}

.payment-sidebar {
  display: grid;
  gap: 18px;
}

.form-block {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.form-block legend {
  padding: 0 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span,
.signature-box span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-form-card input,
.payment-form-card textarea,
.signature-box input {
  width: 100%;
  border: 1px solid rgba(23, 56, 42, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
}

.payment-form-card textarea {
  resize: vertical;
  min-height: 120px;
}

.payment-form-card input::placeholder,
.payment-form-card textarea::placeholder,
.signature-box input::placeholder {
  color: rgba(75, 93, 83, 0.58);
}

.payment-form-card input:focus-visible,
.payment-form-card textarea:focus-visible,
.signature-box input:focus-visible {
  outline: 3px solid rgba(151, 185, 92, 0.32);
  outline-offset: 2px;
  border-color: rgba(23, 56, 42, 0.26);
}

.milestone-list {
  display: grid;
  gap: 14px;
}

.milestone-row {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 56, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(243, 237, 225, 0.8), rgba(255, 255, 255, 0.88));
}

.milestone-row h3,
.stack-card h3 {
  font-size: 1.08rem;
}

.stack-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(23, 56, 42, 0.96), rgba(31, 76, 58, 0.92));
  color: #f5f1e9;
}

.stack-card .panel-label {
  margin-bottom: 0;
  color: rgba(151, 185, 92, 0.76);
}

.term-list,
.checklist {
  display: grid;
  gap: 12px;
}

.term-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(245, 241, 233, 0.8);
}

.term-list li::marker {
  color: rgba(151, 185, 92, 0.84);
}

.checklist label {
  display: flex;
  align-items: start;
  gap: 10px;
  color: rgba(245, 241, 233, 0.82);
}

.checklist input {
  margin-top: 2px;
  accent-color: var(--sage);
}

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

.signature-box {
  display: grid;
  gap: 8px;
}

.signature-box input {
  background: rgba(255, 255, 255, 0.96);
}

.no-print {
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero,
  .contact-band,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .process-grid,
  .project-grid,
  .venue-grid,
  .summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100%, calc(100% - 20px));
    padding-top: 12px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    width: 100%;
    display: grid;
    gap: 10px;
    padding-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 250ms ease, opacity 250ms ease;
  }

  .nav.is-open {
    max-height: 240px;
    opacity: 1;
  }

  .nav a {
    padding: 10px 4px;
    border-top: 1px solid rgba(23, 56, 42, 0.08);
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .mini-grid,
  .promise-strip,
  .card-grid,
  .process-grid,
  .project-grid,
  .venue-grid,
  .summary-strip,
  .field-grid-two,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .promise-strip {
    padding: 14px;
  }

  .payment-form-card,
  .stack-card,
  .form-block,
  .milestone-row {
    padding: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

@media print {
  body {
    background: #fff;
  }

  body::before,
  .ambient,
  .menu-button,
  .nav,
  .hero-actions,
  .footer,
  .no-print {
    display: none !important;
  }

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

  .topbar,
  .hero-copy,
  .hero-panel,
  .section,
  .summary-chip,
  .payment-form-card,
  .form-block,
  .milestone-row,
  .stack-card {
    background: #fff !important;
    color: #102219 !important;
    box-shadow: none !important;
    border-color: rgba(16, 34, 25, 0.18) !important;
  }

  .hero,
  .payment-layout,
  .summary-strip,
  .field-grid-two,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
    margin-bottom: 16px;
  }

  .section,
  .contact-band,
  .hero-copy,
  .hero-panel {
    break-inside: avoid;
  }

  .payment-form-card input,
  .payment-form-card textarea,
  .signature-box input {
    border-color: rgba(16, 34, 25, 0.2);
    background: #fff;
  }

  .term-list,
  .checklist label,
  .stack-card .panel-label,
  .contact-copy p:last-child,
  .section-heading p:last-child,
  .summary-chip span,
  .field span,
  .signature-box span {
    color: #31443b !important;
  }
}
