/* ---------- Design tokens ---------- */
:root {
  --bg: #faf6f0;
  --text: #2b1d14;
  --muted: #8a6f4d;
  --accent: #b8531a;
  --accent-dark: #8f3f12;
  --border: #e8dcc8;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --max-width: 820px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;
  --space-5: 6rem;

  --transition: 250ms ease;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; height: auto; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.00rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--space-2); }
h3 { font-size: 1.25rem; margin-bottom: var(--space-1); }

p { margin-bottom: var(--space-2); }

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 1.5rem) 
}

/* ---------- Header ---------- */
.site-header {
  padding: var(--space-3) 0 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-block;
}

.site-nav {
  margin-top: var(--space-3);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}

.site-nav ul {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: var(--space-2);
}

.site-nav a {
  font-size: 0.95rem;
  position: relative;
}

.site-nav a.active {
  color: var(--accent);
}

.lang-switch {
  display: flex;
  gap: var(--space-1);
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: var(--space-2);
}

.lang-switch a.active {
  color: var(--text);
  font-weight: 600;
}

.lang-switch .sep {
  color: var(--border);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: var(--space-5);
  padding-bottom: var(--space-4);
  text-align: center;
}

.hero .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.hero h1 { margin-bottom: var(--space-2); }

.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto var(--space-3);
}

.hero .cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition);
}
.hero .cta:hover {
  background: var(--accent-dark);
  color: var(--bg);
}

.home-image {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.home-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--border);
}


/* ---------- Footer ---------- */
/* ---------- Footer ---------- */
.site-footer {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  padding-bottom: var(--space-3);
  background: #1a1410;            /* near-black, with a hint of warmth to fit the autumn palette */
  color: #b5a896;                  /* warm muted beige — readable on dark bg */
  font-size: 0.9rem;
  border-top: none;
}

.site-footer a {
  color: #e8dcc8;                  /* lighter than body for emphasis */
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-info {
  text-align: center;
  margin-bottom: var(--space-3);
}

.footer-info p {
  margin-bottom: var(--space-1);
}

.footer-info p:last-child {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(232, 220, 200, 0.12);   /* faint separator */
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #b5a896;
  transition: color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Generic page ---------- */
.page {
  padding-top: var(--space-4);
  padding-bottom: var(--space-3);
}

.page h1 {
  margin-bottom: var(--space-3);
}

.page .lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.page h2 {
  margin-top: var(--space-3);
}

/* ---------- Contact list ---------- */
.contact-list {
  margin-top: var(--space-3);
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.contact-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 100px;
}

/* ---------- Card grid (workshops) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.card {
  display: block;
  color: var(--text);
}

.card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-2);
  background: var(--border);
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.card:hover .card-image img {
  transform: scale(1.12);
  filter: brightness(1.21);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  transition: color var(--transition);
}

.card:hover h3 {
  color: var(--accent);
}

.card-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Workshop detail ---------- */
.detail {
  max-width: 720px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

.detail-header {
  margin-bottom: var(--space-3);
}

.detail-header .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.detail-header h1 {
  margin-bottom: var(--space-2);
}

.detail-header .lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 0;
}

.detail-image {
  margin: var(--space-3) 0 var(--space-4);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--border);
  border-radius: 5px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-body h2 {
  margin-top: var(--space-3);
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-2);
  margin: var(--space-3) 0;
  padding: var(--space-2) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.detail-meta dt {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.detail-meta dd {
  margin: 0;
  font-size: 1rem;
}

.detail-cta {
  margin-top: var(--space-4);
  text-align: center;
}

/* CTA button (reused on detail pages) */
.cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition);
}
.cta:hover {
  background: var(--accent-dark);
  color: var(--bg);
}

/* ---------- Form placeholder ---------- */
.form-placeholder {
  margin: var(--space-3) 0 var(--space-4);
  padding: var(--space-4) var(--space-2);
  border: 1px dashed var(--border);
  background: transparent;
  text-align: center;
  border-radius: 2px;
}

.form-placeholder-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-1);
}

.form-placeholder-note {
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Form embed (real, once added) ---------- */
.form-embed {
  margin: var(--space-3) 0 var(--space-4);
  width: 100%;
}

.form-embed iframe {
  width: 100%;
  min-height: 800px;
  border: 0;
  display: block;
}
