/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --red:    #CC2E1A;
  --green:  #2D5233;
  --cream:  #E8E3DE;
  --white:  #FAFAF8;
  --dark:   #1A1A1A;
  --text:   #2E2E2E;
  --muted:  #666;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 4px;
  --max-w: 1140px;
  --gap: clamp(2rem, 5vw, 4rem);
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Base ───────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────────────────────────── */
h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.5rem;
}

h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

small { font-size: 0.825rem; color: var(--muted); }

strong { font-weight: 600; }

.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.label--light { color: rgba(255,255,255,0.7); }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding: var(--gap) 0;
}

.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--green  { background: var(--green); }
.section--red    { background: var(--red); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 64px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav-brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.15s;
}

.nav-links li a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.15s !important;
}

.nav-cta:hover { background: #a82415 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  width: clamp(260px, 50vw, 480px);
  animation: fadeUp 0.8s ease both;
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-scroll {
  margin-top: 2rem;
  color: var(--green);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-scroll svg { width: 28px; height: 28px; }
.hero-scroll:hover { opacity: 1; transform: translateY(4px); }

/* ─── Intro strip ────────────────────────────────────────────────── */
.intro-strip {
  background: var(--dark);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}

.intro-greeting {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}

.intro-heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.intro-strip .lead { color: rgba(255,255,255,0.75); max-width: 640px; }

/* ─── Full-width photo ───────────────────────────────────────────── */
.photo-full {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.photo-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* ─── Two-column ─────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.two-col__text h2 { color: var(--dark); }
.two-col__text--light h2 { color: #fff; }
.two-col__text--light p  { color: rgba(255,255,255,0.85); }
.two-col__text--light .label { color: rgba(255,255,255,0.6); }

/* ─── Feature list ───────────────────────────────────────────────── */
.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ─── Names list ─────────────────────────────────────────────────── */
.names-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  list-style: none;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.names-list li {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* ─── Land statement ─────────────────────────────────────────────── */
.land-statement {
  max-width: 720px;
}

.land-statement h2 { margin-bottom: 1.5rem; }

.land-statement p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text);
}

/* ─── Values ─────────────────────────────────────────────────────── */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.values span {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border: 2px solid var(--red);
  border-radius: 100px;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
  cursor: default;
}

.values span:hover {
  background: var(--red);
  color: #fff;
}

.values-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── Timeline ───────────────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.1);
}

.timeline__item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15);
  background: var(--cream);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}

.timeline__item--done .timeline__dot {
  background: var(--green);
  border-color: var(--green);
}

.timeline__item--active .timeline__dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204, 46, 26, 0.2);
}

.timeline__content h4 { color: var(--dark); }
.timeline__content p  { font-size: 0.9rem; color: var(--muted); }

.timeline__item--done .timeline__content h4 { color: var(--green); }
.timeline__item--active .timeline__content h4 { color: var(--red); }

/* ─── Contact ────────────────────────────────────────────────────── */
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  gap: 1.25rem;
}

.contact-logo {
  width: 220px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact-inner h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.contact-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin: 0;
}

/* ─── Button ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s, transform 0.1s;
}

.btn--white {
  background: #fff;
  color: var(--red);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Lockscreen ─────────────────────────────────────────────────── */
.lockscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lockscreen__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.lockscreen__logo {
  width: clamp(220px, 40vw, 340px);
}

.lockscreen__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  max-width: 300px;
}

.lockscreen__form input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  letter-spacing: 0.12em;
  outline: none;
  transition: border-color 0.15s;
}

.lockscreen__form input:focus {
  border-color: var(--green);
}

.lockscreen__form input.shake {
  animation: shake 0.4s ease;
  border-color: var(--red);
}

.lockscreen__form button {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lockscreen__form button:hover { background: #a82415; transform: translateY(-1px); }

.lockscreen__error {
  color: var(--red);
  font-size: 0.85rem;
  display: none;
  margin: 0;
}

/* ─── Animation ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }

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

  .nav-toggle { display: flex; }

  .two-col,
  .two-col--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .two-col__image { order: -1; }
  .two-col__image img { height: 260px; }

  .two-col--reverse .two-col__image { order: -1; }

  .timeline::before { left: 10px; }

  .footer-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
  .names-list { grid-template-columns: 1fr; }
}
