@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #1a2540;
  --color-primary-dark: #111827;
  --color-primary-mid: #243050;
  --color-sage: #7a9e7e;
  --color-sage-light: #9ab89e;
  --color-beige: #f5ede0;
  --color-beige-mid: #ede0cc;
  --color-toast: #b08060;
  --color-toast-light: #c99a72;
  --color-white: #ffffff;
  --color-text-main: #1a2540;
  --color-text-muted: #4a5568;
  --color-text-light: #718096;
  --color-border: #ddd5c8;
  --color-bg-section: #f8f4ef;
  --color-bg-dark: #1a2540;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', Arial, sans-serif;
  --max-width: 1200px;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(26,37,64,0.08);
  --shadow-card: 0 4px 24px rgba(26,37,64,0.12);
  --transition: 0.22s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-sage);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-toast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,37,64,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition);
}

.header-logo:hover {
  color: var(--color-sage-light);
}

.header-logo span {
  color: var(--color-sage);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-sage-light);
  border-bottom-color: var(--color-sage);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-top: 68px;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,37,64,0.85) 60%, rgba(122,158,126,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 32px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage-light);
  background: rgba(122,158,126,0.15);
  border: 1px solid rgba(122,158,126,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.hero-disclaimer {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 14px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-sage-light);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122,158,126,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-sage);
  color: var(--color-sage);
}

.btn-ghost {
  background: transparent;
  color: var(--color-sage);
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--color-sage);
}

.btn-ghost:hover {
  color: var(--color-toast);
  border-bottom-color: var(--color-toast);
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}

.section--beige {
  background: var(--color-bg-section);
}

.section--dark {
  background: var(--color-primary);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: rgba(255,255,255,0.85);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--beige-mid {
  background: var(--color-beige-mid);
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-toast);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  max-width: 600px;
  font-size: 1.05rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--color-sage);
  border-radius: 2px;
  margin: 16px 0 0;
}

/* ── GRID ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── CARDS ── */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card--beige {
  background: var(--color-bg-section);
  border-color: var(--color-beige-mid);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(122,158,126,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-sage);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 12px;
}

/* ── LISTICLE ITEMS ── */
.listicle-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.listicle-item:last-child {
  border-bottom: none;
}

.listicle-item.reverse {
  direction: rtl;
}

.listicle-item.reverse > * {
  direction: ltr;
}

.listicle-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-beige-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.listicle-text h3 {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.listicle-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--color-sage);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--color-bg-section);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.65;
}

/* ── TABLE ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.info-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  text-align: left;
}

.info-table th:first-child { border-radius: var(--radius) 0 0 0; }
.info-table th:last-child  { border-radius: 0 var(--radius) 0 0; }

.info-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
}

.info-table tr:nth-child(even) td {
  background: var(--color-bg-section);
}

.info-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius); }
.info-table tr:last-child td:last-child  { border-radius: 0 0 var(--radius) 0; }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── ACCORDION / FAQ ── */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child { border-bottom: none; }

.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--color-primary);
  text-align: left;
  transition: background var(--transition);
}

.accordion-btn:hover {
  background: var(--color-bg-section);
}

.accordion-btn .acc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.accordion-btn .acc-icon::before,
.accordion-btn .acc-icon::after {
  content: '';
  position: absolute;
  background: var(--color-sage);
  border-radius: 2px;
}

.accordion-btn .acc-icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px;
}

.accordion-btn .acc-icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px;
  transition: opacity var(--transition);
}

.accordion-item.open .accordion-btn .acc-icon::after {
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-sage-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* ── TAG LIST ── */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-toast);
  background: rgba(176,128,96,0.1);
  border: 1px solid rgba(176,128,96,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── IMAGE FRAME ── */
.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(122,158,126,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.img-frame--tall img {
  aspect-ratio: 3/4;
}

.img-frame--wide img {
  aspect-ratio: 16/9;
}

/* ── ORNAMENT / DECORATIVE ── */
.section-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-ornament .line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.section-ornament .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sage);
}

.bg-pattern {
  background-image: radial-gradient(circle, rgba(122,158,126,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-sage);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-sage);
}

.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-toast);
  margin-bottom: 6px;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background: var(--color-bg-section);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-sage);
  background: var(--color-white);
}

.form-field textarea { min-height: 140px; }

.form-disclaimer {
  background: var(--color-beige);
  border: 1px solid var(--color-beige-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.contact-info {
  padding-top: 8px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(122,158,126,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-sage);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-beige);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,128,96,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,128,96,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-pin {
  width: 40px;
  height: 40px;
  background: var(--color-sage);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(122,158,126,0.4);
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border-radius: 50%;
}

.map-label {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── THANK YOU ── */
.thankyou-wrap {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  margin-top: 68px;
  background: var(--color-bg-section);
}

.thankyou-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 64px 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.check-icon {
  width: 72px;
  height: 72px;
  background: rgba(122,158,126,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.check-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-sage);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thankyou-box p {
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ── POLICY PAGES ── */
.policy-wrap {
  margin-top: 68px;
  padding: 64px 0 80px;
}

.policy-hero {
  background: var(--color-primary);
  padding: 56px 0 48px;
  margin-top: 68px;
}

.policy-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.policy-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.policy-body {
  padding: 64px 0 80px;
}

.policy-toc {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.policy-toc h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.policy-toc ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-toc a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.policy-toc a:hover { color: var(--color-sage); }

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-sage);
  display: inline-block;
}

.policy-section h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  margin-top: 24px;
}

.policy-section ul,
.policy-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }

.policy-section li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.highlight-box {
  background: rgba(122,158,126,0.08);
  border: 1px solid rgba(122,158,126,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}

.highlight-box h3 {
  color: var(--color-sage);
  margin-bottom: 12px;
  font-size: 1rem;
}

.refund-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.refund-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.refund-step-num {
  counter-increment: step;
  width: 36px;
  height: 36px;
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.refund-step-body h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.refund-step-body p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  display: block;
}

.footer-brand .brand-name span {
  color: var(--color-sage);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-edu-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage-light);
  background: rgba(122,158,126,0.12);
  border: 1px solid rgba(122,158,126,0.25);
  padding: 5px 12px;
  border-radius: 100px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--color-sage-light); }

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-hours {
  margin-top: 10px;
}

.footer-hours span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom .edu-notice {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.25);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--color-primary-dark);
  border-top: 2px solid var(--color-sage);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  flex: 1;
  min-width: 240px;
  line-height: 1.6;
}

.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-accept {
  background: var(--color-sage);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background: var(--color-sage-light);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.cookie-btn-more {
  background: transparent;
  color: var(--color-sage-light);
  text-decoration: underline;
  font-size: 0.82rem;
  padding: 9px 4px;
  cursor: pointer;
  border: none;
}

/* ── ABOUT ── */
.about-hero {
  background: var(--color-primary);
  padding: 80px 0 64px;
  margin-top: 68px;
}

.about-hero h1 { color: var(--color-white); margin-bottom: 16px; }

.about-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-size: 1.05rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.principle-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.principle-card:hover {
  box-shadow: var(--shadow-card);
}

.principle-icon {
  width: 56px;
  height: 56px;
  background: rgba(122,158,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.principle-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-sage);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 { margin-bottom: 12px; font-size: 1.05rem; }

/* ── CONTEXT BOX ── */
.context-box {
  background: var(--color-beige);
  border: 1px solid var(--color-beige-mid);
  border-left: 4px solid var(--color-toast);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-top: 56px;
}

.context-box h3 {
  font-size: 1rem;
  color: var(--color-toast);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  font-weight: 600;
}

.context-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* ── LISTS ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.check-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(122,158,126,0.15);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  border: 2px solid var(--color-sage);
}

.dot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.dot-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.dot-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-toast);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── IMAGE GALLERY ROW ── */
.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.img-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.img-duo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── FULL-WIDTH BANNER ── */
.full-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.full-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.full-banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0.82;
}

.full-banner-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
}

.full-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.full-banner p {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  font-size: 1.05rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-right: none;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .nav-list { display: none; }
  .nav-toggle { display: flex; }

  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--color-primary-dark);
    padding: 24px 32px 32px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  .nav-list.open a {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    padding: 4px 0;
  }

  .section { padding: 56px 0; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr; }

  .listicle-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .listicle-item.reverse { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-form { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .principles-grid { grid-template-columns: 1fr; }

  .stat-strip { grid-template-columns: 1fr 1fr; }

  .img-row { grid-template-columns: 1fr; }
  .img-duo { grid-template-columns: 1fr; }

  .header-inner { padding: 0 20px; }

  .cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .cookie-banner-btns { width: 100%; }

  .thankyou-box { padding: 40px 24px; }

  .hero-content { padding: 60px 20px; }

  .about-hero { padding: 56px 0 48px; }

  .policy-hero { padding: 40px 0 32px; }
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--color-bg);
}

.policy-table th {
  background: var(--color-primary);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--color-accent-green);
}

.policy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-body);
  vertical-align: top;
  line-height: 1.6;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}

.policy-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.policy-step:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-accent-green);
  color: var(--color-accent-green);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  margin: 0;
  line-height: 1.7;
}

.disclaimer-highlight {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent-green);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 32px 0;
}

.disclaimer-highlight h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 16px;
}

.disclaimer-highlight p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin: 0 0 12px;
}

.disclaimer-highlight p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .policy-table { font-size: 0.82rem; }
  .policy-table th, .policy-table td { padding: 10px 12px; }
  .policy-step { flex-direction: column; gap: 14px; padding: 24px 0; }
  .step-number { width: 38px; height: 38px; font-size: 1rem; }
  .disclaimer-highlight { padding: 20px 20px; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
}
