*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Satoshi', system-ui, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 32px 48px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: #005c8d;
}

.lang-toggle {
  background: none;
  border: none;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 0.9rem;
  color: #005c8d;
  cursor: pointer;
  padding: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px 48px;
}

.hero {
  width: 100%;
  max-width: 1200px;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* PAGE STYLES */
.page {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 80px 48px;
}

.page-content {
  max-width: 620px;
  width: 100%;
}

.page-headline {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 48px;
}

.page-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 24px;
}

.page-body p:last-child {
  margin-bottom: 0;
}

.tagline {
  font-weight: 600;
  color: #005c8d;
  margin-top: 12px;
}

/* HISTORY PAGE */
.page-history {
  align-items: flex-start;
  padding: 80px 48px;
}

.page-content-wide {
  max-width: 1200px;
  width: 100%;
}

.h-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.h-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.h-year {
  font-size: 0.85rem;
  font-weight: 600;
  color: #005c8d;
  white-space: nowrap;
}

.h-line {
  height: 1px;
  background: #e0e0e0;
  flex: 1;
}

.h-item p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3a3a3a;
}

.h-image {
  margin-top: 24px;
  width: 100%;
}

.h-image.placeholder {
  height: 160px;
  background: #f5f5f5;
  border: 1px dashed #ddd;
}

.h-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTACT */
.contact-info {
  margin-bottom: 48px;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 6px;
}

.contact-value {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
}

.contact-value a:hover {
  color: #005c8d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

.form-group input,
.form-group textarea {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  background: none;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #005c8d;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-submit {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background: #005c8d;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: #004a73;
}