:root {
  --bg: #fdfdfb;
  --bg-soft: #f6f4ef;
  --surface: #ffffff;
  --surface-2: #f8f7f3;
  --text: #1f2523;
  --text-muted: #56615d;
  --line: #d9dfdc;
  --brand: #0d7a5f;
  --brand-strong: #0b644e;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(10, 45, 34, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.55;
  position: relative;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 5%, rgba(13, 122, 95, 0.16), transparent 36%),
    radial-gradient(circle at 90% 14%, rgba(199, 163, 99, 0.17), transparent 32%),
    linear-gradient(180deg, #fefefc 0%, #f7f6f0 100%);
}

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

.site-header {
  width: min(100% - 2rem, 1060px);
  margin: 1rem auto 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 25px rgba(29, 44, 39, 0.08);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  transition: background-color 220ms ease, color 220ms ease;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--text);
  background: var(--surface-2);
}

.hero {
  padding: 4.5rem 0 2.6rem;
  animation: rise 560ms ease-out both;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.73rem;
  color: var(--brand-strong);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  font-family: "Gill Sans", "Trebuchet MS", "Avenir Next", sans-serif;
}

h1 {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 6vw, 3.7rem);
  max-width: 20ch;
}

.hero-copy {
  color: var(--text-muted);
  margin: 1rem 0 0;
  max-width: 57ch;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.72rem 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #f6fff8;
  box-shadow: 0 10px 24px rgba(13, 122, 95, 0.27);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
}

.section {
  padding: 1rem 0 2.8rem;
}

.section-head {
  margin-bottom: 1rem;
  animation: rise 720ms ease-out both;
}

.section-head p {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  max-width: 65ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  animation: rise 760ms ease both;
}

.card h3,
.card h2 {
  margin-bottom: 0.6rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.project-highlight {
  display: grid;
  gap: 0.85rem;
}

.project-card {
  max-width: 560px;
}

.project-tag {
  margin: 0 0 0.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-strong);
  font-size: 0.7rem;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.project-layout {
  display: grid;
  gap: 1rem;
}

.shot-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}

.shot-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  overflow: hidden;
  aspect-ratio: 9 / 10;
  max-height: min(36vh, 310px);
}

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

.legal-copy p {
  max-width: 72ch;
  color: var(--text-muted);
}

.site-footer {
  padding: 0.7rem 0 1.8rem;
}

.site-footer p {
  margin: 0;
  color: #67716d;
  font-size: 0.88rem;
}

@media (min-width: 720px) {
  .site-header {
    margin-top: 1.25rem;
  }

  .site-nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }

  .hero {
    padding-top: 6rem;
  }

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

  .project-highlight {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .project-layout {
    grid-template-columns: 1fr 1fr;
  }

  .card {
    padding: 1.25rem;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
