:root {
  --c-espresso: #241E19;
  --c-gold: #C6862E;
  --c-gold-ink: #8A5A16;
  --c-cream: #F4EFE4;
  --c-card: #FFFFFF;
  --c-sage: #5E6152;
  --c-crest-card: #2E2720;

  --f-display: 'Source Serif 4', serif;
  --f-body: 'Work Sans', sans-serif;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/work-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/work-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  background: var(--c-cream);
  color: var(--c-espresso);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, .f-display { font-family: var(--f-display); }
h1 { font-size: clamp(2.4rem, 4.4vw, 3.9rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 700; line-height: 1.2; }
.kicker { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-gold-ink); margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--c-gold); color: var(--c-espresso); }
.btn-outline { background: transparent; color: var(--c-espresso); border-color: var(--c-espresso); }

/* Layout Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.flex { display: flex; }
.grid { display: grid; }

/* Medallion */
.medallion {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-gold);
  display: inline-block;
  flex-shrink: 0;
}
.medallion-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--c-gold);
  display: inline-block;
  flex-shrink: 0;
}

/* Header */
.site-header { background: var(--c-espresso); color: var(--c-cream); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; color: var(--c-cream); }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: 0.875rem; font-weight: 600; }
.nav-cta { background: var(--c-gold); color: var(--c-espresso); padding: 0.5rem 1rem; font-weight: 600; font-size: 0.875rem; border-radius: 2px; }

/* Mobile Nav Details */
.nav-mobile-details { display: block; position: relative; }
.nav-mobile-summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.nav-mobile-summary::-webkit-details-marker { display: none; }
.hamburger { width: 24px; height: 16px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--c-cream); transition: transform 0.2s; }
.nav-mobile-dropdown { position: absolute; top: 100%; right: 0; background: var(--c-espresso); width: 200px; padding: 1rem; border: 1px solid var(--c-crest-card); }
.nav-mobile-dropdown a { display: block; padding: 0.75rem 0; color: var(--c-cream); font-weight: 600; border-bottom: 1px solid var(--c-crest-card); }
.nav-mobile-dropdown a:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .nav-mobile-details { display: none; }
  .nav-desktop { display: flex; }
}

/* Hero */
.hero { display: grid; grid-template-columns: 1fr; }
.hero-content { padding: 4rem 1.5rem; background: var(--c-cream); display: flex; flex-direction: column; justify-content: center; }
.hero-image { position: relative; min-height: 300px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-actions { display: flex; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
.hero-chip { display: flex; align-items: center; gap: 0.75rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-gold-ink); border: 1px solid #E2DBC6; padding: 0.75rem 1rem; max-width: max-content; }
.hero-desc { font-size: 1.125rem; color: var(--c-espresso); }

@media (min-width: 1024px) {
  .hero { grid-template-columns: 1.1fr 1fr; }
  .hero-content { padding: 6rem 4rem 6rem calc((100vw - 1200px) / 2 + 1.5rem); }
  .hero-image { border-left: 8px solid var(--c-gold); }
}

/* The Master's Crest */
.crest-section { background: var(--c-espresso); color: var(--c-cream); padding: 5rem 0; }
.crest-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.crest-header h2 { color: var(--c-cream); margin: 0; }
.crest-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.crest-card { background: var(--c-crest-card); border-top: 2px solid var(--c-gold); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.crest-card h3 { font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; color: var(--c-gold); margin: 0; }
.crest-card p { font-size: 0.875rem; color: #A0988F; margin: 0; }
.crest-note { font-size: 0.875rem; color: #A0988F; max-width: 800px; }

@media (min-width: 768px) {
  .crest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .crest-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Classes */
.classes-section { padding: 5rem 0; background: var(--c-cream); }
.classes-section h2 { margin-bottom: 3rem; color: var(--c-espresso); }
.classes-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.class-card { background: var(--c-card); box-shadow: 0 4px 20px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.class-img { height: 240px; }
.class-img img { width: 100%; height: 100%; object-fit: cover; }
.class-content { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; flex-grow: 1; }
.class-content h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--c-espresso); margin: 0; }
.class-content p { color: var(--c-sage); font-size: 0.9375rem; margin: 0; }

@media (min-width: 768px) {
  .classes-grid { grid-template-columns: repeat(3, 1fr); }
}

/* The Method */
.method-section { background: var(--c-espresso); color: var(--c-cream); padding: 5rem 0; }
.method-content { max-width: 800px; }
.method-rule { width: 40px; height: 2px; background: var(--c-gold); margin-bottom: 2rem; }
.method-section h2 { color: var(--c-cream); margin-bottom: 1.5rem; }
.method-section p { color: #A0988F; font-size: 1.125rem; }

/* Contact Form */
.contact-section { padding: 5rem 0; background: var(--c-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.contact-form { background: var(--c-card); padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--c-espresso); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.75rem; border: 1px solid #D5CFC1; background: var(--c-card); font-family: var(--f-body); font-size: 1rem; color: var(--c-espresso); border-radius: 2px; }
.form-control:focus { outline: none; border-color: var(--c-gold); }
.contact-info { display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.contact-info h2 { margin-bottom: 0; }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Footer */
.site-footer { background: var(--c-espresso); color: var(--c-cream); padding: 2rem 0; border-top: 1px solid var(--c-crest-card); }
.site-footer .container { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.site-footer p { color: #A0988F; font-size: 0.875rem; margin: 0; }

@media (min-width: 768px) {
  .site-footer .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Sticky Mobile Call Bar */
.mobile-call-bar { display: block; position: fixed; bottom: 0; left: 0; right: 0; background: var(--c-gold); color: var(--c-espresso); text-align: center; font-weight: 700; font-size: 1rem; padding: 1rem; z-index: 90; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); }
.mobile-call-bar-spacer { height: 56px; display: block; }
.mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
  .mobile-call-bar-spacer { display: none; }
}

/* Page Header */
.page-header { background: var(--c-cream); padding: 5rem 0 2rem; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { font-size: 1.125rem; color: var(--c-sage); max-width: 600px; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
