:root {
  --bg: #f8f3eb;
  --section: #fffaf2;
  --soft: #eef2e8;
  --card: #ffffff;

  --white: #ffffff;
  --sage: #5e7355;
  --sage-dark: #40583b;
  --gold: #c8943b;
  --gold-light: #d9ae62;

  --text: #2f342d;
  --muted: #6e7068;
  --border: rgba(94, 115, 85, 0.18);
  --shadow: rgba(64, 88, 59, 0.12);
}

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

body {
  background: var(--section);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 7%;
  background: #24352e;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(64, 88, 59, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.logo-title {
  font-family: "Goudy Bookletter 1911", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a.active {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--white);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 88vh;
  background: url("../images/hero-image.png") center/cover no-repeat;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 20px 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(248, 243, 235, 0.88),
    rgba(248, 243, 235, 0.55)
  );
}

.hero-content {
  position: relative;
  max-width: 850px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1,
.section h2,
.card h3 {
  font-family: Georgia, serif;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--sage-dark);
  margin-bottom: 18px;
}

.hero h1,
h2 span {
  color: var(--gold);
}

.hero p {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 700;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-hero {
  padding: 110px 7% 80px;
  background:
    linear-gradient(rgba(248, 243, 235, 0.92), rgba(248, 243, 235, 0.92)),
    url("../images/hero-image.jpg") center/cover no-repeat;
  text-align: center;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sage-dark);
  margin-bottom: 22px;
}

.section p {
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
}

/* BUTTONS */

.hero-buttons,
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  background: var(--sage);
  color: white;
}

.btn.primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  color: var(--white);
  background: var(--gold);
}

.btn.secondary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn.gold {
  background: var(--gold);
  color: white;
}

.btn.gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.button-classes {
  margin-top: 30px;
}
/* LAYOUT */

.section {
  padding: 50px 7%;
  background: var(--section);
}

.soft {
  background: var(--soft);
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.container.narrow {
  max-width: 820px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.two-cards {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--card);
  padding: 34px 28px;
  border-radius: 18px;
  border: 1px solid rgba(200, 148, 59, 0.22);
  box-shadow: 0 10px 30px var(--shadow);
}

.card h3 {
  color: var(--sage-dark);
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.card p {
  font-size: 0.98rem;
}

.price-card .price {
  color: var(--gold);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* SPLIT SECTIONS */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2.5rem;
}

.split-content::before,
.split-content::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
}

.split-content::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.split-content::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.split-image {
  display: flex;
  justify-content: center;
}
.split-content h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.8rem;
}

.split-content h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold);
  border-radius: 999px;
}

.split-image img {
  width: 100%;
  max-width: 440px;
  height: auto;

  border-radius: 24px;
  border: 1px solid rgba(94, 115, 85, 0.2);
  box-shadow: 0 18px 40px var(--shadow);
}
.split-image-shop img {
  border-radius: 20px;
  border: 1px solid rgba(94, 115, 85, 0.2);
  box-shadow: 0 18px 40px var(--shadow);
}

/* SERVICES PAGE */

.service-box {
  max-width: 650px;
  margin: 35px auto;
  background: white;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(200, 148, 59, 0.22);
  box-shadow: 0 10px 30px var(--shadow);
  text-align: left;
}

.service-box h3 {
  color: var(--sage-dark);
  margin-bottom: 18px;
}

.service-box ul {
  padding-left: 22px;
}

.service-box li {
  color: var(--muted);
  margin-bottom: 10px;
}

.price-banner {
  display: inline-block;

  margin-top: 24px;
  padding: 8px 18px;

  background: rgba(212, 182, 129, 0.15);
  color: var(--gold);

  border: 2px solid var(--sage);
  border-left-width: 5px;

  border-radius: 8px;

  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CONTACT PAGE */

.hours {
  max-width: 650px;
  margin: 30px auto 0;
  background: white;
  padding: 20px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px var(--shadow);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--muted);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row strong {
  color: var(--sage-dark);
}

.map-container {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* CTA + FOOTER */

.cta {
  background: var(--sage);
  text-align: center;
}

.cta h2,
.cta p {
  color: white;
}

/* ===========================
   Footer
=========================== */
.footer-column-title {
  color: var(--gold) !important;
}
.footer {
  padding: 40px 6% 18px;
  background: #25352f;
  color: rgba(255, 255, 255, 0.78);
}

.footer-container {
  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);

  align-items: start;
}

/* ---------- Brand ---------- */

.footer-brand {
  max-width: 480px;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-logo {
  width: 300px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
  max-width: 400px;

  line-height: 1.65;
  font-size: 0.95rem;

  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Columns ---------- */

.footer-column h2 {
  margin: 0 0 12px;

  color: #fff;

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Navigation ---------- */

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  width: fit-content;

  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #d4b681;
  transform: translateX(4px);
}

/* ---------- Address ---------- */

.footer address {
  margin: 0 0 12px;

  font-style: normal;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.76);
}

.footer-contact-link {
  display: inline-block;

  color: var(--gold);
  text-decoration: none;
  font-weight: 600;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #edd7b3;
  transform: translateX(4px);
}

/* ---------- Bottom ---------- */

.footer-bottom {
  width: min(1120px, 100%);
  margin: 30px auto 0;
  padding-top: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #d4b681;
}

/* ---------- Accessibility ---------- */

.footer a:focus-visible {
  outline: 2px solid #d4b681;
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- Tablet ---------- */

@media (max-width: 900px) {
  .footer {
    padding: 38px 24px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1/-1;
    max-width: 520px;
  }

  .footer-logo {
    width: 180px;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 650px) {
  .footer {
    padding: 34px 20px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo-wrap {
    display: flex;
    justify-content: center;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-column {
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav a {
    width: auto;
  }

  .footer address {
    text-align: center;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 14px;

    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Remove sideways movement on centred links */

  .footer-nav a:hover,
  .footer-nav a:focus-visible,
  .footer-contact-link:hover,
  .footer-contact-link:focus-visible {
    transform: none;
  }
}
/* RESPONSIVE */

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    right: 7%;
    background: var(--section);
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .nav.active {
    display: flex;
  }

  .cards,
  .two-cards,
  .split {
    grid-template-columns: 1fr;
  }

  .split-content h2,
  .split-content p {
    text-align: center;
    margin-left: auto;
  }
  .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-wrap span {
    font-size: 1.1rem;
  }

  .nav-logo {
    width: 48px;
    height: 48px;
  }

  .hours-row {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .service-box {
    padding: 26px;
  }
}
.class-schedule-img {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
  border: 1px solid rgba(200, 148, 59, 0.22);
}
