/* Main component styles */

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(18, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(77, 70, 53, 0.3);
  z-index: 1000;
  transition: padding 0.3s ease;
}

.site-header.nav--scrolled {
  padding: 12px 0;
  height: auto;
}

/* WordPress admin bar compatibility */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav__logo-text:hover {
  color: var(--primary-container);
}

/* WordPress custom logo */
.nav__logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav__logo .custom-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 48px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav__menu {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface);
  transition: color 0.3s ease;
}

.nav__menu a:hover {
  color: var(--primary);
}

.nav__cta {
  display: inline-block;
  white-space: nowrap;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--on-surface);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0;
}

.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
}

.btn--primary:hover {
  background: var(--primary-container);
  color: var(--on-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn--ghost:hover {
  background: var(--primary);
  color: var(--on-primary);
}

/* Fixed nav offset — WP adds html{margin-top:32px} for admin bar, so 80px covers all cases */
.site-main {
  padding-top: 80px;
}

/* Homepage: hero handles its own offset via margin-top */
.home .site-main {
  padding-top: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

/* Hero slider */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

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

/* Slider dots */
.hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
  flex-shrink: 0;
}

.hero__dot.is-active {
  background: var(--primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.45) 100%),
              rgba(0,0,0,0.35);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--gutter);
}

.hero__title {
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: var(--stack-lg);
  text-shadow: 0 0 15px rgba(242, 202, 80, 0.3);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--on-surface);
  margin-bottom: var(--stack-lg);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Section heading */
.section-heading {
  text-align: center;
  margin-bottom: var(--stack-lg);
}

.section-heading__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--stack-md);
  display: block;
}

.section-heading__title {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-surface);
  margin-bottom: var(--stack-lg);
}

.section-heading__divider {
  display: none;
}

/* Artist cards */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--section-padding);
  margin-bottom: 0;
}

.artist-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.artist-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.artist-card:hover .artist-card__image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.artist-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--stack-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.artist-card:hover .artist-card__overlay {
  opacity: 1;
}

.artist-card__name {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--stack-sm);
}

.artist-card__role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: var(--stack-md);
}

.artist-card__description {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-surface);
}

.artist-card__badge {
  position: absolute;
  top: var(--stack-lg);
  right: var(--stack-lg);
  background: var(--primary);
  color: var(--on-primary);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}

/* Boxed container — matches nav__inner width */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Services */
.services-section {
  background: var(--surface-low);
  padding: var(--section-padding) var(--gutter);
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--stack-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-item__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  transform: rotate(45deg);
  margin-bottom: var(--stack-lg);
  flex-shrink: 0;
}

.service-item__icon .material-symbols-outlined {
  transform: rotate(-45deg);
  font-size: 28px;
  color: var(--primary);
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 28;
  line-height: 1;
}

.service-item__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--stack-md);
}

.service-item__description {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-surface);
}

/* Testimonial */
.testimonial-section {
  padding: var(--section-padding) var(--gutter);
  background: var(--surface-lowest);
  margin-bottom: 0;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote-mark {
  font-family: var(--font-headline);
  font-size: 120px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: var(--stack-md);
}

.testimonial__quote {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--on-surface);
  font-style: italic;
  margin-bottom: var(--stack-lg);
}

.testimonial__cite {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

/* Gallery teaser (homepage) */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--stack-md);
  margin-bottom: var(--stack-lg);
}

.gallery-teaser__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-high);
  cursor: pointer;
}

.gallery-teaser__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-teaser__image--placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-high);
}

.gallery-teaser__overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 202, 80, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-teaser__item:hover .gallery-teaser__overlay {
  opacity: 1;
}

.gallery-teaser__item:hover .gallery-teaser__image {
  transform: scale(1.08);
}

.gallery-teaser__cta {
  text-align: center;
  margin-top: var(--stack-lg);
  padding-bottom: var(--stack-lg);
}

/* Gallery archive page */
.gallery-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--stack-md);
  margin-bottom: var(--stack-lg);
}

.gallery-archive__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-high);
  cursor: pointer;
}

.gallery-archive__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-archive__image--placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-high);
}

.gallery-archive__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--stack-md);
  z-index: 2;
}

.gallery-archive__item:hover .gallery-archive__overlay {
  opacity: 1;
}

.gallery-archive__item:hover .gallery-archive__image {
  transform: scale(1.06);
}

.gallery-archive__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.gallery-archive__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--on-surface-variant);
  font-family: var(--font-body);
  padding: var(--section-padding) 0;
}

.gallery-archive__pagination {
  text-align: center;
  margin-top: var(--stack-lg);
}

.gallery-archive__pagination .nav-links {
  display: flex;
  gap: var(--stack-md);
  justify-content: center;
  align-items: center;
}

.gallery-archive__pagination .page-numbers {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--on-surface-variant);
  padding: 8px 16px;
  border: 1px solid var(--outline-variant);
  transition: all 0.3s ease;
  text-decoration: none;
}

.gallery-archive__pagination .page-numbers.current,
.gallery-archive__pagination .page-numbers:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 768px) {
  .gallery-teaser,
  .gallery-archive {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--stack-sm);
  }
}

/* About section */
.about-hero {
  padding: 40px var(--gutter) 32px;
  background: var(--surface);
}

.about-hero__content {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.about-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--stack-md);
  display: block;
}

.about-hero__title {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-surface);
  margin-bottom: 0;
}

.about-hero__divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  margin: 0 auto;
  opacity: 0.3;
}

/* Legacy section */
.legacy-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--section-padding);
  align-items: center;
  padding: var(--section-padding) var(--gutter);
  margin-bottom: 0;
}

.legacy-image {
  position: relative;
}

.legacy-image__frame {
  position: relative;
}

.legacy-image__img {
  width: 100%;
  height: auto;
  display: block;
}

.legacy-image__border {
  position: absolute;
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid var(--primary);
  pointer-events: none;
  opacity: 0.5;
}

.legacy-content h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-surface);
  margin-bottom: var(--stack-lg);
}

.legacy-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--on-surface);
  margin-bottom: var(--stack-md);
}

/* Standards cards */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--stack-lg);
  margin-bottom: 0;
}

.standard-card {
  border: 1px solid var(--primary);
  padding: var(--stack-lg);
  transition: all 0.3s ease;
}

.standard-card:hover {
  border-color: var(--primary-container);
}

.standard-card__icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: var(--stack-md);
}

.standard-card__title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: var(--stack-md);
}

.standard-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-surface);
  margin-bottom: var(--stack-md);
}

.standard-card__check {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--section-padding);
  padding: var(--section-padding) var(--gutter);
  margin-bottom: 0;
}

.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.team-card:hover .team-card__image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: var(--stack-md);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.team-card:hover .team-card__name {
  opacity: 0;
  transform: translateY(100%);
}

.team-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--stack-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: var(--stack-md);
}

.team-card__link {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.team-card__link:hover {
  color: var(--primary-container);
}

/* CTA section */
.cta-section {
  background: var(--primary);
  color: var(--on-primary);
  padding: var(--section-padding) var(--gutter);
  text-align: center;
  margin-bottom: 0;
}

.cta-section h2 {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--stack-lg);
}

.cta-section p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: var(--stack-lg);
}

.cta-section .btn--ghost {
  border-color: var(--on-primary);
  color: var(--on-primary);
}

.cta-section .btn--ghost:hover {
  background: var(--on-primary);
  color: var(--on-primary);
}

/* Contact section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-padding);
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto var(--section-padding);
  padding: var(--section-padding) var(--gutter);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--stack-lg);
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: var(--stack-sm);
  transition: color 0.3s ease;
}

.form-group__label.text-primary {
  color: var(--primary);
}

.form-group__input,
.form-group__textarea,
.form-group__select {
  font-family: var(--font-body);
  font-size: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--outline);
  padding: var(--stack-md) 0;
  color: var(--on-surface);
  transition: all 0.3s ease;
  resize: none;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder,
.form-group__select::placeholder {
  color: var(--outline);
  opacity: 0.5;
}

.form-group__input:focus,
.form-group__textarea:focus,
.form-group__select:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.form-group__input:focus + .form-group__label,
.form-group__textarea:focus + .form-group__label,
.form-group__select:focus + .form-group__label {
  color: var(--primary);
}

.form-group__input:not(:placeholder-shown) + .form-group__label,
.form-group__textarea:not(:placeholder-shown) + .form-group__label,
.form-group__select:not(:placeholder-shown) + .form-group__label {
  color: var(--primary);
}

/* File upload */
.upload-zone {
  border: 2px dashed var(--outline);
  padding: var(--section-padding) var(--gutter);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-zone.active {
  border-color: var(--primary);
  background: rgba(242, 202, 80, 0.05);
}

.upload-zone__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--on-surface);
  margin: 0;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--stack-lg);
}

.contact-info__item {
  padding: var(--stack-lg) 0;
  border-bottom: 1px solid var(--outline);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: var(--stack-sm);
}

.contact-info__value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--on-surface);
}

.contact-info__value a {
  color: var(--on-surface);
  text-decoration: underline;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.hours-table th,
.hours-table td {
  padding: var(--stack-md) 0;
  text-align: left;
  border: none;
}

.hours-table th {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 12px;
}

.hours-table td {
  color: var(--on-surface);
}

/* Map */
.contact-map {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(100%) contrast(0.9);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  background: var(--surface-lowest);
  border-top: 1px solid var(--primary);
  padding: var(--section-padding) var(--gutter) var(--stack-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--section-padding);
  max-width: var(--container-max);
  margin: 0 auto var(--stack-lg);
}

.footer__col h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: var(--stack-lg);
}

.footer__col p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-surface);
  margin-bottom: var(--stack-md);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: var(--stack-md);
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__social {
  display: flex;
  gap: var(--stack-lg);
  margin-top: var(--stack-lg);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--outline);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--primary);
  background: rgba(242, 202, 80, 0.1);
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: var(--stack-lg);
  border-top: 1px solid var(--outline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--on-surface-variant);
}

.footer__copyright {
  margin: 0;
}

.footer__bottom-links {
  list-style: none;
  display: flex;
  gap: var(--stack-lg);
  margin: 0;
  padding: 0;
}

.footer__bottom-links a {
  color: var(--on-surface-variant);
  font-size: 12px;
  text-decoration: underline;
}

.footer__bottom-links a:hover {
  color: var(--primary);
}

.footer__logo .custom-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  margin-bottom: var(--stack-lg);
}

.footer__brand-name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--stack-md);
}

.footer__tagline {
  color: var(--on-surface-variant);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__links--contact a {
  text-transform: none;
  letter-spacing: 0;
}

.footer__links--contact li {
  color: var(--on-surface-variant);
  font-size: 13px;
}

/* CTA + Maps Section */
.cta-maps-section {
  background: var(--surface-low);
}

/* CTA + Maps */
.cta-maps-section {
  background: var(--surface-low);
}

.cta-maps-section a[href*="wa.me"]:hover {
  background: #1da851 !important;
}

/* Reviews Section */
.reviews-section {
  background: var(--surface-low);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: var(--stack-lg);
}

.review-card {
  background: var(--surface-low);
  border: 1px solid rgba(77, 70, 53, 0.25);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__stars {
  display: flex;
  gap: 4px;
}

.review-card__star {
  font-size: 18px;
  color: var(--surface-high);
}

.review-card__star.is-filled {
  color: var(--primary);
}

.review-card__text {
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(77, 70, 53, 0.25);
  padding-top: 14px;
}

.review-card__name {
  color: var(--on-surface);
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__service {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Reviews page */
.reviews-page-section {
  background: var(--bg);
}

.reviews-all__title {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--on-surface);
  margin-bottom: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(77, 70, 53, 0.25);
}

.reviews-empty {
  color: var(--on-surface-variant);
  text-align: center;
  padding: 40px;
}

.review-notice {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.review-notice--success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
}

.review-notice--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* Review submission form */
.review-form-wrap {
  background: var(--surface-low);
  border: 1px solid rgba(77, 70, 53, 0.25);
  padding: 32px;
  margin-bottom: 48px;
}

.review-form__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--on-surface);
  margin-bottom: 24px;
}

.review-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field__label {
  color: var(--on-surface-variant);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field__label .required {
  color: var(--primary);
}

.form-field__input {
  background: var(--surface-mid);
  border: 1px solid rgba(77, 70, 53, 0.4);
  color: var(--on-surface);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field__input:focus {
  border-color: var(--primary);
}

.form-field__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Star picker (RTL trick for CSS-only star rating) */
.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-picker input[type="radio"] {
  display: none;
}

.star-picker label {
  font-size: 28px;
  color: var(--surface-high);
  cursor: pointer;
  transition: color 0.15s;
}

.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 36px;
    --stack-lg: 16px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 20, 20, 0.95);
    flex-direction: column;
    padding: var(--stack-lg);
    gap: var(--stack-lg);
  }

  .nav__menu {
    flex-direction: column;
    gap: var(--stack-md);
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .artists-grid,
  .gallery-teaser,
  .team-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--stack-lg);
  }

  .services-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .review-form__grid {
    grid-template-columns: 1fr;
  }

  .section-heading__title {
    font-size: 32px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .legacy-section {
    grid-template-columns: 1fr;
  }

  .cta-maps-section > div {
    grid-template-columns: 1fr !important;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--stack-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--stack-md);
  }
}
