/* Template 7 - Nordic Frost / Scandinavian Minimalism */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Karla:wght@300;400;500;600;700&display=swap');

:root {
  --frost-white: #fafbfc;
  --ice-blue: #e8f4f8;
  --glacier: #a8d5e5;
  --nordic-gray: #5a6c7d;
  --deep-fjord: #2c3e50;
  --pine-green: #1e5045;
  --accent-copper: #b87333;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Karla', sans-serif;
  line-height: 1.75;
  color: var(--deep-fjord);
  background: var(--frost-white);
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Header - Airy with bottom border */
.site-header {
  background: var(--frost-white);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--ice-blue);
  transition: box-shadow 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
}

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

.site-logo a {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-fjord);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.site-logo a:hover {
  color: var(--pine-green);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.site-nav a {
  color: var(--nordic-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pine-green);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--pine-green);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section - Clean and spacious */
.section.head {
  padding: 10rem 0 8rem;
  text-align: left;
  background: linear-gradient(180deg, var(--ice-blue) 0%, var(--frost-white) 100%);
  position: relative;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23a8d5e5" stroke-width="0.5" opacity="0.3"/></svg>') center/contain no-repeat;
  opacity: 0.5;
}

.section.head h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-fjord);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 700px;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--nordic-gray);
  max-width: 550px;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section header {
  text-align: left;
  margin-bottom: 4rem;
  max-width: 600px;
}

.section header h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-fjord);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent-copper);
}

.section header p {
  font-size: 1.05rem;
  color: var(--nordic-gray);
  margin-top: 1.5rem;
}

/* Footer - Clean horizontal */
.footer {
  background: var(--deep-fjord);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 4rem;
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

.footer-tagline {
  color: var(--glacier);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--glacier);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--frost-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 213, 229, 0.2);
}

.copyright a {
  color: var(--nordic-gray);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: var(--deep-fjord);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
