:root {
  --bg: #f5f0e8;
  --bg-muted: #ebe3d9;
  --surface: #fffdfa;
  --surface-strong: #f9f4ee;
  --text: #2b2f33;
  --text-soft: #62666c;
  --line: #d5c7b7;
  --accent: #876646;
  --accent-strong: #6f5337;
  --accent-soft: #ede1d2;
  --shadow: 0 24px 48px rgba(43, 47, 51, 0.08);
  --radius: 20px;
  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top right, rgba(135, 102, 70, 0.08), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 10;
}

.skip-link:focus {
  top: 12px;
}

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

.section {
  padding: 76px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(139, 107, 69, 0.08);
  border-bottom: 1px solid rgba(139, 107, 69, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(248, 243, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 47, 51, 0.06);
}

.header-shell,
.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.header-shell {
  gap: 10px;
  padding: 10px 0 8px;
}

.brand-kicker,
.brand-note,
.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-kicker,
.eyebrow,
.placeholder-kicker {
  color: var(--accent-strong);
}

.brand-note {
  color: var(--text-soft);
  font-size: 0.73rem;
  line-height: 1.35;
}

.brand-note-short,
.brand-note-full {
  display: block;
}

.brand-note-full {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: none;
  white-space: nowrap;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero {
  padding-top: 56px;
  padding-bottom: 54px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2rem, 9vw, 3.1rem);
  max-width: 720px;
  line-height: 1.08;
  margin-bottom: 12px;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin: 0;
  font-size: 1.02rem;
  max-width: 62ch;
  line-height: 1.58;
}

.hero-text,
.section-text,
.contact-note,
.site-nav,
.brand-note,
.hero-points,
.contact-list {
  color: var(--text-soft);
}

.hero-points,
.contact-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.hero-points li,
.contact-list li {
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
}

.button-tertiary {
  background: var(--surface);
  border-color: rgba(43, 47, 51, 0.08);
}

.hero-panel,
.contact-card,
.card,
.list-card,
.format-card,
.cta-strip {
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(139, 107, 69, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.hero-media,
.work-media {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background: var(--surface-strong);
}

.hero-image,
.work-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.visual-placeholder,
.image-placeholder {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px dashed rgba(135, 102, 70, 0.38);
  background:
    linear-gradient(135deg, rgba(135, 102, 70, 0.08), rgba(255, 255, 255, 0.72)),
    var(--surface-strong);
}

.placeholder-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card {
  padding: 14px 0;
  border-bottom: 1px solid rgba(43, 47, 51, 0.08);
}

.hero-panel .info-card:first-of-type strong {
  font-size: 1.02rem;
}

.info-card strong {
  display: block;
  line-height: 1.55;
}

.info-card:last-child {
  border-bottom: 0;
}

.info-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 780px;
}

.section-text {
  margin: 0;
  max-width: 60ch;
}

.card-grid,
.list-grid,
.future-grid,
.works-gallery,
.format-panel,
.contact-grid {
  display: grid;
  gap: 16px;
}

.card,
.list-card,
.format-card {
  padding: 20px;
}

.card h3,
.list-card h3,
.format-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.work-card {
  padding: 0;
  overflow: hidden;
}

.work-card h3,
.work-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.work-card h3 {
  margin-top: 18px;
}

.work-card p {
  margin-top: 0;
  margin-bottom: 20px;
}

.work-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  min-height: 240px;
}

.list-card ul {
  margin: 0;
  padding-left: 18px;
}

.cta-strip {
  display: grid;
  gap: 14px;
  padding: 20px;
  margin-top: 18px;
}

.cta-strip p {
  margin: 0;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(139, 107, 69, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-list span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list p {
  color: var(--text-soft);
  margin-top: 6px;
}

.format-panel {
  margin-top: 18px;
}

.placeholder-card {
  border-style: dashed;
}

.contact-shell {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 24px;
}

.contact-card-accent {
  background: linear-gradient(180deg, var(--surface) 0%, var(--accent-soft) 100%);
  border-color: rgba(135, 102, 70, 0.18);
}

.contact-actions {
  margin-top: 22px;
}

.contact-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: rgba(111, 83, 55, 0.35);
  text-underline-offset: 0.18em;
}

.site-footer {
  border-top: 1px solid rgba(43, 47, 51, 0.08);
  color: var(--text-soft);
}

@media (min-width: 720px) {
  .header-shell,
  .footer-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
    align-items: start;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 62px;
  }

  .header-shell {
    gap: 16px;
    padding: 16px 0;
  }

  .brand-note {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .brand-note-short {
    display: none;
  }

  .brand-note-full {
    display: block;
  }

  .site-nav {
    overflow: visible;
    padding-bottom: 0;
    gap: 12px 18px;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .future-grid,
  .works-gallery,
  .format-panel,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.78fr);
    gap: 22px;
    align-items: start;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 3.65vw, 3.75rem);
    max-width: 720px;
    line-height: 1.06;
  }

  .hero-panel {
    gap: 10px;
    padding: 18px;
  }

  .hero-image {
    aspect-ratio: 16 / 10.8;
  }

  .section {
    padding: 96px 0;
  }

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

  .future-grid,
  .works-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
