@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #004D40;
  --gold: #B29562;
  --grey: #757575;
  --ivory: #F5F5DC;
  --white: #ffffff;
  --dark: #1a1a1a;
  --light-bg: #f9f9f0;
  --border: #e0ddd0;
  --shadow: 0 4px 24px rgba(0,77,64,0.10);
  --shadow-lg: 0 8px 40px rgba(0,77,64,0.16);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--ivory);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }

p { font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.7; }

.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.container-wide { max-width: 1340px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ========== NAVIGATION ========== */

.site-nav {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-logo {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-brand-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 14px;
}

.nav-mobile ul li a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: color 0.25s;
}

.nav-mobile ul li a:hover { color: var(--gold); }

/* ========== SECTIONS ========== */

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title { margin-bottom: 20px; }
.section-intro { font-size: 1.12rem; color: var(--grey); max-width: 640px; line-height: 1.7; margin-bottom: 0; }

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
  border-radius: 2px;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* ========== HERO ========== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center center / cover no-repeat;
  opacity: 0.32;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,77,64,0.88) 0%, rgba(0,30,20,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 24px;
}

.hero-content .section-label { color: var(--gold); }

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-block;
  background: rgba(178,149,98,0.18);
  border: 1px solid rgba(178,149,98,0.45);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
}

/* ========== BUTTONS ========== */

.btn-primary-site {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn-primary-site:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-outline-site {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.btn-outline-site:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ========== CARDS ========== */

.panel-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 30px;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 3px solid var(--gold);
}

.panel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.panel-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,77,64,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.panel-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.panel-card p { font-size: 0.97rem; color: var(--grey); margin-bottom: 0; }

/* ========== BLOG CARDS ========== */

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 28px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card p { font-size: 0.93rem; color: var(--grey); margin-bottom: 20px; }

.blog-card .read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s, gap 0.25s;
}

.blog-card .read-more:hover { color: var(--gold); gap: 10px; }

.blog-card .read-more::after {
  content: '→';
  font-size: 0.9rem;
}

/* ========== QUOTE PANEL ========== */

.quote-panel {
  background: var(--gold);
  padding: 56px 60px;
  border-radius: var(--radius);
  position: relative;
}

.quote-panel::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: -10px;
  left: 30px;
  line-height: 1;
}

.quote-panel blockquote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--primary);
  line-height: 1.65;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.quote-panel cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,77,64,0.75);
  font-style: normal;
}

/* ========== TWO COLUMN ========== */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-img { position: relative; }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.two-col-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* ========== DIAGRAM / CYCLE ========== */

.habit-cycle {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
}

.habit-cycle-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.habit-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 4px;
  border-left: 4px solid var(--gold);
  text-align: left;
}

.habit-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
}

.habit-step-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.habit-step-text p { font-size: 0.88rem; color: var(--grey); margin: 0; }

.habit-arrow {
  text-align: center;
  color: var(--gold);
  font-size: 1.3rem;
  padding: 2px 0;
}

/* ========== BACKGROUND PANELS ========== */

.bg-primary { background-color: var(--primary); }
.bg-ivory { background-color: var(--ivory); }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light-bg); }
.bg-gold-light { background-color: rgba(178,149,98,0.10); }

.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-grey { color: var(--grey) !important; }
.text-primary { color: var(--primary) !important; }

/* ========== GALLERY MINI ========== */

.gallery-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 44px; }
.gallery-trio-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-trio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-trio-item:hover img { transform: scale(1.05); }

/* ========== FAQ ========== */

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary);
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  transition: background 0.25s, transform 0.25s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 22px;
  display: none;
}

.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--grey); font-size: 0.97rem; margin: 0; }

/* ========== STAT STRIP ========== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
}

/* ========== TIMELINE ========== */

.timeline { position: relative; padding-left: 36px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item p { font-size: 0.93rem; color: var(--grey); margin: 0; }

/* ========== MATRIX TABLE ========== */

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.info-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: #333;
  vertical-align: top;
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--light-bg); }

/* ========== GLOSSARY RAIL ========== */

.glossary-rail {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--white);
  position: sticky;
  top: 90px;
}

.glossary-rail h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(178,149,98,0.35);
}

.glossary-term {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.glossary-term:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.glossary-term dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.glossary-term dd { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }

/* ========== DISCLAIMER / WARNING BLOCK ========== */

.disclaimer-box {
  background: var(--ivory);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.disclaimer-box .disclaimer-header {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-box .disclaimer-header::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.disclaimer-box p { font-size: 0.95rem; color: #444; }
.disclaimer-box ul { padding-left: 1.4rem; }
.disclaimer-box ul li { font-size: 0.93rem; color: #444; margin-bottom: 6px; }

/* ========== CTA SECTION ========== */

.cta-section {
  background: var(--primary);
  text-align: center;
  padding: 90px 24px;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 520px; margin: 0 auto 36px; }

/* ========== POLICY PAGES ========== */

.policy-header {
  background: var(--primary);
  padding: 70px 24px 60px;
  text-align: center;
}

.policy-header h1 { color: var(--white); margin-bottom: 12px; }
.policy-header p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 24px;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px; }
.policy-content p { color: #444; }
.policy-content ul, .policy-content ol { margin-bottom: 1.2rem; }
.policy-content ul li, .policy-content ol li { color: #444; }

.policy-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: block;
}

/* ========== CONTACT PAGE ========== */

.contact-info-block {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 44px 40px;
  height: 100%;
  color: var(--white);
}

.contact-info-block h3 { color: var(--gold); margin-bottom: 28px; font-size: 1.15rem; }

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(178,149,98,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.6;
}

.contact-info-item p strong { color: var(--white); display: block; margin-bottom: 2px; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }

.contact-form-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.contact-form-block h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.15rem; }

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-control-site {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lora', Georgia, serif;
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-control-site:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,77,64,0.1);
}

textarea.form-control-site { resize: vertical; min-height: 130px; }

/* ========== ABOUT PAGE ========== */

.about-hero {
  background: var(--primary);
  padding: 80px 24px 70px;
}

.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.1rem; }

/* ========== BLOG INNER ========== */

.blog-hero {
  background: var(--primary);
  padding: 70px 24px 60px;
}

.blog-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 14px; }
.blog-hero p { color: rgba(255,255,255,0.75); max-width: 640px; }

.blog-inner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.blog-meta-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
}

.blog-meta-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.blog-body h2 { margin-top: 48px; margin-bottom: 16px; }
.blog-body h3 { margin-top: 32px; margin-bottom: 12px; color: var(--primary); }
.blog-body p { color: #333; margin-bottom: 1.3rem; }
.blog-body ul, .blog-body ol { margin-bottom: 1.3rem; }
.blog-body ul li, .blog-body ol li { color: #333; }

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  transition: gap 0.25s;
}

.back-to-blog::before { content: '←'; }
.back-to-blog:hover { gap: 10px; color: var(--gold); }

/* ========== THANK YOU ========== */

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ivory);
  padding: 80px 24px;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,77,64,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thank-you-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  padding-top: 72px;
}

.footer-brand { margin-bottom: 28px; }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 0;
}

.footer-edu-note {
  display: inline-block;
  background: rgba(178,149,98,0.14);
  border: 1px solid rgba(178,149,98,0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-top: 16px;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item { margin-bottom: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); display: flex; gap: 8px; }
.footer-contact-label { color: rgba(255,255,255,0.4); font-size: 0.78rem; font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

.footer-hours p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }

.footer-edu-msg {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ========== COOKIE BANNER ========== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 3px solid var(--gold);
  z-index: 9999;
  padding: 20px 24px;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-banner.show { display: block; }

.cookie-banner-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}

.cookie-btn-accept { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.cookie-btn-accept:hover { background: transparent; color: var(--gold); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cookie-btn-learn { background: transparent; color: var(--gold); border-color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; }
.cookie-btn-learn:hover { background: var(--gold); color: var(--primary); }

/* ========== UTILITY ========== */

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.numbered-section { counter-reset: section; }
.numbered-section h2::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero) ". ";
  color: var(--gold);
  font-size: 0.8em;
  margin-right: 6px;
}

.key-fact-box {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.key-fact-box p { font-size: 0.97rem; color: #333; margin: 0; font-style: italic; }

.principle-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.principle-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.principle-card p { font-size: 0.92rem; color: var(--grey); margin: 0; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col-img::after { display: none; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .gallery-trio { grid-template-columns: 1fr 1fr; }
  .gallery-trio-item:last-child { display: none; }
  .quote-panel { padding: 36px 28px; }
  .contact-info-block, .contact-form-block { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .hero-section { min-height: 70vh; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.65rem; }
  .gallery-trio { grid-template-columns: 1fr; }
  .gallery-trio-item:last-child { display: block; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .quote-panel::before { font-size: 5rem; }
}
