:root {
  --bg: #f6f1e8;
  --bg-strong: #dfd2be;
  --surface: rgba(255, 250, 242, 0.78);
  --surface-strong: #fbf7f0;
  --text: #1d1a17;
  --muted: #655b50;
  --line: rgba(29, 26, 23, 0.12);
  --accent: #a95b2a;
  --accent-deep: #6e3515;
  --shadow: 0 20px 60px rgba(61, 45, 29, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(135deg, #f7efe2 0%, #e8dcc8 42%, #d8c6ae 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 56px,
      rgba(255, 255, 255, 0.15) 56px,
      rgba(255, 255, 255, 0.15) 57px
    );
  opacity: 0.45;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 48px;
}

.hero,
.metrics,
.services,
.projects,
.process,
.contact,
.intro-copy,
.faq-section {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 28px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(169, 91, 42, 0.32), transparent 68%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.brand,
.topbar-links a,
.button {
  text-decoration: none;
  color: inherit;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.brand-lockup img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(61, 45, 29, 0.12);
}

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

.brand-lockup strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
}

.eyebrow,
.mini-label,
.project-type,
.timeline-step span,
.metrics span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.eyebrow,
.project-type,
.timeline-step span,
.metrics span {
  color: var(--accent-deep);
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  margin: 14px 0 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 12ch;
  margin-top: 10px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.lead,
.service-card p,
.project-card p,
.timeline-step p,
.contact-panel p,
.metrics p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.lead {
  max-width: 60ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #fff9f1;
  border-color: transparent;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.45);
}

.hero-card {
  display: grid;
  gap: 14px;
}

.hero-visual {
  margin: 0;
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.06), rgba(20, 17, 14, 0.28));
}

.hero-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff8ef;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-panel,
.service-card,
.project-card,
.timeline-step,
.contact-panel,
.contact-note {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.hero-panel {
  padding: 22px;
  background: rgba(255, 251, 246, 0.68);
}

.hero-panel-main {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(169, 91, 42, 0.15)),
    linear-gradient(135deg, #f2e5d3, #cfb89d);
}

.hero-panel span,
.service-card .mini-label,
.contact-note .mini-label {
  display: block;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.hero-panel strong {
  font-size: 1.5rem;
  max-width: 12ch;
}

.metrics,
.services,
.projects,
.process,
.contact,
.intro-copy,
.faq-section {
  margin-top: 18px;
  padding: 28px;
}

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

.metrics div {
  padding: 12px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-grid,
.project-list,
.timeline,
.contact,
.intro-grid,
.faq-grid,
.landing-grid {
  display: grid;
  gap: 16px;
}

.theme-grid,
.shop-strip-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.landing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
}

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

.landing-content {
  margin-top: 18px;
}

.landing-hero h1 {
  max-width: 12ch;
}

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

.service-card,
.project-card,
.timeline-step,
.contact-panel,
.contact-note {
  padding: 22px;
  background: rgba(255, 251, 246, 0.76);
}

.accent-card {
  background: linear-gradient(180deg, rgba(169, 91, 42, 0.12), rgba(255, 251, 246, 0.85));
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.theme-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.82);
  box-shadow: var(--shadow);
}

.theme-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.theme-card-body {
  padding: 22px;
}

.theme-card-body p {
  color: var(--muted);
  line-height: 1.65;
}

.theme-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.shop-strip {
  margin-top: 18px;
  padding: 28px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(29, 26, 23, 0.98), rgba(76, 47, 27, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.shop-strip .eyebrow,
.shop-strip h2,
.shop-link-card strong,
.shop-link-card p,
.shop-link-card span {
  color: #fff8ef;
}

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

.shop-link-card {
  text-decoration: none;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 248, 239, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background-color 180ms ease;
}

.shop-link-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.shop-link-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.shop-link-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.shop-link-card p {
  margin: 0;
  opacity: 0.86;
}

.project-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.project-card:nth-child(2) {
  transform: translateY(24px);
}

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

.timeline-step {
  min-height: 200px;
}

.contact {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.contact-note {
  background: linear-gradient(180deg, rgba(29, 26, 23, 0.96), rgba(63, 44, 26, 0.96));
  color: #f8efe2;
}

.contact-note ul,
.contact-note .mini-label,
.contact-note a {
  color: rgba(248, 239, 226, 0.86);
}

.contact-links a,
.site-footer a {
  color: inherit;
}

.contact-links strong {
  color: var(--text);
}

.contact-logo {
  width: min(180px, 42%);
  height: auto;
  display: block;
  margin-bottom: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 40px rgba(61, 45, 29, 0.12);
}

.site-footer {
  padding: 28px 8px 8px;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer p {
  margin: 0;
}

.legal-shell {
  margin-top: 24px;
}

.legal-hero h1 {
  max-width: none;
}

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

.legal-card {
  min-height: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .service-grid,
  .project-list,
  .theme-grid,
  .timeline,
  .contact,
  .metrics,
  .shop-strip-grid,
  .intro-grid,
  .faq-grid,
  .landing-grid,
  .landing-stack {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(2) {
    transform: none;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .metrics,
  .services,
  .projects,
  .process,
  .contact,
  .shop-strip,
  .intro-copy,
  .faq-section {
    padding: 20px;
    border-radius: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .brand-lockup img {
    width: 56px;
    height: 56px;
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  h2 {
    max-width: none;
  }
}
