:root {
  --green: #1f9532;
  --green-bg: #ebfbed;
  --purple: #b164d5;
  --purple-light: #f2dffb;
  --purple-accent: #aa1bea;
  --purple-dark: #9a1dd3;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body > header {
  border-block-end: 1px solid #222;
}

body > main {
  padding: 1rem 1rem;
}

main > div > section {
  padding: 2rem 0;
  border-block-end: 1px solid #222;
}

body > footer {
  border-block-start: 1px solid #222;
}

h1,
.h1 {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1;
  text-wrap: pretty;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 1em;
}

p {
  text-wrap: pretty;
  max-width: 60ch;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.img-pop {
  border-radius: 9px;
  box-shadow: -3px 3px 6px #8dc795;
}

figcaption {
  font-size: 0.8rem;
  color: rgba(33, 37, 41, 0.7);
  margin-top: 0.4rem;
}

address {
  font-style: normal;
}

#bookings {
  scroll-margin-top: 10rem;
}

/* ************** */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff; /* Or match your site’s background */
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #ddd; /* Optional: adds subtle divider */
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.85);
}

.container {
  max-width: 60ch;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-block;
  width: 75px;
  height: 75px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

/* === Header Branding === */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Noto Serif", serif;
  line-height: 1.2;
  text-align: center;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f9532;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 1rem;
  color: #7b27a3;
  font-weight: 400;
  margin-top: 0.2rem;
}

/* === Navigation Menu Enhancements === */
.main-nav {
  border-top: 2px solid #ddd;
  margin-top: 2rem;
}

.main-nav ul {
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-nav li {
  padding: 0.5rem 1rem;
  transition: background 0.2s;
  border-radius: 6px;
}

.main-nav li:hover {
  background-color: #f2dffb;
}

.main-nav a {
  color: #6a1b9a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: block; /* Makes entire padded area clickable */
}

/* **************** */

.float-start {
  float: left;
}

.float-end {
  float: right;
  margin-right: 0;
}

.float-clear {
  clear: both;
}

.w40 {
  width: 40%;
  max-width: 200px;
}

#hero {
  hgroup > p {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    text-wrap: pretty;
    margin-top: -1rem;
  }
  p {
    margin-top: 2rem;
  }
  a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    text-align: center;
    display: inline-block;
    margin-top: 0.5rem;
  }
}

/* ****************** */

/* Hide nav by default on mobile */
.main-nav {
  display: none;
  text-align: center;
}

/* Show nav when checkbox is checked */
.site-header .menu-checkbox:checked ~ .main-nav {
  display: block;
  width: 100%;
  padding: 1rem;
}

/* Layout styles */
.site-header {
  padding: 1rem 1.5rem;
  background-color: white;
  /* border-bottom: 1px solid #eee; */
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #333;
}

/* Small Mobile Correction */
@media (max-width: 440px) {
  .flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

/* Desktop styles */
@media (min-width: 768px) {
  .menu-icon {
    display: none;
  }

  .main-nav {
    display: block;
    text-align: center;
    max-width: 100%;
  }

  .main-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem 2rem;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    max-width: 800px;
  }

  .main-nav li {
    margin: 0;
  }

  .main-nav a {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #6a1b9a;
    border-radius: 4px;
    transition: background 0.2s ease;
    white-space: nowrap; /* prevents awkward word wrapping */
  }

  .main-nav a:hover {
    background-color: #f2dffb;
  }
}

/* *************** */

.site-footer {
  background-color: #f9f9f9;
  padding: 2rem 1.5rem;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-section h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #222;
}

.footer-section ul,
.footer-section p,
.footer-section address {
  margin: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section a {
  color: #333;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section.travel p {
  margin-bottom: 0.75rem;
}

/* Directions full-width on small viewports */
@media (max-width: 767px) {
  .footer-section.travel {
    grid-column: 1 / -1;
  }
}

/* Signoff always spans full width */
.footer-signoff {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #555;
  p {
    margin-block: 0;
    margin-inline: auto;
  }
}

/* ***************** */

/* 

Right now your classes are working but somewhat mix presentation and structure. If you want future-proofing, you might consider names like:

Current	Suggested Alternative
.treat-head	.treatment-title-row
.treat-stub	.treatment-meta
.treat-bullet	.treatment-feature
.treat-cathead	.treatment-category
.treat-desc	.treatment-description

This isn't necessary but could improve clarity if the HTML becomes more complex.

*/

.accordion .collapse {
  border: 0;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: #ebfbed;
  color: #1f9532;
  box-shadow: none;
  border-bottom: none;
}

.accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 40px;
  background-image: none;
  font-weight: 100;
  color: #1f9532;
  transform: translateY(-4px);
}

.accordion-button:not(.collapsed)::after {
  width: auto;
  height: auto;
  background-image: none;
  background: #ebfbed;
  content: "-";
  font-size: 48px;
  color: #aa1bea;
  transform: translate(-5px, -4px);
  transform: rotate(0deg);
}

.accordion-button::after {
  content: "+";
}
.accordion-button:not(.collapsed)::after {
  content: "-";
}

.brand-underline {
  text-underline-offset: 4px;
  text-decoration: underline;
  text-decoration-color: #1f9532;
}

.treat-display {
  color: #1f9532;
  margin-bottom: -0.7rem;
}

.accordion-button {
  color: #1f9532;
}

.treat-cathead {
  display: flex;
  justify-content: space-around;
  font-size: 1.4rem;
  margin-top: 2rem;
  font-family: "Noto Serif";
  font-weight: 400;
  background-color: #f2dffb;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
  margin-bottom: 0.3rem;
  color: #b164d5;
}

.treat-head {
  color: #bf6ae6;
}

.treat-head span:last-of-type {
  color: #9a1dd3;
}

.treat-head {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.treat-halfstub {
  text-align: end;
  display: flex;
  justify-content: end;
  font-style: italic;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.treat-stub {
  display: flex;
  justify-content: space-between;
  font-style: italic;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.treat-bullet {
  font-size: 0.9rem;
  line-height: 1.3rem;
  margin-top: 0.3rem;
  list-style-type: "\1F784\0020";
}

.treat-list {
  font-size: 0.9rem;
  line-height: 1.3rem;
  margin-top: 0.3rem;
  list-style-type: "\1F784\0020";
  padding-left: 1rem;
}

.treat-notice {
  font-size: 0.9rem;
  line-height: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  background-color: #f2dffb;
  padding: 0.5rem;
}

.treat-desc {
  font-size: 0.9rem;
  line-height: 1.3rem;
  margin-top: 0.8rem;
}

.treat-list li {
  display: flex;
  justify-content: space-between;
}

/* ********* */

.treat-subdesc {
  color: #212529; /* Same as rgb(33, 37, 41) */
  font-size: 0.85rem;
}

.text-right {
  text-align: right;
}

.treatment-block {
  padding: 1rem;
  background-color: #f7f7f7;
  margin-bottom: 0.5rem;
}

.price-nudge {
  margin-right: -0.6rem;
}

/* ************* */

.brand-underline {
  text-decoration: underline;
  text-decoration-color: #1f9532;
  text-underline-offset: 4px;
}

.hr-highlight {
  border: 1px solid #1f9532;
  margin: 2rem 0;
}

.quote-style {
  font-size: 1.2rem;
  color: #bf6ae6;
  line-height: 1.7rem;
  margin-top: 1rem;
}

.quote-author {
  text-align: right;
  color: #1f9532;
  font-weight: 500;
}

.signature-wrap {
  margin: 2rem 0;
}

.signature-img {
  width: 30%;
  border-radius: 0.5rem;
}

.btn-cta {
  text-transform: uppercase;
  text-decoration: none;
  background-color: lightgray;
  border-radius: 5px;
  padding: 0.5rem 1rem 0.6rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-align: center;
  display: inline-block;
  margin: 1rem;
}

.flex-right {
  display: flex;
  justify-content: flex-end;
}

.cta-section {
  background-color: #f5e5fb;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  text-align: center;
}

.cta-heading {
  color: #8f2ebd;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ae52d9;
  color: #f9ebff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #9d40c6;
}

.cta-button .icon {
  width: 1.1em;
  height: 1.1em;
}

.cta-number {
  font-size: 1.5rem;
  color: #7b27a3;
  font-weight: bold;
}

/* ************* */

.salon-address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.directions-section {
  line-height: 1.6;
  border-bottom: none;
}

.directions-section .intro {
  margin-bottom: 2rem;
}

.directions-block {
  background: #f8f8f8;
  padding: 1rem 1.5rem;
  border-left: 5px solid #1f9532;
  margin-bottom: 2rem;
  border-radius: 6px;
}

.route-label {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.route-label.green {
  color: #1f9532;
}

.route-label.blue {
  color: #007acc;
}

.route-label.red {
  color: #cc2e2e;
}

.directions-block ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.arrival-note {
  font-style: italic;
  margin-top: 1rem;
  color: #444;
}

.quiet-note {
  background: #f2dffb;
  border-left-color: #bf6ae6;
}
