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

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --accent: #1a1a1a;
  --gray: #f5f5f5;
  --text-muted: #666;
  --max-width: 1100px;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
}

.nav-logo img {
  height: 72px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover { opacity: 0.6; }

.nav-app {
  background: #f14a43;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-app:hover { opacity: 0.8 !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 40px;
  gap: 16px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--black); font-size: 16px; font-weight: 500; }

/* HERO */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black) center/cover no-repeat;
  text-align: center;
  padding: 80px 40px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}

/* ABOUT */
.about {
  padding: 0;
}

.about-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  padding: 72px 40px 48px;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 64px;
  border-bottom: 1px solid #f0f0f0;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #bbb;
  display: block;
  margin-bottom: 16px;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.about-image {
  overflow: hidden;
  background: #e8e8e8;
  width: 260px;
  min-width: 260px;
  height: 260px;
  border-radius: 12px;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img { transform: scale(1.03); }

/* CONTACT */
.contact {
  background: var(--gray);
  padding: 80px 40px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
}

.contact form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact input[type="text"],
.contact input[type="email"] {
  padding: 13px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  background: var(--white);
}

.contact input:focus { outline: 2px solid var(--black); }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
}

.checkbox-label input { margin-top: 3px; flex-shrink: 0; }

.contact button[type="submit"] {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact button[type="submit"]:hover { opacity: 0.8; }

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--black); }
.footer-social a:hover { opacity: 0.6; }

.footer-copy { font-size: 13px; color: var(--text-muted); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* PAGE HERO (About Us etc.) */
.page-hero {
  background: var(--black) center/cover no-repeat;
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
}

/* ABOUT PAGE */
.about-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
}

.about-page-block {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.about-page-image {
  width: 320px;
  min-width: 320px;
  min-height: 400px;
  border-radius: 12px;
  background: #e8e8e8;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.about-page-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-page-text { flex: 1; }

.about-section {
  margin-bottom: 48px;
}

.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 8px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.about-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.about-section ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .about-page { padding: 40px 24px; }
  .about-page-block { flex-direction: column; }
  .about-page-image { width: 100%; min-width: unset; min-height: 260px; position: static; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #e5e5e5;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 200;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}

.cookie-banner p { font-size: 13px; color: var(--text-muted); max-width: 700px; }

.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-buttons button {
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
}

.form-msg { font-size: 14px; margin-top: 4px; min-height: 20px; }
.form-msg-success { color: #16A34A; }
.form-msg-error { color: #DC2626; }

.cookie-buttons button.accept {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cookie-banner.hidden { display: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero { padding: 60px 24px; min-height: 40vh; }

  .about-label { padding: 48px 24px 32px; }
  .about-block { flex-direction: column; padding: 32px 24px; }
  .about-image { width: 100%; min-width: unset; height: 220px; }
  .about-text { padding: 0; }

  .contact { padding: 60px 24px; }

  .cookie-banner { flex-direction: column; padding: 20px 24px; }
  .cookie-banner p { max-width: 100%; }
}
