:root {
  --cream: #faf5ec;
  --sand: #f1e7d6;
  --terracotta: #c4704f;
  --terracotta-dark: #a85a3d;
  --sage: #8a9a7b;
  --sage-dark: #6e7f60;
  --ink: #3f3a33;
  --gold: #c9a86a;
}

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

body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

h1, h2, h3, .logo { font-family: 'Cormorant Garamond', serif; }

/* ---------- Nav ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo .flower { color: var(--sage-dark); }

nav ul { display: flex; gap: 2rem; list-style: none; }

nav a:not(.logo):not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a:not(.logo):not(.btn):hover,
nav a.active { color: var(--terracotta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn:hover { background: var(--terracotta-dark); }

.btn.alt { background: var(--sage); }
.btn.alt:hover { background: var(--sage-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 230px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/hero-tiles-pattern.jpg') center/720px repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 245, 236, 0.55);
}

.hero-inner { position: relative; color: var(--ink); max-width: 720px; padding: 2rem; }

.hero-title {
  display: inline-block;
  border: 2px solid var(--terracotta-dark);
  border-radius: 4px;
  padding: 1rem 2.4rem 1.2rem;
  background: rgba(250, 245, 236, 0.6);
}

.hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--terracotta-dark);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(250, 245, 236, 0.9);
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--sage-dark);
  letter-spacing: 0.18em;
  display: block;
  margin-top: 0.3rem;
}

.hero p { font-size: 1.2rem; margin: 1.2rem 0 2rem; }

.script-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

/* ---------- Sections ---------- */
section { padding: 4.5rem 2rem; }

.container { max-width: 1080px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 2.5rem; }

.section-title h2 { font-size: 2.4rem; font-weight: 600; }

.section-title .divider {
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 0.9rem auto 0;
}

.alt-bg { background: var(--sand); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }

.card {
  background: #fff;
  border-radius: 14px;
  padding: 2.2rem;
  box-shadow: 0 4px 18px rgba(63, 58, 51, 0.07);
  text-align: center;
}

.card .tile-icon { font-size: 2.4rem; margin-bottom: 0.8rem; }

.card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; color: var(--terracotta-dark); }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.split img { width: 100%; border-radius: 16px; box-shadow: 0 8px 28px rgba(63, 58, 51, 0.15); }

.split h2 { font-size: 2.2rem; margin-bottom: 1rem; }

@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* ---------- Instructors ---------- */
.instructor { max-width: 760px; margin: 0 auto 3rem; text-align: center; }

.instructor img.portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 4px solid var(--gold);
  display: block;
}

.instructor .portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin: 0 auto 1.2rem;
  border: 4px solid var(--gold);
}

.instructor h3 { font-size: 1.8rem; color: var(--terracotta-dark); }

.instructor .role { color: var(--sage-dark); font-style: italic; margin-bottom: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--sage);
  color: #fff;
}

.cta-band h2 { font-size: 2.2rem; margin-bottom: 0.6rem; }

.cta-band .btn { background: #fff; color: var(--sage-dark); margin-top: 1.4rem; }

/* ---------- Booking ---------- */
.booking-frame { background: #fff; border-radius: 14px; box-shadow: 0 4px 18px rgba(63,58,51,0.07); overflow: hidden; }

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--ink);
  color: var(--sand);
  font-size: 0.9rem;
}

footer .logo { color: var(--gold); display: inline-block; margin-bottom: 0.5rem; }

footer a { color: var(--gold); }
