:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --text: #000000;
  --text-color: #000000;
  --muted: #666666;
  --muted-bg: #f7f7f8;
  --muted-text: #444444;
  --border: #e0e0e0;
  --primary: #000000;
  --accent: #000000;
}

html, body {
  overflow-x: hidden;
}

.site-footer {
  background: var(--muted-bg);
  color: var(--muted-text);
  padding: 2.5rem 1rem 1.25rem;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 1rem;
  align-items: start;
}

.site-footer h4 {
  margin: 0 0 .6rem 0;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 .5rem 0;
  color: var(--muted-text);
  font-size: .95rem;
}

.site-footer .footer-hours {
  margin-bottom: .6rem;
}

.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin: .35rem 0;
}

.site-footer a {
  color: var(--text-color);
  text-decoration: none;
}

.site-footer .social-icons {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-color);
  background: transparent;
  border-radius: 6px;
}

.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: .8rem;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.3px;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav a {
  padding: 0;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

nav a:hover {
  background: none;
  opacity: 0.6;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  cursor: pointer;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-trigger:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  padding: 1rem 1.5rem;
  display: block;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  opacity: 1;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 0;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
}

section {
  padding: 4rem 0;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.2rem;
  line-height: 1.8;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0;
}

.hero-text {
  flex: 1 1 260px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-image {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 0;
  border: 1px solid var(--border);
  background: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.hero-cta {
  margin-top: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-alt);
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 2rem;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

ul {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.pill {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.blockquote {
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
}

.locations-list {
  columns: 2;
  column-gap: 3rem;
  max-width: 600px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-map {
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
  width: 100%;
}

form {
  display: grid;
  gap: 1.5rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  padding: 1rem;
  border-radius: 0;
  border: 1px solid var(--border);
  font: inherit;
  resize: vertical;
  font-size: 0.95rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
}

textarea {
  min-height: 150px;
}

footer {
  background: var(--primary);
  color: #ffffff;
  padding: 3rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  text-align: center;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #nav-menu.active {
    max-height: 500px;
  }

  #nav-menu a,
  #nav-menu .nav-dropdown {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  #nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: #f5f5f5;
    margin: 0;
    z-index: 1;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .footer-social {
    justify-self: center;
  }

  nav {
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .locations-list {
    columns: 1;
  }

  main {
    padding: 2rem;
  }

  section {
    padding: 2rem 0;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--muted-bg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-item h3 {
  font-size: 1.2rem;
  margin: 1rem 1rem 0.5rem;
  color: var(--text-color);
}

.gallery-item p {
  margin: 0 1rem 1rem;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.gallery-item a:hover {
  text-decoration: none;
}

.gallery-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-item-link:hover {
  text-decoration: none;
}

/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  padding: 3rem 0 0 0;
  background-color: transparent;
}

.glide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.glide__track {
  overflow: visible;
}

.glide__slides {
  display: flex;
  align-items: center;
  height: 60vh;
  margin-bottom: 0;
}

.glide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: scale(0.85);
  transition: transform 0.3s ease;
  opacity: 1;
}

.glide__slide--active {
  transform: scale(1);
  opacity: 1;
  cursor: default;
  z-index: 10;
}

.glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.carousel-navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  position: relative;
  z-index: 100;
  height: 60px;
}

.glide__arrow {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  width: 80px;
  height: 50px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.glide__arrow:focus {
  outline: none !important;
  box-shadow: none !important;
}
}

.arrow-icon {
  width: 38px;
  height: 38px;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
}
}

.glide__bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  min-width: 60px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-banner-content {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-size: 4rem;
  margin: 0;
  font-weight: 600;
}

.hero-banner p {
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  transition: opacity 0.15s ease-in-out;
}

.lightbox-content img.fade-out {
  opacity: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.gallery-item {
  cursor: pointer;
}
