@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy: #0F1C3F;
  --linen-base: #F5F2EB;
  --header-bg: #FFFFFF;
  --paper: rgba(255, 255, 255, 0.72);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --border-soft: rgba(15, 28, 63, 0.12);
  --border-mid: rgba(15, 28, 63, 0.18);
  --text-muted: rgba(15, 28, 63, 0.68);
  --shadow-soft: 0 10px 30px rgba(15, 28, 63, 0.06);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background-color: var(--linen-base);
  background-image:
    linear-gradient(90deg, rgba(15, 28, 63, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(15, 28, 63, 0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

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

h1, h2, h3, .brand-text, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--navy);
}

a {
  color: var(--navy);
  text-decoration: none;
}

.site-header {
  padding: 0.9rem 2rem;
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-soft);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  text-align: center;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
}

.site-nav a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.site-nav a:hover {
  opacity: 0.65;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  max-width: 840px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.08;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 46rem;
}

.btn-brand {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background-color: var(--navy);
  color: var(--linen-base);
}

.featured-categories {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2rem 4rem;
  flex-wrap: wrap;
}

.category-card {
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(15, 28, 63, 0.15);
  background-color: rgba(245, 242, 235, 0.6);
  backdrop-filter: blur(2px);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.45);
}

.category-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.95rem;
  font-weight: 300;
}

.info-section {
  padding: 1rem 2rem 5rem;
}

.info-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.site-footer {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(15, 28, 63, 0.1);
  margin-top: 2rem;
}

.site-footer p {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 980px) {
  .site-header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-header-left,
  .site-nav {
    justify-content: center;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .brand-text {
    order: -1;
  }

  .site-logo {
    height: 54px;
  }

  .hero {
    padding-top: 4rem;
  }

  .category-card {
    max-width: 100%;
  }
}