﻿:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffaf0;
  --ink: #17221b;
  --muted: #5c6d62;
  --brand: #f1a208;
  --brand-deep: #cf7e00;
  --accent: #244a38;
  --line: rgba(23, 34, 27, 0.1);
  --shadow: 0 24px 60px rgba(26, 35, 29, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(241, 162, 8, 0.28), transparent 32%),
    radial-gradient(circle at top right, rgba(36, 74, 56, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f3e9 0%, #f0ede4 46%, #f7f5ef 100%);
  min-height: 100vh;
}

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

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

.shell {
  position: relative;
  overflow: hidden;
}

.shell::before,
.shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.5;
}

.shell::before {
  top: -8rem;
  left: -10rem;
  background: rgba(241, 162, 8, 0.22);
}

.shell::after {
  right: -12rem;
  top: 18rem;
  background: rgba(36, 74, 56, 0.18);
}

.wrap {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  padding: 1.25rem 0 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(23, 34, 27, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.topnav .cta-link {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fffdf7;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(207, 126, 0, 0.25);
}

.hero {
  padding: 1.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(160deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 245, 224, 0.84) 58%, rgba(240, 237, 228, 0.82) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(36, 74, 56, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.lead {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fffdf8;
  box-shadow: 0 16px 34px rgba(207, 126, 0, 0.24);
}

.button.secondary {
  border: 1px solid rgba(36, 74, 56, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
}

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

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.fact {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 34, 27, 0.08);
}

.fact strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.fact span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  background: #d9d9d9;
}

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

.hero-card {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: min(320px, calc(100% - 2.8rem));
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(17, 29, 23, 0.78);
  color: rgba(255, 250, 240, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.8);
  line-height: 1.55;
  font-size: 0.96rem;
}

.section {
  padding: 0 0 4.5rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-head p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.65;
}

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

.capability {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(23, 34, 27, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(23, 34, 27, 0.08);
}

.capability .kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.capability p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.gallery-main,
.gallery-stack article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.gallery-main img,
.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.15rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 21, 16, 0.78) 100%);
  color: #fffaf2;
}

.gallery-caption strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gallery-caption span {
  color: rgba(255, 250, 242, 0.84);
  line-height: 1.5;
  font-size: 0.95rem;
}

.gallery-main:hover img,
.gallery-stack article:hover img {
  transform: scale(1.03);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 49, 37, 0.96), rgba(17, 28, 23, 0.9));
  color: #fffaf0;
  box-shadow: 0 30px 70px rgba(17, 28, 23, 0.28);
}

.contact-panel p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-item,
.contact-box {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item strong,
.contact-box strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffd588;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item span,
.contact-box span,
.contact-box a {
  color: rgba(255, 250, 240, 0.92);
  line-height: 1.65;
}

.contact-box {
  align-self: stretch;
  background: linear-gradient(145deg, rgba(255, 213, 136, 0.12), rgba(255, 255, 255, 0.06));
}

.footer {
  padding: 0 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms ease forwards;
}

.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 160ms; }
.delay-3 { animation-delay: 240ms; }
.delay-4 { animation-delay: 320ms; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .topbar,
  .section-head {
    border-radius: 28px;
  }

  .hero-grid,
  .gallery,
  .contact-panel,
  .capabilities {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .topbar {
    padding: 1rem;
    border-radius: 26px;
    align-items: flex-start;
  }

  .topnav {
    justify-content: flex-start;
  }

  h1 {
    max-width: none;
  }

  .facts,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .gallery-main,
  .gallery-stack article {
    min-height: 220px;
  }
}

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

  .reveal,
  .gallery-main img,
  .gallery-stack img,
  .button {
    animation: none;
    transition: none;
  }

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