:root {
  /* Reserve space for fixed header; JS sets exact pixel height on .site-head-group */
  --site-head-h: 5.75rem;
  /* Angies Nail Bar â€” matches Acuity scheduling brand color #443028 */
  --brand: #443028;
  --brand-hover: #5c4036;
  --bg: #f9f6f1;
  --surface: #fffdf9;
  --ink: #2a211c;
  --muted: #6b5d54;
  --accent: #8b3d6b;
  --line: #e8e0d8;
  --slot-bg: #f0ebe3;
  --slot-border: #c9bfb2;
  --font-logo: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space: clamp(1rem, 4vw, 2.5rem);
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--site-head-h);
  transition: padding-top 0.28s ease;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

body.site-head-collapsed {
  padding-top: 0;
}

/* Make Home page match booking palette */
body.home-match-booking {
  background: #e7ccb5;
  color: #443028;
}

body.home-match-booking .site-header {
  background: rgba(231, 204, 181, 0.94);
  border-bottom: 1px solid rgba(68, 48, 40, 0.22);
}

body.home-match-booking .service-card {
  background: rgba(255, 253, 249, 0.45);
}

body.page-reviews {
  background: #e7ccb5;
  color: #443028;
}

body.page-reviews .site-header {
  background: rgba(231, 204, 181, 0.94);
  border-bottom: 1px solid rgba(68, 48, 40, 0.22);
}

body.page-reviews .nav-desktop a,
body.page-reviews .nav-mobile a {
  color: #443028;
}

body.page-reviews .nav-desktop a:hover,
body.page-reviews .nav-mobile a:hover {
  color: #3d2820;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space);
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: var(--surface);
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-head-group {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.28s ease;
  will-change: transform;
}

.site-head-group.site-head-group--hidden {
  transform: translateY(-100%);
}

.announcement-bar {
  margin: 0;
  padding: 0.55rem var(--space);
  position: relative;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--brand);
  color: var(--surface);
}

.announcement-bar[hidden] {
  display: none !important;
}

.announcement-bar-text {
  min-width: 0;
}

.announcement-bar a {
  color: inherit;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.announcement-close {
  position: absolute;
  right: var(--space);
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--surface);
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  opacity: 0.85;
}

.announcement-close:hover {
  opacity: 1;
}

.site-header {
  background: rgba(249, 246, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-logo);
  font-size: clamp(1.3rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-optical-sizing: auto;
  color: var(--brand);
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.nav-desktop {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-desktop a:hover {
  color: var(--brand);
  text-decoration: none;
}

.nav-desktop a[aria-current="page"],
.nav-mobile a[aria-current="page"] {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .page-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    padding-top: clamp(2rem, 5vw, 3.5rem);
  }
}

.page-head-photo {
  margin: 0;
  min-height: 220px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .page-head-photo {
    min-height: 280px;
  }
}

.page-head-copy {
  text-align: center;
}

@media (min-width: 768px) {
  .page-head-copy {
    text-align: left;
  }
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  color: var(--brand);
}

.page-lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

/* â€”â€” Booking page: Sandraxcreates layout + Acuity palette (#e7ccb5 / #443028) â€”â€” */
.page-booking .booking-page {
  margin: 0;
}

.booking-workspace {
  background: #e7ccb5;
  color: #443028;
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  min-height: 60vh;
}

.booking-workspace--acuity {
  background: #e7ccb5;
  color: #443028;
}

.booking-workspace-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.booking-copy {
  max-width: var(--max);
}

.booking-open-acuity {
  margin: 0 0 1.25rem;
  text-align: right;
}

.booking-open-acuity-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #443028;
  border: 1px solid #443028;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  text-decoration: none;
  background: rgba(255, 253, 249, 0.65);
  display: inline-block;
}

.booking-open-acuity-link:hover {
  background: #443028;
  color: #fffef9;
  text-decoration: none;
}

.booking-services-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.booking-services-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  color: #443028;
}

.booking-scroll-to-schedule {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fffef9;
  background: #443028;
  border: 1px solid #443028;
  padding: 0.52rem 0.95rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}

.booking-scroll-to-schedule:hover {
  background: #5c4036;
  border-color: #5c4036;
  color: #fffef9;
  text-decoration: none;
}

.booking-lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: #3d2a22;
}

.booking-lead--asterisk {
  font-style: italic;
  opacity: 0.95;
}

.booking-tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  max-width: 100%;
}

@media (min-width: 640px) {
  .booking-tiers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.15rem;
  }
}

@media (min-width: 1000px) {
  .booking-tiers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1rem;
  }
}

.booking-tier-sandra {
  margin: 0;
  padding: 0.85rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 253, 249, 0.55);
  border: 1px solid rgba(68, 48, 40, 0.12);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(68, 48, 40, 0.06);
}

.booking-tier-sandra-photo {
  margin: 0 0 0.65rem;
  padding: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(231, 204, 181, 0.35);
  border: 1px dashed rgba(68, 48, 40, 0.28);
  flex-shrink: 0;
}

.booking-tier-sandra-photo:has(img) {
  border-style: solid;
  border-color: rgba(68, 48, 40, 0.12);
  background: #fffef9;
}

.booking-tier-sandra-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-tier-sandra-title {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #443028;
}

.booking-tier-sandra-sub {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 500;
  color: #5c4036;
}

.booking-tier-sandra-list {
  margin: 0;
  padding-left: 1.1rem;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.35vw, 0.88rem);
  font-weight: 300;
  line-height: 1.5;
  color: #3d2a22;
  flex: 1;
}

.booking-tier-sandra-list li + li {
  margin-top: 0.3rem;
}

.booking-tier-sandra-price {
  margin: 0.75rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(68, 48, 40, 0.1);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 700;
  color: #443028;
}

.booking-extra {
  margin: 2rem 0;
}

.booking-extra-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: #443028;
}

.booking-extra-list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #3d2a22;
}

.booking-extra-list li + li {
  margin-top: 0.4rem;
}

.booking-extra-list--policy {
  list-style: disc;
}

.booking-agree {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: #443028;
  text-align: center;
}

.booking-disclaimer {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: #5c4036;
}

.booking-embed-block {
  margin: 0 0 1.75rem;
  scroll-margin-top: calc(var(--site-head-h) + 0.75rem);
}

.booking-embed-wrap {
  background: #fffdf9;
  border: 1px solid rgba(68, 48, 40, 0.15);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(68, 48, 40, 0.12);
}

.booking-embed-wrap--full iframe {
  width: 100%;
  min-height: 220px;
  height: min(30vh, 340px);
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .booking-embed-wrap--full iframe {
    min-height: 260px;
  }
}

/* Reviews page */
.review-page {
  margin: 0;
}

.review-workspace {
  background: #e7ccb5;
  color: #443028;
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  min-height: 50vh;
}

.review-inner {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 var(--space);
}

.review-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  color: #443028;
}

.review-page-lead {
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: #5c4036;
}

.review-published {
  margin: 0 0 2.5rem;
}

.review-published-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 1.15rem;
  letter-spacing: 0.02em;
  color: #443028;
}

.review-published-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .review-published-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.25rem;
  }
}

.review-list-loading,
.review-list-empty {
  margin: 0;
  padding: 1.1rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5c4036;
  font-weight: 300;
  background: rgba(255, 253, 249, 0.45);
  border: 1px dashed rgba(68, 48, 40, 0.2);
  border-radius: 6px;
  grid-column: 1 / -1;
}

.review-card {
  background: rgba(255, 253, 249, 0.6);
  border: 1px solid rgba(68, 48, 40, 0.12);
  border-radius: 6px;
  padding: 1.1rem 1.15rem 1.15rem;
  box-shadow: 0 2px 12px rgba(68, 48, 40, 0.05);
}

.review-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.review-card-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #443028;
}

.review-card-date {
  font-size: 0.82rem;
  color: #5c4036;
  font-weight: 400;
}

.review-card-stars {
  display: flex;
  gap: 0.08rem;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.review-card-star {
  color: rgba(68, 48, 40, 0.2);
}

.review-card-star--on {
  color: #443028;
}

.review-card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3d2a22;
  font-weight: 300;
}

.review-card-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.review-card-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(68, 48, 40, 0.12);
}

.review-jump-button {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-jump-button {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-book-cta {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.review-form-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: #443028;
  letter-spacing: 0.02em;
}

.review-form {
  background: rgba(255, 253, 249, 0.55);
  border: 1px solid rgba(68, 48, 40, 0.12);
  border-radius: 6px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 2px 16px rgba(68, 48, 40, 0.06);
}

.review-field {
  margin-bottom: 1.35rem;
}

.review-field-rating {
  margin: 0 0 1.35rem;
  padding: 0;
  border: none;
  min-width: 0;
}

.review-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #443028;
  margin: 0 0 0.5rem;
}

.review-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #5c4036;
}

.review-required {
  color: #8b3d6b;
}

.review-rating-hint {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: #5c4036;
  font-weight: 300;
}

.review-score-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.review-score-option {
  flex: 1 1 2.5rem;
  min-width: 2.75rem;
  max-width: 4.5rem;
  margin: 0;
  cursor: pointer;
  text-align: center;
  border: 2px solid rgba(68, 48, 40, 0.28);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.6);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.review-score-option:hover {
  border-color: #443028;
  background: rgba(255, 253, 249, 0.95);
}

.review-score-option:has(:checked) {
  border-color: #443028;
  background: #443028;
  color: #fffef9;
}

.review-score-option:has(:focus-visible) {
  outline: 2px solid #8b3d6b;
  outline-offset: 2px;
}

.review-score-num {
  display: block;
  padding: 0.65rem 0.35rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.review-score-option:has(:checked) .review-score-num {
  color: #fffef9;
}

.review-input,
.review-textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #443028;
  background: #fffef9;
  border: 1px solid rgba(68, 48, 40, 0.22);
  border-radius: 4px;
}

.review-input::placeholder,
.review-textarea::placeholder {
  color: rgba(92, 64, 54, 0.55);
  font-weight: 300;
}

.review-input:focus,
.review-textarea:focus {
  outline: none;
  border-color: #443028;
  box-shadow: 0 0 0 2px rgba(68, 48, 40, 0.15);
}

.review-textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.55;
}

.review-file-input {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #443028;
  background: #fffef9;
  border: 1px solid rgba(68, 48, 40, 0.22);
  border-radius: 4px;
  cursor: pointer;
}

.review-file-input::file-selector-button,
.review-file-input::-webkit-file-upload-button {
  margin-right: 0.75rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fffef9;
  background: #443028;
  border: 1px solid #443028;
  border-radius: 2px;
  cursor: pointer;
}

.review-file-input::file-selector-button:hover,
.review-file-input::-webkit-file-upload-button:hover {
  background: #5c4036;
  border-color: #5c4036;
}

.review-file-hint {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #5c4036;
  font-weight: 300;
}

.review-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

.review-form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #5c4036;
  font-weight: 300;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  width: 100%;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space) 1rem;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.nav-mobile a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

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

  .menu-toggle {
    display: flex;
  }

  .nav-mobile[hidden] {
    display: none;
  }

  .nav-mobile:not([hidden]) {
    display: flex;
  }
}

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

  .menu-toggle {
    display: none !important;
  }
}

/* Home hero â€” photo fades into solid â€œflyerâ€ info panel (same bg as fade) */
.hero--flyer {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero-flyer__photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2.2 / 1;
  max-height: min(58vw, 520px);
}

@media (max-width: 768px) {
  .hero-flyer__photo {
    aspect-ratio: 1.75 / 1;
    max-height: min(78vw, 400px);
  }
}

.hero-flyer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  filter: contrast(1.08) saturate(1.06);
}

.hero-flyer__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(231, 204, 181, 0) 0%,
    rgba(231, 204, 181, 0.04) 28%,
    rgba(231, 204, 181, 0.22) 52%,
    rgba(231, 204, 181, 0.62) 78%,
    #e7ccb5 94%,
    #e7ccb5 100%
  );
}

.hero-flyer__info {
  margin: -1px 0 0;
  padding: clamp(2rem, 5vw, 3.25rem) var(--space) clamp(2.25rem, 6vw, 3.75rem);
  background: #e7ccb5;
  color: #443028;
  text-align: center;
  max-width: none;
}

.hero-flyer__title {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.hero-flyer__eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #443028;
}

.hero-flyer__rule {
  border: none;
  height: 1px;
  width: min(18rem, 85%);
  margin: 0 auto 1.35rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 134, 61, 0.85) 35%,
    rgba(184, 134, 61, 0.85) 65%,
    transparent
  );
}

.hero-flyer__contact {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-flyer__contact p {
  margin: 0;
}

.hero-flyer__contact a {
  color: #443028;
  font-weight: 500;
}

.hero-flyer__connected {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-flyer__blurb {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(184, 134, 61, 0.75);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.25);
}

.hero-flyer__blurb p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d2a22;
}

.hero-flyer__cta {
  margin-top: 0.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--brand);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--brand);
  color: var(--surface);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--surface);
  text-decoration: none;
}

.media-slot {
  background: var(--slot-bg);
  border: 1px dashed var(--slot-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.media-slot:empty::after {
  content: "Photo";
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) var(--space);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--brand);
}

.services-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-media {
  aspect-ratio: 4 / 3;
  min-height: 180px;
}

.service-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.service-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.service-body h2 a {
  color: var(--brand);
}

.service-body h2 a:hover {
  color: var(--accent);
}

.service-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.service-card-soon .service-body p {
  font-style: italic;
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) var(--space) clamp(1.25rem, 3vw, 1.75rem);
}

.site-footer-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .site-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
    align-items: start;
  }
}

.info-block h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.03em;
}

.hours div + div {
  margin-top: 0.75rem;
}

.hours dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

.hours dd {
  margin: 0.25rem 0 0;
  font-size: 1rem;
}

.connect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.connect-list li + li {
  margin-top: 0.5rem;
}

.info-block p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: #443028;
  color: rgba(255, 254, 249, 0.88);
  border-top: 1px solid rgba(231, 204, 181, 0.22);
}

.site-footer .info-block h2 {
  color: #fffef9;
}

.site-footer .hours dt {
  color: rgba(231, 204, 181, 0.8);
}

.site-footer .hours dd {
  color: rgba(255, 254, 249, 0.94);
}

.site-footer .connect-list {
  color: rgba(255, 254, 249, 0.9);
}

.site-footer .info-block p {
  color: rgba(255, 254, 249, 0.88);
}

.site-footer a {
  color: #e7ccb5;
  font-weight: 500;
}

.site-footer a:hover {
  color: #fffef9;
}

.site-footer-copy {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(231, 204, 181, 0.2);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(231, 204, 181, 0.85);
}




