/* Website Builder — shared static foundation (agent copies/adapts per project)
   Keep layout class names. You may change :root colors and --font-display only. */
:root {
  --color-bg: #f3f1ec;
  --color-surface: #ffffff;
  --color-text: #111111;
  --color-muted: #5c5c5c;
  --color-accent: #f5c518;
  --color-accent-hover: #e0b310;
  --color-accent-soft: #fff4c2;
  --color-border: #e2ddd4;
  --color-on-accent: #111111;
  --color-footer: #111111;
  --color-error: #dc2626;
  --color-success: #059669;
  --font-sans: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  --font-display: var(--font-sans);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4.5rem;
  --radius: 0.25rem;
  --radius-sm: 0.5rem;
  --shadow: 0 8px 30px rgba(28, 25, 23, 0.06);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
  --max-width: 70rem;
  --header-height: 4.25rem;
  --ratio-hero: 1 / 1;
  --ratio-card: 4 / 3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}

p {
  margin: 0 0 var(--space-md);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: var(--space-md);
}

/* —— Header / nav —— */
.site-header {
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--space-md);
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--color-text);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
  text-decoration: none;
}

.header-cta {
  flex-shrink: 0;
  padding: 0.55rem 1.05rem;
  font-size: 0.875rem;
  border-radius: 0.3rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-on-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
}

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

.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* —— Unified media frames (source image size must not affect layout) —— */
.media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-border);
  border-radius: var(--radius);
}

.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.media--hero {
  aspect-ratio: var(--ratio-hero);
  width: 100%;
  max-height: 28rem;
  box-shadow: var(--shadow);
}

.media--card {
  aspect-ratio: var(--ratio-card);
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
}

.media--wide {
  aspect-ratio: 16 / 10;
  width: 100%;
}

/* —— Split hero (text + photo side by side — never a full-bleed banner) —— */
.hero,
.hero--split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero__copy h1,
.hero--split h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-md);
}

.hero__copy .lead,
.hero .lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 36rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-sm);
}

@media (min-width: 768px) {
  .hero--split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero--flip .hero__media {
    order: -1;
  }
}

/* —— Sections —— */
.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--color-surface);
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 var(--space-sm);
}

.section__intro {
  color: var(--color-muted);
  max-width: 36rem;
  margin: 0 0 var(--space-xl);
}

.section__header {
  margin-bottom: var(--space-xl);
}

.page-header {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.page-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-md);
}

.page-header .lead {
  color: var(--color-muted);
  max-width: 40rem;
  margin: 0;
}

.prose {
  max-width: 42rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* —— Grids / cards —— */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card--plain {
  padding: var(--space-lg);
}

.card--plain .card__body {
  padding: 0;
}

.card__media {
  flex: 0 0 auto;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  flex: 1;
}

.card__body h3 {
  margin: 0;
  font-size: 1.15rem;
}

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

.card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* —— Menu —— */
.menu-list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.menu-list h2 {
  margin: 0 0 var(--space-sm);
  font-size: 1.25rem;
}

.menu-list h2:not(:first-child) {
  margin-top: var(--space-xl);
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--color-border);
}

.menu-item__name {
  font-weight: 600;
}

.menu-item__price {
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
}

/* —— Reviews —— */
.reviews {
  display: grid;
  gap: var(--space-lg);
}

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

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.review-stars,
.review-card .stars {
  margin: 0 0 var(--space-sm);
  color: #d97706;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-text,
.review-card blockquote {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
  font-style: italic;
}

.review-author,
.review-card .reviewer {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
}

/* —— Pricing —— */
.pricing-demo-notice {
  background: var(--color-accent-soft);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--color-text);
  font-size: 0.95rem;
  margin: 0 0 var(--space-xl);
}

.price-tbd {
  font-style: italic;
  color: var(--color-muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

th {
  background: var(--color-accent-soft);
  font-weight: 600;
}

.lang-switch {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

/* —— Contact form (must match site chrome, not browser defaults) —— */
.contact-layout {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.contact-form {
  display: grid;
  gap: var(--space-md);
  max-width: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea,
.form-field input,
.form-field textarea {
  font: inherit;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
  background: var(--color-surface);
}

.contact-form .btn {
  justify-self: start;
  margin-top: var(--space-sm);
}

.contact-aside {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.contact-aside h2 {
  margin: 0 0 var(--space-md);
  font-size: 1.25rem;
}

.contact-aside p {
  color: var(--color-muted);
}

.form-status {
  font-size: 0.875rem;
  min-height: 1.25rem;
  margin: 0;
}

.form-status--error,
.form-error {
  color: var(--color-error);
}

.form-status--success,
.form-success {
  color: var(--color-success);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--color-footer);
  color: #e7e5e4;
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
}

.site-footer a {
  color: #fcd34d;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__cols {
  display: grid;
  gap: var(--space-lg);
}

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

.site-footer h4 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.site-footer__demo {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: #a8a29e;
}

.site-footer__demo a {
  color: inherit;
  text-decoration: underline;
}

.site-footer__demo a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
}

.site-footer__social {
  margin-top: var(--space-lg);
}

.site-footer__social-title {
  margin: 0 0 var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: #d6d3d1;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e7e5e4;
  user-select: none;
  text-decoration: none;
  transition: background 0.15s ease;
}

a.social-icon:hover,
a.social-icon:focus-visible {
  background: var(--color-accent);
  color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
  text-decoration: none;
}

.social-icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* —— Legal —— */
.legal article {
  max-width: 46rem;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: var(--space-xl);
}

/* —— Values / feature list without photos —— */
.feature-list {
  display: grid;
  gap: var(--space-md);
}

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

.feature-list article {
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.feature-list h3 {
  margin: 0 0 var(--space-sm);
}

.feature-list p {
  margin: 0;
  color: var(--color-muted);
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* —— Photo-forward full-bleed hero —— */
.hero--bleed {
  position: relative;
  min-height: min(92vh, 46rem);
  display: grid;
  align-items: end;
  color: #f8f4ef;
}

.hero--bleed .media--bleed {
  position: absolute;
  inset: 0;
  border-radius: 0;
  aspect-ratio: auto;
  max-height: none;
  box-shadow: none;
}

.hero--bleed .hero__overlay {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(transparent, rgba(12, 10, 8, 0.72));
}

.hero--bleed .hero__overlay h1,
.hero--bleed .hero__overlay .lead,
.hero--bleed .hero__overlay .eyebrow {
  color: #f8f4ef;
}

.hero--bleed .hero__overlay .lead {
  max-width: 36rem;
}

.hero--bleed .btn--ghost {
  color: #f8f4ef;
  border-color: rgba(248, 244, 239, 0.45);
}

.work-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr 1fr;
}

.work-grid .media,
.work-tile .media {
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
}

.work-tile {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.work-tile:hover {
  text-decoration: none;
}

.work-tile__copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 2.25rem 0.9rem 0.9rem;
  background: linear-gradient(transparent, rgba(20, 16, 14, 0.86));
  color: #f8f4ef;
}

.work-tile__copy h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
  color: inherit;
}

.work-tile__copy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.92;
}

@media (min-width: 720px) {
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

/* —— Utility / trade —— */
.cta-bar {
  background: var(--color-accent);
  color: var(--color-on-accent);
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.cta-bar a {
  color: inherit;
  text-decoration: none;
}

.cta-bar a:hover {
  text-decoration: underline;
}

.trust-row {
  display: grid;
  gap: var(--space-lg);
}

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

.trust-row article h3 {
  margin: 0 0 var(--space-sm);
  font-size: 1.05rem;
}

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

/* —— Contractor / construction —— */
.layout-contractor .btn {
  border-radius: 0.3rem;
}

.layout-contractor .site-header {
  background: var(--color-footer);
  border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  backdrop-filter: none;
}

.layout-contractor .brand {
  color: #f8f4ef;
}

.layout-contractor .brand:hover {
  color: var(--color-accent);
}

.layout-contractor .site-nav a {
  color: rgba(248, 244, 239, 0.78);
}

.layout-contractor .site-nav a:hover,
.layout-contractor .site-nav a[aria-current="page"] {
  color: var(--color-accent);
}

.layout-contractor .nav-toggle {
  background: transparent;
  border-color: rgba(248, 244, 239, 0.28);
}

.layout-contractor .nav-toggle span {
  background: #f8f4ef;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.proof-chip {
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.about-teaser {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 720px) {
  .about-teaser {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }

  .layout-contractor .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-band {
  background: var(--color-footer);
  color: #f8f4ef;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-band h2 {
  color: inherit;
  margin: 0 0 var(--space-sm);
}

.cta-band p {
  margin: 0 0 var(--space-lg);
  color: rgba(248, 244, 239, 0.78);
}

.service-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.service-rows article {
  display: grid;
  gap: var(--space-xs);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-rows h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-rows p {
  margin: 0;
  color: var(--color-muted);
}

/* —— Calm professional —— */
.hero--type {
  padding: var(--space-2xl) 0;
  max-width: 42rem;
}

.hero--type h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  letter-spacing: -0.04em;
  margin: 0 0 var(--space-md);
}

.hero--type .lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin: 0;
}

.credential-row {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

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

.credential-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.credential-row strong {
  display: block;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

/* —— One-page section anchors —— */
.page-section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--color-footer);
  color: #f8f4ef;
  padding: 1rem 0;
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.22);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.9375rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-banner a {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner .btn--ghost {
  color: #f8f4ef;
  border-color: rgba(248, 244, 239, 0.4);
}

.cookie-banner[hidden] {
  display: none !important;
}

body:has(.cookie-banner:not([hidden])) {
  padding-bottom: 7rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: var(--space-md);
  }

  .layout-contractor .site-nav {
    background: var(--color-footer);
    border-bottom-color: color-mix(in srgb, var(--color-accent) 28%, transparent);
  }

  .media--hero {
    aspect-ratio: 16 / 10;
    max-height: 18rem;
  }

  .hero--bleed {
    min-height: min(78vh, 32rem);
  }

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

  .hero--split,
  .hero {
    padding: var(--space-xl) 0;
  }

  .section,
  .page-header {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .contact-form,
  .contact-aside {
    padding: var(--space-lg);
  }
}

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

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

/* Palette: Black & yellow */
:root {
  --color-bg: #f3f1ec;
  --color-surface: #ffffff;
  --color-text: #111111;
  --color-muted: #5c5c5c;
  --color-accent: #f5c518;
  --color-accent-hover: #e0b310;
  --color-accent-soft: #fff4c2;
  --color-border: #e2ddd4;
  --color-on-accent: #111111;
  --color-footer: #111111;
  --radius: 0.25rem;
}
