* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f1e8;
  --bg-soft: #efe8dd;
  --paper: rgba(255, 255, 255, 0.5);
  --paper-strong: rgba(255, 255, 255, 0.76);
  --ink: #0f0f0f;
  --muted: #5d574f;
  --line: rgba(15, 15, 15, 0.08);
  --green: #0f4737;
  --green-2: #185f49;
  --dark: #0b0b0b;
  --dark-2: #141414;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(15, 15, 15, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 71, 55, 0.08), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(15, 71, 55, 0.05), transparent 20%),
    linear-gradient(180deg, #f7f4ee 0%, #f3efe7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 0.6px, transparent 0.6px);
  background-size: 8px 8px;
  mix-blend-mode: multiply;
}

.bg-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
}

.glow-a {
  width: 320px;
  height: 320px;
  top: 70px;
  left: -100px;
  background: rgba(15, 71, 55, 0.08);
}

.glow-b {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 240px;
  background: rgba(15, 71, 55, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 238, 0.72);
  border-bottom: 1px solid rgba(15, 15, 15, 0.05);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.brand {
  font-size: 3.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-weight: 600;
}

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

.nav-cta {
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.45rem;
}

.hero,
.section,
.manifesto,
.ticker-wrap {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 72px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

h1 {
  font-size: clamp(3.5rem, 6.5vw, 6.3rem);
  max-width: 8.8ch;
}

h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  max-width: 14ch;
}

.hero-sub,
.hero-text,
.section-copy p,
.system-card p,
.contrast-copy p,
.positioning-copy p,
.contact-copy p,
.process-copy p,
.process-item p,
.services-lead p,
.services-secondary p,
.services-band p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-sub {
  margin: 20px 0 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.12rem;
}

.hero-text {
  max-width: 640px;
  margin: 14px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(15, 71, 55, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(15, 15, 15, 0.08);
}

.btn-full {
  width: 100%;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 16px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.hero-stage {
  min-height: 720px;
}

.hero-composition,
.system-card,
.contact-card,
.positioning-box,
.process-item,
.services-lead,
.services-secondary,
.services-band {
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
}

.hero-composition {
  position: absolute;
  top: 30px;
  right: 0;
  width: min(100%, 680px);
  min-height: 600px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.78), rgba(245, 241, 232, 0.68));
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-composition-main {
  position: absolute;
  left: 0;
  top: 88px;
  width: 54%;
  height: calc(100% - 88px);
  padding: 34px 28px;
  background: linear-gradient(180deg, #0f4737 0%, #1a684f 100%);
  color: var(--white);
}

.hero-composition-kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.76;
}

.hero-composition-main h3 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-composition-main p {
  margin: 18px 0 0;
  line-height: 1.72;
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-composition-side {
  position: absolute;
  right: 22px;
  width: calc(46% - 34px);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 15, 15, 0.06);
}

.hero-composition-side span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
  color: var(--muted);
}

.hero-composition-side strong {
  font-size: 1.08rem;
  line-height: 1.4;
}

.side-a {
  top: 74px;
}

.side-b {
  top: 216px;
}

.side-c {
  top: 358px;
  background: linear-gradient(135deg, #151513, #0f4737);
  color: var(--white);
}

.side-c span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-composition-note {
  position: absolute;
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 15, 15, 0.06);
}

.hero-composition-note small {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
  color: var(--muted);
}

.hero-composition-note strong {
  font-size: 1.08rem;
  line-height: 1.45;
}

.note-top {
  top: 18px;
  left: 42px;
  width: 320px;
}

.note-bottom {
  bottom: 20px;
  left: 42px;
  width: 330px;
}

.manifesto {
  padding: 40px 0;
  background: linear-gradient(180deg, #0c0c0c, #141414);
  color: var(--white);
}

.manifesto-inner {
  width: 100%;
  max-width: none;
}

.manifesto p {
  margin: 0;
  max-width: none;
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.manifesto-accent {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.72);
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(15, 15, 15, 0.05);
  border-bottom: 1px solid rgba(15, 15, 15, 0.05);
  background: rgba(255, 255, 255, 0.32);
}

.ticker {
  display: flex;
  gap: 54px;
  white-space: nowrap;
  min-width: max-content;
  padding: 18px 0;
  animation: ticker 24s linear infinite;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

.section {
  padding: 92px 0;
}

.section-copy {
  max-width: 1200px;
  margin-bottom: 40px;
}

.section-copy-wide h2,
.section-copy-wide p {
  max-width: none;
}

.system-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.system-cards,
.positioning-stack,
.process-list {
  display: grid;
  gap: 16px;
}

.system-card {
  border-radius: 28px;
  padding: 22px 24px;
  background: rgba(248, 245, 239, 0.76);
  backdrop-filter: blur(12px);
  min-height: 0;
}

.system-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 900;
}

.system-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.system-mark-wrap {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.system-mark {
  width: 200px;
  max-width: 44%;
  height: auto;
  color: var(--green);
  opacity: 0.78;
  filter: saturate(0.95);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.system-mark-wrap:hover .system-mark {
  opacity: 1;
  transform: translateY(-2px);
}

.section-dark {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: var(--white);
}

.contrast-grid,
.positioning-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.contrast-copy h2,
.positioning-copy h2,
.process-copy h2 {
  max-width: none;
}

.contrast-panels {
  display: grid;
  gap: 16px;
}

.contrast-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.04);
}

.contrast-panel small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
}

.contrast-panel strong {
  font-size: 1.45rem;
  line-height: 1.35;
}

.services-editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.services-lead,
.services-secondary,
.services-band {
  border-radius: 30px;
  padding: 28px;
  backdrop-filter: blur(12px);
}

.services-lead {
  min-height: 100%;
  background: linear-gradient(180deg, #0f4737, #1a684f);
  color: var(--white);
}

.services-lead .offer-kicker,
.services-lead .offer-sub,
.services-lead p,
.services-lead ul {
  color: rgba(255, 255, 255, 0.84);
}

.services-lead h3,
.services-secondary h3,
.services-band-copy h3 {
  margin: 0;
  line-height: 1.05;
}

.services-lead h3 {
  font-size: 2.1rem;
}

.services-secondary h3 {
  font-size: 2rem;
}

.services-band-copy h3 {
  font-size: 2.2rem;
}

.services-price {
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.services-secondary {
  background: rgba(248, 245, 239, 0.82);
}

.offer-kicker {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--green);
}

.offer-sub {
  margin-top: 10px;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--muted);
}

.services-secondary p,
.services-lead p,
.services-band p {
  margin: 0;
}

.services-secondary ul,
.services-lead ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.85;
}

.services-band {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.72));
}

.services-band-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.95;
  color: var(--muted);
}

.positioning-copy h2 {
  max-width: 10.5ch;
}

.positioning-copy p {
  max-width: 760px;
}

.positioning-box {
  border-radius: 24px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.12rem;
  font-weight: 800;
}

.process-item {
  border-radius: 26px;
  padding: 22px 24px;
  background: rgba(248, 245, 239, 0.82);
}

.process-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-email {
  display: inline-block;
  margin-top: 22px;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card {
  border-radius: 34px;
  padding: 28px;
  background: rgba(248, 245, 239, 0.8);
  backdrop-filter: blur(12px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card label {
  display: block;
  margin-bottom: 16px;
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(15, 15, 15, 0.08);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--ink);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(15, 15, 15, 0.05);
  background: rgba(255, 255, 255, 0.18);
  padding: 30px 0 42px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-size: 2.5rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tilt-card:hover {
  box-shadow: 0 34px 90px rgba(15, 15, 15, 0.12);
}

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

  .ticker {
    animation: none;
  }

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

  .tilt-card {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .system-grid,
  .contrast-grid,
  .positioning-grid,
  .contact-grid,
  .process-grid,
  .services-editorial,
  .services-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-composition {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 0;
    padding-bottom: 24px;
  }

  .hero-composition-main,
  .hero-composition-side,
  .hero-composition-note {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 14px 20px 0;
  }

  .hero-composition-main {
    height: auto;
    min-height: 280px;
  }

  .services-band {
    grid-column: span 1;
  }

  .section-copy,
  .section-copy-wide {
    max-width: none;
  }

  .section-copy h2,
  .contrast-copy h2,
  .positioning-copy h2,
  .process-copy h2,
  h2 {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    right: 24px;
    top: 78px;
    min-width: 230px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(247, 244, 238, 0.98);
    border: 1px solid rgba(15, 15, 15, 0.06);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 18px;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 26px));
  }

  .brand {
    font-size: 2.8rem;
  }

  .nav {
    min-height: 74px;
  }

  .hero,
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
    max-width: none;
  }

  .manifesto p {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-composition-main h3 {
    font-size: 2.2rem;
  }

  .services-price {
    font-size: 2.4rem;
  }

  .services-lead,
  .services-secondary,
  .services-band,
  .process-item,
  .system-card,
  .contact-card,
  .contrast-panel,
  .positioning-box {
    padding: 22px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

