/* Base Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .5rem 0; }
p { margin: 0 0 1rem 0; }

/* Layout */
.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0;
}

.brand { display: flex; align-items: center; gap: .8rem; }
.logo { width: 40px; height: 40px; }

.brand-title { font-size: 1.25rem; font-weight: 700; letter-spacing: .2px; }
.brand-tagline { margin: 0; color: #666; font-size: .9rem; }

.site-nav a {
  text-decoration: none; color: #111; margin-left: 1rem; font-weight: 600;
}
.site-nav a:hover { text-decoration: underline; }

.hero {
  background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
  border-bottom: 1px solid #f0ede9;
}
.hero-inner { padding: 4rem 0 3rem; }
.hero h2 { font-size: clamp(1.8rem, 2.2vw + 1.2rem, 2.6rem); margin-bottom: .6rem; }
.hero p { color: #333; max-width: 60ch; }

.section { padding: 2.5rem 0; }
.section.alt { background: #fcfcfc; border-top: 1px solid #f4f4f4; border-bottom: 1px solid #f4f4f4; }

.key-points { margin: 1rem 0 0; padding-left: 1.1rem; }
.key-points li { margin: .35rem 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  border: 1px solid #eee; border-radius: 10px; padding: 1rem; background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.05); transform: translateY(-2px); }
.card h4 { margin-bottom: .25rem; }

.contact-grid {
  display: grid; gap: 1rem; grid-template-columns: 1.3fr 1fr;
}
.compliance {
  border: 1px solid #eee; border-radius: 10px; padding: .9rem; background: #fff;
}
.compliance h5 { margin: 0 0 .5rem 0; font-size: 1rem; }

.site-footer { border-top: 1px solid #eee; padding: 1.2rem 0; text-align: center; color: #666; }

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