@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f8f4ee;
  --surface: #ffffff;
  --ink: #1b1b1b;
  --muted: #5f5a53;
  --accent: #ea5c3a;
  --deep: #111827;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 30px 70px rgba(17, 24, 39, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8ec 0%, #f3ede4 45%, #eee3d6 100%);
  scroll-behavior: smooth;
}

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

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav a.nav-cta {
  color: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 6vw 22px;
  background: rgba(248, 244, 238, 0.96);
  border-bottom: 1px solid var(--line);
}

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

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav .nav-cta {
  align-self: flex-start;
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 6vw 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin: 12px 0 18px;
}

.hero-content h1 span {
  color: var(--accent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(234, 92, 58, 0.25);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(234, 92, 58, 0.35);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 24, 39, 0.85);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.9rem;
  display: grid;
  gap: 4px;
}

.hero-badge strong {
  font-size: 1.05rem;
}

.section {
  padding: 60px 6vw;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 12px;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.split.reverse {
  grid-auto-flow: dense;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 12px;
}

.split-highlights {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.split-highlights div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.work {
  background: var(--deep);
  color: #fff;
  border-radius: 32px;
  margin: 0 4vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.work p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.work-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.work-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 18px;
}

.work-steps span {
  font-weight: 700;
  color: var(--accent);
}

.tiles {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.tile {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  background: var(--surface);
  border-radius: 32px;
  margin: 0 4vw 60px;
  border: 1px solid var(--line);
}

.contact-intro p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 56px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    min-height: 240px;
  }

  .split,
  .contact {
    gap: 28px;
  }

  .work {
    margin: 0 0 40px;
    border-radius: 24px;
  }

  .contact {
    margin: 0 0 40px;
    border-radius: 24px;
  }

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