:root {
  --bg: #f5efe4;
  --paper: rgba(255, 250, 242, 0.78);
  --ink: #111111;
  --muted: #5d554c;
  --line: rgba(17, 17, 17, 0.12);
  --accent: #ff6b2c;
  --accent-soft: #ffb07d;
  --deep: #143b2d;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 44, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(20, 59, 45, 0.18), transparent 28%),
    linear-gradient(135deg, #f8f3ea 0%, #efe4d1 45%, #ead9c4 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}

body::before {
  top: 8%;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(255, 107, 44, 0.22);
}

body::after {
  bottom: 4%;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(20, 59, 45, 0.14);
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 18px auto 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  background: rgba(255, 248, 239, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
}

.topbar,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff915e);
  color: #fff7ed;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.24);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 28px;
}

.hero-panel,
.info-panel,
.section-card,
.quote-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  backdrop-filter: blur(14px);
}

.hero-panel {
  min-height: 640px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(255, 245, 236, 0.84)),
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.18), transparent 36%);
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border-radius: 36% 64% 57% 43% / 41% 39% 61% 59%;
  background: linear-gradient(135deg, rgba(20, 59, 45, 0.95), rgba(35, 98, 73, 0.85));
  opacity: 0.92;
  transform: rotate(18deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  width: fit-content;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 107, 44, 0.12);
}

.hero-copy {
  max-width: 680px;
  margin-top: 32px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero-copy .serif {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: -0.04em;
  font-style: italic;
  text-transform: none;
  color: var(--deep);
}

.hero-text {
  max-width: 540px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

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

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

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

.button-primary {
  background: var(--ink);
  color: #fff7ed;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(17, 17, 17, 0.12);
}

.hero-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.metric strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.metric span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.info-stack {
  display: grid;
  gap: 24px;
}

.info-panel {
  padding: 26px;
}

.mini-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.showcase-frame {
  border-radius: 28px;
  min-height: 300px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(20, 59, 45, 0.94), rgba(37, 96, 74, 0.84)),
    linear-gradient(135deg, rgba(255, 176, 125, 0.28), transparent 60%);
  color: #f6efe6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.showcase-frame::before,
.showcase-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-frame::before {
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
}

.showcase-frame::after {
  bottom: -50px;
  left: -20px;
  width: 180px;
  height: 180px;
}

.frame-top,
.frame-bottom {
  position: relative;
  z-index: 1;
}

.frame-index {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 239, 230, 0.74);
}

.frame-title {
  max-width: 260px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.insight-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.insight-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 0 28px 28px;
}

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

.section-head h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section-head p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.work-grid,
.principle-grid,
.story-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.section-card {
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.08);
}

.card-index {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.section-card h3 {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-card p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.principle-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.quote-card {
  padding: 30px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.96), rgba(48, 48, 48, 0.92)),
    linear-gradient(180deg, rgba(255, 107, 44, 0.2), transparent 70%);
  color: #fff8f0;
}

.quote-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff8f0;
  max-width: 520px;
}

.quote-card span {
  color: rgba(255, 248, 240, 0.72);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
}

.story-card strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: none;
  padding-top: 0;
}

.timeline-year {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline-item h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.18), rgba(255, 255, 255, 0.62)),
    rgba(255, 250, 244, 0.78);
}

.cta-panel h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

.footer {
  padding: 0 28px 28px;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.footer-block {
  color: var(--muted);
  line-height: 1.7;
}

.footer-title {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

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

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

@media (max-width: 1024px) {
  .hero,
  .story-grid,
  .principle-grid,
  .cta-panel,
  .footer-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .cta-panel {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    margin-top: 10px;
    border-radius: 28px;
  }

  .topbar,
  .hero,
  .section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .hero-footer,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-card,
  .info-panel,
  .hero-panel,
  .quote-card,
  .story-card,
  .cta-panel {
    border-radius: 26px;
  }
}
