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

:root {
  --shell-yellow: #FFD500;
  --shell-red: #ED1C24;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 14px rgba(0, 0, 0, .04);
  --shadow-lg: 0 4px 6px rgba(0, 0, 0, .06), 0 10px 30px rgba(0, 0, 0, .08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Infóblokk ── */

.infoblokk {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-50) 100%);
}

.infoblokk img {
  height: 64px;
  width: auto;
}

/* ── Hero ── */

.hero {
  text-align: center;
  padding: 64px 24px 56px;
  background:
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-600);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Content section ── */

.content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left column – info card */

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.info-card dl {
  display: grid;
  gap: 0;
}

.info-card dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  padding-top: 20px;
}

.info-card dt:first-child {
  padding-top: 0;
}

.info-card dd {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.info-card dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--shell-yellow);
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255, 213, 0, .35);
}

.btn-pdf:hover {
  background: #e6c000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 213, 0, .45);
}

.btn-pdf::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--gray-900);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='15' y2='15'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='15' y2='15'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}

/* Right column – description */

.content-right h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.content-right h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 2px;
  background: var(--shell-red);
}

.content-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.content-right .btn-pdf {
  margin-top: 24px;
}

/* ── Map section ── */

.map-section {
  background: var(--gray-50);
  padding: 64px 24px;
}

.map-section h2 {
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
}

#map {
  max-width: 1120px;
  margin: 0 auto;
  height: 500px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 0;
}

/* ── Footer ── */

footer {
  background: var(--shell-red);
  color: var(--white);
  padding: 40px 24px;
}

.footer-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-left p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-left strong {
  color: inherit;
  font-weight: 600;
}

.footer-right a {
  color: var(--shell-yellow);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-right a:hover {
  opacity: 0.85;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding: 48px 20px 40px;
  }

  .hero-logo {
    width: 64px;
  }

  .info-card {
    padding: 28px 24px;
  }

  #map {
    height: 380px;
    border-radius: 8px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .infoblokk {
    padding: 0 12px;
  }

  .infoblokk img {
    height: 48px;
  }

  .hero {
    padding: 36px 16px 32px;
  }

  #map {
    height: 300px;
  }

  .btn-pdf {
    width: 100%;
    justify-content: center;
  }
}
