

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:        #F5F0E8;
  --bg-alt:    #EDE8DE;
  --bg-dark:   #1A1916;
  --ink:       #1A1916;
  --ink-muted: #6B6152;
  --sage:      #7A8B6D;
  --amber:     #C09A6A;
  --border:    #DDD6C8;
  --cream:     #FDFAF5;

  --f-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --w:  1140px;
  --px: 1.5rem;

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2.5rem;
  --s5: 4rem;
  --s6: 6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img     { display: block; max-width: 100%; }
a       { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, ol  { list-style: none; }

.container {
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--px);
}

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p  { font-size: 1rem; line-height: 1.75; color: var(--ink-muted); }
p + p { margin-top: var(--s2); }

.label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--s2);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: var(--s2) 0 var(--s3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.ph {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph span {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--border);
  user-select: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}
.brand-logo  { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name  {
  font-family: var(--f-head);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.page-hero {
  padding: var(--s6) 0 var(--s5);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-top: var(--s1); }

.content-section {
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--border);
}
.content-section:last-of-type { border-bottom: none; }

.content-block { max-width: 720px; }
.content-block h2 { margin-bottom: var(--s2); }

.policy-body {
  padding: var(--s6) 0;
  min-height: 320px;
  border-bottom: 1px solid var(--border);
}
.policy-body .placeholder-text {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--border);
  margin-top: var(--s2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}
.about-ph {
  aspect-ratio: 4 / 3;
  width: 100%;
}
.about-text { display: flex; flex-direction: column; gap: var(--s2); }
.about-text h2 { margin-bottom: 0; }

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s4);
}
.teacher-card { display: flex; flex-direction: column; gap: var(--s2); }
.teacher-ph   { aspect-ratio: 3 / 4; width: 100%; }
.teacher-card h3 { font-size: 1.15rem; }

.site-footer {
  background: var(--bg-dark);
  padding: var(--s5) 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  text-align: center;
}
.brand--footer .brand-name { color: var(--cream); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem var(--s3);
}
.footer-nav a {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(253,250,245,0.45);
}
.footer-nav a:hover { color: var(--cream); }
.footer-copy {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(253,250,245,0.3);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: var(--s5);
}

.policy-section h2 {
  font-size: 1.4rem;
  margin-bottom: var(--s2);
  color: var(--ink);
}

.policy-section p {
  margin-bottom: var(--s2);
  line-height: 1.8;
}

.policy-section ul {
  margin-top: 1rem;
  margin-bottom: var(--s2);
}

.policy-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.policy-section a {
  color: var(--sage);
  text-decoration: underline;
}

.policy-section a:hover {
  color: var(--amber);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 1px solid #2E2B27;
  padding: var(--s3);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
  text-align: center;
  max-width: 100%;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  color: rgba(253,250,245,0.75);
  font-size: 0.9rem;
  margin: 0;
  max-width: 600px;
}
.cookie-banner__buttons {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn {
  padding: 0.6rem 1.8rem;
  font-size: 0.7rem;
}
.cookie-banner .btn-primary {
  background: var(--sage);
  color: var(--cream);
}
.cookie-banner .btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253,250,245,0.4);
}

@media (max-width: 768px) {
  .about-grid     { grid-template-columns: 1fr; }
  .teachers-grid  { grid-template-columns: 1fr; }
}
