:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --color-text: #222;
  --color-bg: #fff;
  --color-bg-alt: #f6f4f1;
  --color-border: #e3ddd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

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

a {
  color: var(--color-primary);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--color-primary);
  color: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.site-header a {
  color: #fff;
  text-decoration: none;
}

.logo {
  --logo-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--logo-size);
  color: inherit;
  text-decoration: none;
}

.logo-icon {
  width: 1.8em;
  height: 1.8em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.logo-name {
  font-size: 1em;
  font-weight: 700;
}

.label-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mono-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
}

.logo-descriptor {
  font-size: 0.4em;
  opacity: 0.85;
}

/* Hero */
.hero {
  position: relative;
  height: min(70vh, 600px);
  overflow: hidden;
  animation-name: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-heading {
  --logo-size: 2.75rem;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.15rem;
  max-width: 40ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Sections */
section {
  padding: 3.5rem 0;
  animation: fade-up linear both;
}

@supports (animation-timeline: view()) {
  section {
    animation: fade-up 0.7s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section h2 {
  font-size: 1.75rem;
  margin: 0 0 2rem;
  text-align: center;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.service-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
  color: var(--color-accent);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img,
.gallery-grid picture {
  border-radius: 8px;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.gallery-caption-title {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-caption-desc {
  display: -webkit-box;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #555;
  min-height: 3em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .gallery-caption-desc {
    min-height: 0;
  }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.review-card .stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-card p {
  margin: 0 0 0.75rem;
  font-style: italic;
}

.review-card .reviewer {
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
}

/* Contact + map */
.contact-section {
  background: var(--color-bg-alt);
}

.card {
  background: var(--color-bg);
  border: 0.5px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-card {
  margin-bottom: 2.5rem;
}

.contact-form-card:hover,
.contact-info-card:hover,
.map-card:hover {
  box-shadow: none;
  transform: none;
}

.contact-section h2 {
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-stats {
  background: var(--color-accent);
  color: #fff;
  padding: 1.5rem 0;
  animation-name: none;
}

.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.stat-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.stat-text {
  font-size: 0.975rem;
}

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

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-label {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

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

.contact-form button {
  align-self: flex-start;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* honeypot field, hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

address {
  font-style: normal;
  color: var(--color-text);
  font-size: 1.05rem;
}

.section-label {
  font-size: 0.8rem;
  opacity: 0.55;
  margin: 1.5rem 0 0.6rem;
}

.section-label:first-of-type {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-list-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}

.contact-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.contact-list-row .mono-value {
  font-size: 0.85rem;
}

.hours-list {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0;
  row-gap: 0;
}

.hours-row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  padding-block: 0.4rem;
  border-top: 1px solid #ebe9e5;
}

.hours-row:first-child {
  border-top: none;
}

.hours-list dt {
  margin: 0;
  padding-right: 0.75rem;
}

.hours-list dd {
  margin: 0;
  padding-left: 1.5rem;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-texture {
  --footer-texture-opacity: 0.06;
  position: absolute;
  z-index: 0;
  bottom: -50px;
  right: 50px;
  opacity: var(--footer-texture-opacity);
  color: #fff;
  pointer-events: none;
  transform: rotate(-18deg);
  line-height: 0;
}

.footer-watermark-icon {
  width: 200px;
  height: 200px;
}

.footer-blurb {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.footer-credit-row {
  background: #1a1512;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.credit-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
}

.credit-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-row a {
  color: #fff;
  display: inline-flex;
}

.social-row svg {
  width: 22px;
  height: 22px;
}

.footer-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

@media (max-width: 720px) {
  .footer-credit {
    flex-direction: column;
    text-align: center;
  }
}

/* GLightbox dark skin override — scoped to GLightbox's own container/skin classes */
.glightbox-container.glightbox-clean .gslide-description {
  background: rgba(0, 0, 0, 0.9);
}

.glightbox-container.glightbox-clean .gslide-title {
  color: #fff;
}

.glightbox-container.glightbox-clean .gslide-desc {
  color: #a1a1a1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
