:root {
  --color-bg: #fdf8ee;
  --color-bg-alt: #f5ead2;
  --color-teal: #1c6e6e;
  --color-teal-dark: #124f4f;
  --color-gold: #d79a2c;
  --color-gold-light: #f0c063;
  --color-text: #2b2620;
  --color-text-muted: #5a5348;
  --color-white: #fffdf7;
  --shadow: 0 10px 30px rgba(28, 110, 110, 0.12);
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-teal);
}

.container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-white);
  border-bottom: 1px solid #ecdfc0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 68rem;
  margin: 0 auto;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-teal-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.25;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: var(--color-gold);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-text {
  flex: 1 1 22rem;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #eaf3f0;
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-teal-dark);
  box-shadow: 0 8px 20px rgba(215, 154, 44, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.hero-photo {
  flex: 0 0 auto;
}

.hero-photo img {
  width: 17rem;
  height: 21rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow);
}

/* Sections */
section {
  padding: 4.5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header .kicker {
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0.4rem 0 0.75rem;
  color: var(--color-teal-dark);
}

.section-header p {
  color: var(--color-text-muted);
  margin: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-grid p {
  color: var(--color-text);
}

.credentials {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
}

.credentials li {
  display: flex;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #efe6cd;
}

.credentials li:last-child {
  border-bottom: none;
}

.credentials .icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.credentials .cred-title {
  font-weight: 700;
  color: var(--color-teal-dark);
}

.credentials .cred-sub {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* Lessons / rates */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

.rate-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-gold);
}

.rate-card.featured {
  border-top-color: var(--color-teal);
  transform: scale(1.03);
}

.rate-card h3 {
  margin: 0 0 0.5rem;
  color: var(--color-teal-dark);
  font-size: 1.15rem;
}

.rate-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-gold);
  margin: 0.5rem 0;
}

.rate-card .cash-note {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Availability */
.availability-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 40rem;
  margin: 0 auto;
}

.day-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #e5dabb;
}

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

.day-row .days {
  font-weight: 700;
  color: var(--color-teal-dark);
}

.day-row .hours {
  color: var(--color-text-muted);
}

.availability-note {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
  max-width: 50rem;
  margin: 0 auto;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card .contact-static {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-teal-dark);
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0.25rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* Footer */
footer {
  background: var(--color-teal-dark);
  color: #cfe3df;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 800px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-top: 3rem;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .button-row {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .rate-card.featured {
    transform: none;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-photo img {
    width: 13rem;
    height: 16rem;
  }
}
