/* Côté Hannut — minimal premium styles */

:root {
  --ink: #0F0F0F;
  --white: #FFFFFF;
  --cream: #FAF8F4;
  --terracotta: #C8553D;
  --sage: #5C6B5A;
  --text: #0F0F0F;
  --text-secondary: #6B6B6B;
  --text-muted: #9B9B9B;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html, body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
}

.container--wide {
  max-width: 960px;
}

/* Header / nav */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.brand .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-left: -4px;
  margin-bottom: -2px;
}

.brand:hover {
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  color: var(--text-secondary);
}

.nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

/* Locale toggle */
.locale-toggle {
  display: inline-flex;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
}

.locale-toggle button {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
}

.locale-toggle button.active {
  background: var(--ink);
  color: var(--white);
}

/* Hero */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px 64px;
  text-align: center;
}

.hero-logo {
  width: 64px;
  height: 64px;
  background: var(--ink);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 32px;
  position: relative;
}

.hero-logo::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero p.lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.85;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-strong);
}

/* Features */
.features {
  padding: 80px 24px;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
}

.feature .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.feature h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Section block */
.section {
  padding: 80px 24px;
}

.section--cream {
  background: var(--cream);
}

.section h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Legal pages */
.legal {
  background: var(--white);
  min-height: 100vh;
}

.legal .container {
  padding-top: 48px;
  padding-bottom: 96px;
}

.legal h1 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.legal .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal h2 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}

.legal ul {
  list-style: none;
  margin-bottom: 16px;
}

.legal li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  padding-left: 16px;
  margin-bottom: 6px;
  position: relative;
}

.legal li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: bold;
}

.legal .back {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: inline-block;
}

.legal .back:hover {
  color: var(--ink);
}

/* Locale visibility */
[data-locale='fr'] .nl-only,
[data-locale='nl'] .fr-only {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 24px;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer .nav a:hover {
  color: var(--white);
}

.site-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 24px;
  text-align: center;
  width: 100%;
}

/* Store badges */
.store-badges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.store-badges--secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.store-badges .small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.store-badges .big {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
