:root {
  --bg: #f3f6f7;
  --surface: #ffffff;
  --surface-soft: #e8eff3;
  --text: #1f2933;
  --muted: #4d6273;
  --primary: #1f4e6d;
  --primary-strong: #173a52;
  --border: #d4dde3;
  --radius: 0.8rem;
  --shadow: 0 8px 20px rgba(31, 78, 109, 0.12);
}

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

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-strong);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.container-wide {
  width: min(1500px, 92%);
  margin-inline: auto;
}

.section-title-center {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
}

.logo-image {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-switch span {
  color: var(--border);
  user-select: none;
}

.lang-switch a {
  font-weight: 500;
}

.lang-switch a[aria-current="true"] {
  color: var(--primary);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.25rem 0;
  background: var(--primary);
}

.hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(19, 53, 75, 0.74), rgba(19, 53, 75, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: 5rem;
}

.hero-content h1 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 4.8vw, 3.3rem);
  line-height: 1.14;
  margin: 0.45rem 0 1rem;
}

.hero-content p {
  max-width: 60ch;
}

.hero-content .btn-primary {
  margin-top: 35px;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  font-size: 0.86rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 0.6rem;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: var(--primary-strong);
}

.btn-primary:hover {
  background: #eaf2f7;
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--primary-strong);
}

.section {
  padding: clamp(2.5rem, 5vw, 4.8rem) 0;
}

.section-soft,
.page-hero {
  background: var(--surface-soft);
}

.page-hero {
  padding: clamp(2.2rem, 4vw, 3.3rem) 0;
}

.contact-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid-single {
  margin-top: 1.2rem;
}

.contact-grid-single .card {
  width: 100%;
  max-width: none;
}

.shop-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.shop-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 78, 109, 0.18);
}

.shop-card:hover h3 {
  color: var(--primary-strong);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.shop-card h3 {
  margin: 1rem 1.2rem 0.5rem;
  font-size: 1.15rem;
  color: var(--primary);
}

.shop-card p {
  margin: 0 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 2rem;
}

.about-row + .about-row {
  margin-top: 2.5rem;
}

.about-text p {
  margin: 0;
}

.about-media {
  margin: 0;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-row-reverse .about-media {
  order: -1;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.site-footer {
  background: #0f2d41;
  color: #dce8ef;
  margin-top: 2rem;
}

.site-footer a {
  color: #d8ebf8;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  grid-template-columns: repeat(3, 1fr);
}

.footer-grid-two {
  grid-template-columns: repeat(2, minmax(260px, 340px));
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: 2.5rem 0;
}

.footer-grid-two section {
  text-align: left;
}

.footer-grid-two address {
  font-style: normal;
}

.footer-title {
  margin-top: 0;
  color: #fff;
  font-size: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.9rem 0 1.6rem;
  text-align: center;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-grid:not(.contact-grid-single) {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid-two {
    grid-template-columns: repeat(2, minmax(220px, 300px));
  }

  .about-row,
  .about-row-reverse {
    grid-template-columns: 1fr;
  }

  .about-row-reverse .about-media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .logo-image {
    height: 36px;
    max-width: 180px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.9rem 4%;
  }

  .shop-grid,
  .contact-grid:not(.contact-grid-single),
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-two {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 22rem;
    justify-items: center;
    text-align: center;
  }

  .footer-grid-two section {
    text-align: center;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
