:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background-color: #faf7f2;
}

body {
  margin: 0;
  line-height: 1.6;
  color: #1c1917;
}

.hero {
  padding: clamp(2rem, 4vw, 5rem);
  background: linear-gradient(135deg, #f97316 0%, #fb923c 60%, #fde68a 100%);
  color: #1c1917;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.language {
  background: rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.language-toggle {
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  margin: 0 0 1rem;
}

.lead {
  max-width: 60ch;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.2em;
}

.meta strong {
  font-size: 1rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  background: #0f172a;
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.3);
  color: #0f172a;
}

.section {
  padding: clamp(2rem, 5vw, 4rem);
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
}

.section:nth-of-type(odd) {
  background: #fefcf8;
}

.section h2 {
  margin-top: 0;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cards article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid #f5ebe0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.list {
  padding-left: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 420px;
}

input[type="password"],
input[type="file"] {
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #d6d3d1;
  font-size: 1rem;
  background: #fff;
}

.form-status,
.upload-status {
  min-height: 1.4rem;
  font-size: 0.95rem;
}

.form-status[data-state="success"],
.upload-status[data-state="success"] {
  color: #15803d;
}

.form-status[data-state="error"],
.upload-status[data-state="error"] {
  color: #dc2626;
}

.photos-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.overlay-dialog {
  background: #fff;
  border-radius: 1rem;
  max-width: 420px;
  width: 90%;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overlay-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.overlay-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.overlay-status[data-state="error"] {
  color: #dc2626;
}

.overlay-status[data-state="success"] {
  color: #15803d;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  background: #fff;
}
