﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Space+Grotesk:wght@300;400;500;600&display=swap");

:root {
  --bg: #f4f0e9;
  --bg-soft: #fbf7f0;
  --ink: #1f1b16;
  --muted: #70695e;
  --accent: #1a4b43;
  --accent-2: #b98c56;
  --card: rgba(255, 255, 255, 0.84);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 10%, #fff7ee 0%, #f0ebe3 45%, #e5e0d6 100%);
}

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}

p {
  line-height: 1.7;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 7vw;
  background: rgba(244, 240, 233, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px rgba(26, 75, 67, 0.2);
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(26, 75, 67, 0.3);
  box-shadow: none;
}

.btn-admin {
  background: var(--accent-2);
  color: #fff;
  box-shadow: 0 12px 26px rgba(185, 140, 86, 0.3);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 20, 18, 0.68), rgba(18, 20, 18, 0.15));
}

.hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  margin: 12px 0 16px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 7vw;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2.4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section {
  padding: 120px 7vw;
}

.section-alt {
  background: var(--bg-soft);
}

.section-inner {
  max-width: 860px;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.story-grid {
  margin-top: 46px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--accent);
}

.story-text {
  font-size: 0.95rem;
  color: var(--muted);
}

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

.service-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.timeline {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 22px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.timeline-step {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 75, 67, 0.1);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--accent);
}

.cta {
  background: linear-gradient(130deg, #1a4b43, #234c3f 55%, #1f2a22);
  color: #fff;
}

.cta p,
.cta h2 {
  color: #fff;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-info {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 40px 7vw 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.page-admin {
  background: radial-gradient(circle at 15% 10%, #f8f6f0 0%, #ede6da 55%, #e6decf 100%);
}

.admin {
  padding: 90px 7vw 120px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-card {
  max-width: 560px;
  margin: 0 auto;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-inline {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: inherit;
  font-size: 0.95rem;
}

.admin-panels {
  display: grid;
  gap: 32px;
}

.hidden {
  display: none;
}

.grid.two {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stats {
  display: grid;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(26, 75, 67, 0.08);
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  color: var(--accent);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ledger {
  display: grid;
  gap: 20px;
}

.ledger-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.data-table th {
  color: var(--muted);
  font-weight: 500;
}

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

.list-item {
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.list-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.login-hint {
  margin-top: 12px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 6vw;
  }

  .hero {
    padding: 0 6vw;
  }

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

  .nav {
    gap: 10px;
  }

  .scroll-hint {
    right: 6vw;
  }

  .form-inline {
    flex-direction: column;
  }
}
