/* =========================================================
   EISENTOWER SITE STYLES
   Cleaned launch stylesheet
   ========================================================= */

/* ------------------------------
   Variables / Base
   ------------------------------ */

:root {
  --bg: #080a0c;
  --panel: #11161b;
  --panel-2: #161d24;
  --text: #f3f1ea;
  --muted: #c9c8c0;
  --soft: #969b9f;
  --line: #2b343e;
  --gold: #c9a24f;
  --gold-2: #e0bf69;
  --blue: #4c86b8;
  --radius: 3px;
  --shadow: 0 18px 40px rgba(0, 0, 0, .35);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

p {
  margin: 0 0 14px;
}

/* ------------------------------
   Layout Utilities
   ------------------------------ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding: 56px 0;
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.band {
  background:
    linear-gradient(120deg, rgba(201, 162, 79, .10), rgba(76, 134, 184, .08));
  border-block: 1px solid rgba(201, 162, 79, .16);
}

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

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 10, 12, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 79, .18);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  font-size: 1.02rem;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 3px;
  color: var(--muted);
  font-size: .93rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(201, 162, 79, .12);
}

/* ------------------------------
   Typography
   ------------------------------ */

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

h2 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 1.13rem;
}

.small {
  color: var(--soft);
  font-size: .9rem;
}

/* ------------------------------
   Buttons
   ------------------------------ */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(76, 134, 184, .85);
}

.btn.subtle {
  background: transparent;
  color: var(--text);
  border-color: rgba(201, 162, 79, .55);
}

/* ------------------------------
   Cards / Features
   ------------------------------ */

.card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 24px;
}

.card img.card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card p {
  color: var(--muted);
}

.card .btn {
  margin-top: 8px;
}

.feature {
  padding: 25px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature p {
  color: var(--muted);
}

/* ------------------------------
   Hero
   ------------------------------ */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 79, .18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .04) 20%,
      rgba(0, 0, 0, .20) 50%,
      rgba(0, 0, 0, .50) 70%,
      rgba(0, 0, 0, .72) 100%
    ),
    url("../images/hero-watchtower.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-box {
  max-width: 640px;
  margin-left: auto;
  padding: 70px 0;
}

.motto {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 1.25vw, 1.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.gold-line {
  width: min(500px, 100%);
  height: 2px;
  margin: 0 0 36px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 79, 0));
}

.hero h1,
.hero-statement {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: unset !important;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.hero-statement {
  font-family: Cambria, Georgia, "Times New Roman", serif;
}

.hero-statement span {
  display: block;
}

.hero-statement .hero-small {
  font-size: clamp(1.65rem, 2.35vw, 2.65rem);
  font-weight: 700;
  line-height: 1.13;
}

.hero-statement .hero-large {
  margin-top: 8px;
  font-size: clamp(1.95rem, 2.75vw, 3.05rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.service-line {
  margin: 20px 0 16px;
  font-size: clamp(1.2rem, 1.35vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .02em;
}

.hero .meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(.92rem, 1.05vw, 1.08rem);
  line-height: 1.45;
}

.hero .founder {
  margin: 0;
  font-size: clamp(.92rem, 1.05vw, 1.08rem);
  font-weight: 400;
  line-height: 1.45;
}

/* ------------------------------
   Page Hero
   ------------------------------ */

.page-hero {
  padding: 82px 0 56px;
  background:
    radial-gradient(circle at 70% 10%, rgba(201, 162, 79, .11), transparent 32%),
    linear-gradient(180deg, #10151a, #080a0c);
  border-bottom: 1px solid rgba(201, 162, 79, .16);
}

.page-hero h1 {
  margin: 0 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1.06;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.15rem;
}

/* ------------------------------
   Home Page
   ------------------------------ */

.serve-grid .feature {
  min-height: 165px;
}

.serve-grid .feature p {
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.45;
}

.standard-intro {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.5;
}

/* ------------------------------
   Services / Training Blocks
   ------------------------------ */

.service-block {
  display: grid;
  grid-template-columns: 1.05fr 1.6fr;
  align-items: stretch;
  gap: 24px;
  padding: 22px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-visual {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 3px;
  box-shadow: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  max-width: 380px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.service-content p {
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.meta-box {
  padding: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.meta-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

/* ------------------------------
   About Page
   ------------------------------ */

.about-grid {
  align-items: center;
}

.about-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-photo {
  width: auto;
  height: clamp(420px, 40vw, 600px);
  max-width: 100%;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(226, 196, 127, .28);
  border-radius: 3px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.about-credentials-card {
  align-self: center;
}

.about-subtitle {
  max-width: 680px;
  margin: 0 0 34px;
}

.about-bio-box {
  margin-top: 34px;
    align-items: center;
  justify-content: flex-end;
}

.about-bio-box .card {
  width: 100%;
  max-width: none;
  padding: 15px 35px;
}

/* About crest section */

.crest-grid {
  align-items: center;
}

.crest-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.crest-image {
  width: auto;
  max-width: 100%;
  max-height: 460px;
  display: block;
  margin: 0 auto;
}

.crest-grid h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.02;
}

.crest-grid .lead,
.crest-grid .section-subtitle,
.crest-grid p:first-of-type {
  margin-bottom: 20px;
}

/* ------------------------------
   Contact Forms
   ------------------------------ */

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  font-size: .93rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  background: #0f1419;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  padding: 16px 18px;
  color: var(--muted);
  background: rgba(201, 162, 79, .08);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
}

/* ------------------------------
   Footer
   ------------------------------ */

.site-footer {
  padding: 38px 0;
  background: #050607;
  color: var(--muted);
  border-top: 1px solid rgba(201, 162, 79, .18);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

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

/* ------------------------------
   Desktop Enhancements
   ------------------------------ */

@media (min-width: 900px) {
  .about-grid {
	  display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 90px;
	align-items: center;
  }
  
  .about-bio-box {
	  margin-top: 0 !important;
	  padding: 0 !important;
	  max-width: 100% !important;
	  display: block !important;
	  align-self: center;
	  width: 100%;
  }
  
  .about-bio-box .card {
	  margin: 0 !important;
	  padding: 34px 40px;
	  width: 100% !important;
	  max-width: none !important;
	  display: block !important;
  }
 
}
  .crest-grid {
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr);
    column-gap: 180px;
  }
}

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    padding: 9px 12px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 3px;
  }
  
  .about-credentials-card {
  align-self: center;
  justify-self: end;
}

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 22px;
    background: #080a0c;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .08),
        rgba(0, 0, 0, .62) 58%,
        rgba(0, 0, 0, .82)
      ),
      url("../images/hero-watchtower.png");
    background-position: left center;
  }

  .hero-box {
    max-width: 100%;
    margin-left: 0;
    padding-top: 250px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .course-meta {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 760px) {
  .hero::before {
    background-position: 25% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .33),
        rgba(0, 0, 0, .66) 90%,
        rgba(0, 0, 0, .88) 100%
      ),
      url("../images/hero-watchtower.png");
  }

  .about-photo {
    width: auto;
    height: auto;
    max-height: 480px;
    margin-inline: auto;
  }

  .about-bio-box .card {
    padding: 26px 22px;
  }

  .crest-image {
    max-height: 340px;
    margin-bottom: 34px;
  }

  .crest-grid h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }
}

@media (max-width: 640px) {
  .btn-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .brand span {
    font-size: .9rem;
  }

  .hero-box {
    padding-top: 225px;
  }

  .hero h1 {
    margin: 0 0 20px;
  }

  .hero-statement {
    margin: 0 0 20px;
    line-height: 1.12;
    letter-spacing: -0.015em;
  }

  .hero-statement .hero-small {
    font-size: clamp(1.55rem, 2.55vw, 3.05rem);
  }

  .hero-statement .hero-large {
    margin-top: 8px;
    font-size: clamp(2.05rem, 3.25vw, 3.95rem);
  }

  .service-line {
    margin: 18px 0;
    font-size: clamp(1rem, 1.45vw, 1.35rem);
    font-weight: 800;
    line-height: 1.3;
  }

  .card-body {
    padding: 20px;
  }
}

.about-credentials-row{
	margin-top: 56px;
}
.about-credentials-wide{
	width:100%;
	padding: 30px 36px;
}

.credentials-list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 42px;
	padding-left: 1.2rem;
	margin: 16px 0 0;
}

.credentials-list li{
	margin: 0;
}

@media (max-width: 760px){
	.about-grid{
		grid-template-columns: 1fr;
	}
	
	.about-credentials-card {
  align-self: center;
  justify-self: end;
}
	.credentials-list{
		grid-template-columns: 1fr;
	}
	.about-credentials-wide{
		padding: 26px 22px;
	}
}

.about-top {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(320px, 420px);
  column-gap: 48px;
  justify-content: center;
  align-items: center;
}

.about-top > * {
  min-width: 0;
}

.about-photo-wrapper {
  width: 100%;
  max-width: 320px;
  min-width: 0;
  justify-self: end;
}

.about-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-card {
  justify-self: start;
}

/*DIAGNOSTICS

.about-grid {
	outline: 2px solid red;
}

.about-photo-wrap {
	outline: 2px solid blue;
}

.about-bio-box{
	outline: 2px solid green;
}

.about-bio-box .card{
	outline: 2px solid yellow;
}

body::before {
	content: "CSS LOADED";
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	padding: 10px 14px;
	background: hotpink;
	color: black;
	font-weight: 900;
	font-size: 18px;
} */

/* ------------------------------
   MOBILE STACKING OVERRIDE - FINAL
   ------------------------------ */

@media (max-width: 900px) {
  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .container.grid,
  .container.grid.grid-2,
  .container.grid.grid-3,
  .container.grid.grid-4,
  .serve-grid,
  .service-block,
  .course-meta,
  .footer-inner,
  .about-grid,
  .crest-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .card,
  .feature,
  .service-block,
  .service-content,
  .service-visual,
  .meta-box,
  .about-bio-box,
  .about-bio-box .card,
  .about-credentials-wide,
  .crest-image-wrap,
  .crest-image,
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ------------------------------
   Mobile Navigation Override
   ------------------------------ */

@media (max-width: 900px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 3px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    z-index: 2001;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 2000;

    display: none !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    padding: 10px 0;
    background: #080a0c;
    border-top: 1px solid rgba(201, 162, 79, .18);
    border-bottom: 1px solid rgba(201, 162, 79, .18);
    box-shadow: 0 18px 32px rgba(0, 0, 0, .45);
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav a {
    display: block !important;
    width: 100% !important;
    padding: 14px 22px !important;
    color: var(--muted);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    white-space: nowrap;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--text);
    background: rgba(201, 162, 79, .12);
  }
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
  }
}

/* ------------------------------
   Mobile Navigation Fix - Final
   ------------------------------ */

@media (max-width: 900px) {
  .site-header {
    overflow: visible !important;
  }

  .header-inner {
    position: relative !important;
    overflow: visible !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  .main-nav {
    display: none !important;
  }

  .main-nav.open {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999998 !important;

    width: 100% !important;
    padding: 10px 0 !important;
    background: #080a0c !important;
    border-top: 1px solid rgba(201, 162, 79, .25) !important;
    border-bottom: 1px solid rgba(201, 162, 79, .25) !important;
    box-shadow: 0 18px 32px rgba(0, 0, 0, .45) !important;
  }

  .main-nav.open a {
    display: block !important;
    width: 100% !important;
    padding: 14px 22px !important;
    text-align: left !important;
    white-space: nowrap !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  }

  .main-nav.open a:last-child {
    border-bottom: none !important;
  }
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
  }
}

.class-date-list {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

/* ------------------------------
   Booking Page
   ------------------------------ */

.booking-card {
  max-width: 760px;
  margin: 0 auto;
}

.booking-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-summary p {
  margin: 0;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  margin-top: 4px;
}

.booking-form .notice {
  margin-top: 10px;
}

.booking-form .btn {
  margin-top: 8px;
  width: fit-content;
}

/* ------------------------------
   Scheduled Class Dates
   ------------------------------ */

.class-date-list {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.class-date-card {
  width: 100%;
}

.class-date-card h3 {
  color: var(--gold);
}

.class-date-card p {
  color: var(--text);
}

/* ------------------------------
   Payment Instructions Page
   ------------------------------ */

.payment-card {
  max-width: 760px;
  margin: 0 auto;
}

.payment-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.payment-summary p {
  margin: 0;
}

.payment-options {
  margin-top: 24px;
}

/* ------------------------------
   Mobile Booking Cleanup
   ------------------------------ */

@media (max-width: 760px) {
  .booking-card,
  .payment-card,
  .class-date-list {
    max-width: 100%;
  }

  .booking-form .btn {
    width: 100%;
  }

  .class-date-card .btn {
    width: 100%;
    justify-content: center;
  }
}

.course-page-actions {
  max-width: 850px;
  margin: 24px auto 0;
}
.crest-single {
  max-width: 900px;
  text-align: center;
}

.crest-single h2 {
  margin-bottom: 1rem;
}

.crest-emblem {
  margin: 3rem auto 2.5rem;
}

.crest-image {
  width: auto;
  height: clamp(340px, 45vw, 520px);
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.anthem-text {
  margin: 0 auto;
  max-width: 620px;
  font-style: italic;
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  line-height: 1.7;
  color: #fff;
}

.anthem-text p {
  margin: 0 0 1.1rem;
}

.anthem-text .vigil {
  margin: 1.6rem 0;
}

.crest-explanation {
  margin: 2.5rem auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}
.scope-note-section {
  padding: 1.5rem 0 0;
}

.scope-note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: rgba(232, 228, 218, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-page {
  max-width: 900px;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.notice-box {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 1.5rem;
  border-radius: 14px;
}

.notice-box h2 {
  margin-top: 0;
}

.notice-box p {
  color: var(--muted);
  line-height: 1.7;
}
.contact-grid {
  align-items: start;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info a {
  color: inherit;
}

.confirmation-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  text-align: center;
}

.confirmation-box p {
  color: var(--muted);
  line-height: 1.7;
}

.confirmation-box .lead {
  color: var(--text);
}

.credentials-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.credentials-columns .credentials-list {
  display: block;
  columns: initial;
  column-count: initial;
  column-gap: initial;
  margin: 0;
  padding-left: 1.2rem;
}

.credentials-columns .credentials-list li {
  display: list-item;
  break-inside: auto;
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .credentials-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}