:root {
  --forest: #1F3A2E;
  --forest-deep: #0F2119;
  --forest-light: #2C4E3F;
  --bone: #EBE7DE;
  --bone-light: #F5F2EB;
  --bone-lightest: #FDFBF6;
  --amber: #B8935F;
  --amber-muted: #9A7A4E;
  --ink: #1A1A1A;
  --ink-muted: #5C5A52;
  --ink-subtle: #8A887F;
  --rule: rgba(184, 147, 95, 0.3);
  --rule-faint: rgba(184, 147, 95, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bone-light);
  color: var(--ink);
  font-family: "Public Sans", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-feature-settings: "ss01", "ss02";
}

.serif {
  font-family: "Newsreader", "Tiempos", Georgia, serif;
  font-feature-settings: "liga", "dlig";
}

.mono {
  font-family: "Manrope", ui-monospace, SFMono-Regular, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

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

.paper {
  position: relative;
}

.paper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  z-index: 1;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}

.site-nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-nav__inner {
    padding: 1.1rem 5rem;
  }
}

.brand {
  font-family: "Newsreader", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.nav-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: "Public Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 240ms cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0.25rem 0;
  position: relative;
}

.nav-links a.is-active {
  color: var(--forest);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a.is-active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-toggle {
  font-family: "Manrope", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  font-weight: 500;
}

.lang-toggle span.is-active {
  color: var(--forest);
}

.lang-toggle a {
  color: var(--ink-subtle);
  transition: color 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.lang-toggle a:hover {
  color: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: background 240ms cubic-bezier(0.23, 1, 0.32, 1), color 240ms cubic-bezier(0.23, 1, 0.32, 1), border-color 240ms cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn::after {
  content: "→";
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 300;
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover::after {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--forest);
  color: var(--bone-light);
}

.btn--primary:hover {
  background: var(--forest-light);
}

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

.btn--outline:hover {
  background: var(--forest);
  color: var(--bone-light);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--rule);
}

.btn--ghost:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--bone-light);
}

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

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

@media (min-width: 1100px) {
  .nav-burger {
    display: none;
  }
}

.nav-burger span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 40;
  padding: 6rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 280ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.5rem;
  font-family: "Newsreader", serif;
  color: var(--forest);
  border-bottom: 1px solid var(--rule-faint);
}

main {
  padding-top: 5rem;
}

.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section--tight {
  padding: 4rem 0;
}

.section--dark {
  background: var(--forest);
  color: var(--bone);
}

.section--dark .mono,
.section--dark .eyebrow {
  color: var(--amber);
}

.section--bone {
  background: var(--bone);
}

.eyebrow {
  font-family: "Manrope", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: "Newsreader", serif;
  color: var(--forest);
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--bone-light);
}

.h-display {
  font-size: clamp(2.5rem, 5.25vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 40ch;
}

@media (min-width: 768px) {
  .lede {
    font-size: 1.25rem;
  }
}

.rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0;
}

.rule--amber {
  background: var(--amber);
}

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0 7rem;
  }
}

.hero--video {
  min-height: 640px;
  color: var(--bone-light);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 25, 0.45) 0%, rgba(15, 33, 25, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero--video .wrap {
  position: relative;
  z-index: 2;
}

.hero--video h1,
.hero--video .h-display {
  color: var(--bone-light);
}

.hero--video .lede,
.hero--video dt,
.hero--video dd {
  color: rgba(245, 242, 235, 0.85);
}

.hero--video .mono,
.hero--video .eyebrow {
  color: var(--amber);
}

.hero--video li,
.hero--video ul a {
  color: rgba(245, 242, 235, 0.85);
}

.hero--video ul a:hover {
  color: var(--amber);
}

.hero--video .btn--ghost {
  color: var(--bone-light);
  border-color: rgba(245, 242, 235, 0.3);
}

.hero--video .btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 7fr 5fr;
  }
}

.hero__sculpture {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 15vw, 14rem);
  color: var(--amber);
  opacity: 0.18;
  line-height: 0.85;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__sculpture--absolute {
  position: absolute;
  right: -4%;
  bottom: -2rem;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stack-lg > * + * { margin-top: 2rem; }
.stack-md > * + * { margin-top: 1.25rem; }
.stack-sm > * + * { margin-top: 0.75rem; }

.toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bone);
  border: 1px solid var(--rule);
}

.toggle button {
  padding: 0.875rem 1.5rem;
  font-family: "Manrope", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.toggle button.is-active {
  background: var(--forest);
  color: var(--bone-light);
}

.card {
  background: var(--bone-lightest);
  border: 1px solid var(--rule-faint);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease;
}

.card:hover {
  border-color: var(--amber);
}

.card--featured {
  border-color: var(--amber);
  background: var(--bone-light);
}

.card__year {
  font-family: "Newsreader", serif;
  font-size: 2.25rem;
  color: var(--ink-subtle);
  letter-spacing: -0.02em;
  line-height: 1;
}

.card--featured .card__year {
  color: var(--amber);
}

.card__title {
  font-family: "Newsreader", serif;
  font-size: 1.25rem;
  color: var(--forest);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.2;
}

.card__meta {
  font-family: "Manrope", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.card__body {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

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

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

@media (min-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.practice-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.25rem 1.75rem;
  background: var(--bone-lightest);
  border: 1px solid var(--rule-faint);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
  min-height: 180px;
}

.practice-item:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.practice-item__title {
  font-family: "Newsreader", serif;
  font-size: 1.25rem;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.practice-item__body {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.stakes-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule-faint);
}

@media (min-width: 768px) {
  .stakes-row {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: baseline;
    padding: 2.25rem 0;
  }
}

.stakes-row:last-child {
  border-bottom: 1px solid var(--rule-faint);
}

.stakes-row__title {
  font-family: "Newsreader", serif;
  font-size: 1.375rem;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .stakes-row__title {
    font-size: 1.625rem;
  }
}

.stakes-row__desc {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.service-block {
  padding: 3rem 0;
  border-top: 1px solid var(--amber);
}

@media (min-width: 900px) {
  .service-block {
    padding: 4rem 0;
  }
}

.service-block__title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}

.service-block__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.deliverables {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.deliverables li {
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-bottom: 1px solid var(--rule-faint);
  font-size: 0.9375rem;
  position: relative;
}

.deliverables li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--amber);
  position: absolute;
  left: 0;
  top: 1.2rem;
}

.basis {
  margin: 2rem 0;
  border: 1px solid var(--rule-faint);
}

.basis summary {
  list-style: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  transition: background 180ms ease;
}

.basis summary:hover {
  background: var(--bone-light);
}

.basis summary::-webkit-details-marker { display: none; }

.basis summary::after {
  content: "+";
  font-family: "Newsreader", serif;
  font-size: 1.25rem;
  color: var(--amber);
  transition: transform 200ms ease;
}

.basis[open] summary::after {
  transform: rotate(45deg);
}

.basis__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 60ch;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule-faint);
  border: 1px solid var(--rule-faint);
}

@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  background: var(--forest);
  padding: 3rem 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step__title {
  font-family: "Newsreader", serif;
  font-size: 1.375rem;
  color: var(--bone-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step__body {
  font-size: 0.8125rem;
  color: rgba(235, 231, 222, 0.7);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-grid__info,
.contact-grid__form {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-grid__info,
  .contact-grid__form {
    padding: 5rem 4rem;
  }
}

.contact-grid__info {
  background: var(--forest);
  color: var(--bone-light);
}

.contact-grid__info h2 {
  color: var(--bone-light);
}

.contact-grid__form {
  background: var(--bone-lightest);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(235, 231, 222, 0.15);
  font-family: "Manrope", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.contact-line:last-of-type {
  border-bottom: 1px solid rgba(235, 231, 222, 0.15);
}

.contact-line__label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  min-width: 6rem;
}

.form-field {
  margin-bottom: 2rem;
}

.form-field label {
  display: block;
  font-family: "Manrope", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-muted);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--amber);
}

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

.site-footer {
  background: var(--bone);
  border-top: 1px solid var(--amber);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-grid h5 {
  font-family: "Manrope", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0 0 1.25rem;
}

.footer-grid a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--amber);
}

.footer-meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: "Manrope", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}

.placeholder-note {
  padding: 0.75rem 1rem;
  background: rgba(184, 147, 95, 0.08);
  border-left: 2px solid var(--amber);
  font-family: "Manrope", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-muted);
  margin: 2rem 0;
}

.placeholder-portrait {
  aspect-ratio: 3 / 4;
  background: var(--bone);
  border: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-subtle);
  font-family: "Manrope", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.partner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner h3 {
  font-size: 1.75rem;
  margin-top: 0.5rem;
}

.partner .mono {
  color: var(--amber-muted);
  font-size: 0.6875rem;
}

.tip {
  position: relative;
  cursor: help;
  white-space: nowrap;
}

.tip__icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--forest);
  font-size: 8px;
  line-height: 11px;
  text-align: center;
  font-family: "Manrope", monospace;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  position: relative;
  top: -0.5em;
  opacity: 0.88;
  transition: opacity 150ms ease, transform 150ms ease;
}

.tip:hover .tip__icon {
  opacity: 1;
  transform: scale(1.15);
}

.tip__body {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  max-width: 320px;
  min-width: 260px;
  background: var(--forest);
  color: var(--bone-light);
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  font-family: "Public Sans", sans-serif;
  border: 1px solid var(--amber);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 20;
  white-space: normal;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tip:hover .tip__body,
.tip.is-open .tip__body {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .tip__body {
    max-width: min(320px, calc(100vw - 3rem));
    left: 0;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Neaman wordmark */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7em;
  font-family: "Newsreader", serif;
  color: var(--forest);
  line-height: 1;
  text-decoration: none;
}
.wordmark .name {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.015em;
}
.wordmark .bar {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  background: var(--forest);
  transform: translateY(0.08em);
  opacity: 0.6;
}
.wordmark .desc {
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest);
  padding-top: 0.18em;
}
.site-footer .wordmark .name,
.site-footer .wordmark .desc {
  color: var(--bone-light);
}
.site-footer .wordmark .bar {
  background: var(--bone-light);
}

/* ===== Harmonized footer (matches forsiden) ===== */
footer {
  background: var(--forest-deep);
  color: var(--bone-light);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3.5rem; }
}
.footer__brand .wordmark .name,
.footer__brand .wordmark .desc { color: var(--bone-light); }
.footer__brand .wordmark .bar { background: var(--bone-light); }
.footer__brand p {
  margin-top: 1.25rem;
  color: rgba(245, 242, 235, 0.6);
  font-size: 0.9rem;
  max-width: 38ch;
  line-height: 1.6;
  font-weight: 300;
}
.footer__col h4 {
  color: var(--amber);
  font-family: "Manrope", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 1.25rem 0;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a {
  color: rgba(245, 242, 235, 0.78);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 200ms cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}
.footer__col a:hover { color: var(--amber); }
.footer__bottom {
  border-top: 1px solid rgba(245, 242, 235, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.4);
}
.footer__bottom a { color: rgba(245, 242, 235, 0.6); text-decoration: none; }
.footer__bottom a:hover { color: var(--amber); }
@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; gap: 0.7rem; text-align: center; }
}

/* Hero padding harmonized for fixed-nav clearance */
.hero { padding: 4rem 0 4rem; }
@media (min-width: 768px) {
  .hero { padding: 5rem 0 5rem; }
}
/* main padding-top already provides nav clearance on inner pages */

/* Faelles groent kontakt-baand (flyttet fra side-inline CSS saa alle sider er konsistente) */
.cta-band { background: var(--forest); color: var(--bone-light); padding: 5rem 0; }
.cta-band .wrap { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end; }
@media (min-width: 900px) { .cta-band .wrap { grid-template-columns: 1.5fr 1fr; align-items: center; } }
.cta-band h2 { color: var(--bone-light); margin-bottom: 1.25rem; max-width: 22ch; }
.cta-band h2 em { color: var(--amber); }
.cta-band p { color: rgba(245, 242, 235, 0.78); max-width: 52ch; font-size: 1.0625rem; line-height: 1.65; }
.cta-band__actions { display: flex; justify-content: flex-start; }
@media (min-width: 900px) { .cta-band__actions { justify-content: flex-end; } }
.cta-band .btn--primary { background: var(--amber); color: var(--forest-deep); }
.cta-band .btn--primary:hover { background: #c9a877; }

/* === Mobil-fixes (2026-06-14) ===
   1. Burgeren skal altid vaere synlig paa telefon: skjul header-CTA under 600px,
      saa "Book samtale"-knappen ikke skubber burgeren ud over skaermkanten.
      Booking naas via burger-menuens Kontakt-punkt.
   2. Lange danske sammensatte ord (fx "Loengennemsigtighedsdirektivet") skal kunne
      bryde, saa CSS grid 1fr-spor (minmax(auto,1fr)) ikke vokser forbi skaermen. */
@media (max-width: 600px) {
  .nav-actions .btn { display: none; }
}
main, footer { overflow-wrap: anywhere; }
h1, h2, h3, .h-display { hyphens: auto; }
