*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #1a1a1a;
  background: #f6f1ea;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #b08b5b #f6f1ea;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f6f1ea;
}

::-webkit-scrollbar-thumb {
  background: #b08b5b;
  border-radius: 28px;
  border: 2px solid #f6f1ea;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #8c6b42;
}

::-webkit-scrollbar-corner {
  background: #f6f1ea;
}

body {
  cursor: none;
}

.custom-cursor,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.custom-cursor {
  width: 7px;
  height: 7px;
  background: #b08b5b;
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid #b08b5b;
  border-radius: 50%;
  opacity: 0;
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease, background 0.3s ease, transform 0.4s ease, opacity 0.3s ease;
}

body.cursor-active .custom-cursor,
body.cursor-active .custom-cursor-ring {
  opacity: 1;
}

body.cursor-hover .custom-cursor {
  width: 5px;
  height: 5px;
  background: #ffffff;
}
body.cursor-hover .custom-cursor-ring {
  width: 50px;
  height: 50px;
  border-color: #b08b5b;
  background: rgba(176, 139, 91, 0.08);
}

body.cursor-click .custom-cursor-ring {
  width: 24px;
  height: 24px;
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .custom-cursor,
  .custom-cursor-ring {
    display: none;
  }
}
#preloader {
  position: fixed;
  inset: 0;
  background: #f8f4ef;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}
.loader-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  letter-spacing: 6px;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease infinite alternate;
}
.loader-content span {
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.7;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0.5;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-6px);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 60px;
  z-index: 100;
}

.navbar {
  max-width: 1200px;
  margin-inline: auto;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s ease;
}
.logo:hover {
  color: #8c6b42;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-links a:hover {
  color: #b08b5b;
}
.nav-links a.active {
  color: #b08b5b;
}
.nav-links a.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #b08b5b;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 12px;
  background: #b08b5b;
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-btn:hover {
  background: #8c6b42;
}

.hamburger {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 10px;
  transition: 0.3s ease;
}
.hamburger.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
  .header {
    padding: 14px 20px;
  }
  .navbar {
    padding: 12px 16px;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    padding: 24px;
    background: rgba(246, 241, 234, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.footer {
  padding: 0 60px;
  background: #222;
  color: #ffffff;
}
.footer .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 80px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.footer-top p {
  max-width: 420px;
  margin: 0;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.6;
}

.footer-booking {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-booking span {
  color: #b08b5b;
}
.footer-booking:hover {
  color: #b08b5b;
  gap: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-links span {
  margin-bottom: 8px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-links a {
  color: #ffffff;
  font-size: 0.75rem;
  text-decoration: none;
  opacity: 0.62;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer-links a:hover {
  color: #b08b5b;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 0.7rem;
  opacity: 0.45;
}

@media (max-width: 900px) {
  .footer {
    padding: 0 30px;
  }
  .footer .container {
    padding: 60px 0 24px;
  }
  .footer-top {
    display: block;
    padding-bottom: 30px;
  }
  .footer-top h2 {
    font-size: 2rem;
  }
  .footer-booking {
    margin-top: 24px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    padding: 30px 0;
  }
  .footer-links > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    padding-top: 20px;
  }
  .footer-bottom p + p {
    margin-top: 8px;
  }
}
main {
  overflow: hidden;
}

.gallery-hero {
  padding: 280px 60px 120px;
  background-image: linear-gradient(90deg, rgba(20, 16, 13, 0.82) 0%, rgba(20, 16, 13, 0.62) 35%, rgba(20, 16, 13, 0.28) 65%, rgba(20, 16, 13, 0.12) 100%), url("https://images.pexels.com/photos/10460939/pexels-photo-10460939.jpeg?auto=compress&cs=tinysrgb&w=2000");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-hero .container {
  max-width: 1100px;
  margin-inline: auto;
}

.gallery-hero-content {
  max-width: 900px;
}
.gallery-hero-content .eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #b08b5b;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1.4;
  text-transform: uppercase;
}
.gallery-hero-content h1 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #222;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.05;
}
.gallery-hero-content h1 span {
  color: #b08b5b;
}
.gallery-hero-content p {
  max-width: 620px;
  margin: 0;
  color: #1a1a1a;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.68;
}
.gallery-hero-content .text-link {
  margin-top: 35px;
  color: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: #222;
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
.text-link span {
  color: #b08b5b;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.text-link:hover {
  color: #8c6b42;
  gap: 16px;
}
.text-link:hover span {
  transform: translateY(3px);
}

.gallery-intro {
  padding: 80px 60px;
  background: #f8f4ef;
}
.gallery-intro .container {
  max-width: 1100px;
  margin-inline: auto;
}

.gallery-intro-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 60px;
  max-width: 900px;
  margin-inline: auto;
}
.gallery-intro-inner .eyebrow {
  padding-top: 6px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 3px;
}
.gallery-intro-inner p {
  max-width: 680px;
  margin: 0;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.35;
}

.gallery {
  padding: 0 60px;
  background: #f6f1ea;
  scroll-margin-top: 30px;
}
.gallery .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.gallery .section-header {
  margin-bottom: 60px;
}
.gallery .section-header h2 {
  margin: 0;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.gallery .section-header-copy {
  max-width: 500px;
}
.gallery .section-header-copy p {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.68;
}
.gallery .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.gallery-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.filter-btn:hover {
  border-color: rgba(176, 139, 91, 0.4);
  color: #8c6b42;
  opacity: 1;
  transform: translateY(-2px);
}
.filter-btn.active {
  background: #b08b5b;
  border-color: #b08b5b;
  color: #ffffff;
  opacity: 1;
}
.filter-btn.active:hover {
  background: #8c6b42;
  border-color: #8c6b42;
  color: #ffffff;
}
.filter-btn:focus-visible {
  outline: 2px solid #b08b5b;
  outline-offset: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #e5e2d8;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}
.gallery-item:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.gallery-item:hover img {
  transform: scale(1.045);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
  opacity: 1;
}
.gallery-item:focus-visible {
  z-index: 3;
  outline: 2px solid #b08b5b;
  outline-offset: 4px;
}
.gallery-item.is-hidden {
  display: none;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0) 75%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-category {
  color: #b08b5b;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.gallery-overlay-content strong {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
}

.gallery-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}
.gallery-view span {
  color: #b08b5b;
  font-size: 0.9rem;
}

.gallery-philosophy {
  padding: 0 60px;
  background: #f8f4ef;
}
.gallery-philosophy .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 90px;
  max-width: 1000px;
  margin-inline: auto;
}

.philosophy-heading .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.philosophy-heading h2 {
  max-width: 600px;
  margin: 0;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.05;
}
.philosophy-heading h2 span {
  color: #b08b5b;
}

.philosophy-copy {
  max-width: 500px;
}
.philosophy-copy p {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.68;
}
.philosophy-copy .text-link {
  margin-top: 28px;
}

.cta {
  padding: 140px 60px;
  background: #eee5d9;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin-inline: auto;
}

.cta .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #8c6b42;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cta h2 {
  margin: 0 0 18px;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.cta p {
  max-width: 600px;
  margin: 0 auto;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.72;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background: #b08b5b;
  border: 1px solid #b08b5b;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.primary-btn:hover {
  background: #8c6b42;
  border-color: #8c6b42;
  transform: translateY(-3px);
}
.primary-btn:focus-visible {
  outline: 2px solid #8c6b42;
  outline-offset: 3px;
}

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  color: #222;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(176, 139, 91, 0.4);
  transform: translateY(-3px);
}
.secondary-btn:focus-visible {
  outline: 2px solid #b08b5b;
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: rgba(20, 18, 15, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1000px);
  max-height: 90vh;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.lightbox-category {
  display: block;
  margin-bottom: 8px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.lightbox-title {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #b08b5b;
  border-color: #b08b5b;
  transform: translateY(-2px);
}
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.lightbox-close {
  top: 30px;
  right: 30px;
  font-size: 1.7rem;
}

.lightbox-prev {
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.lightbox-prev:hover {
  transform: translateY(-50%) translateY(-2px);
}

.lightbox-next {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.lightbox-next:hover {
  transform: translateY(-50%) translateY(-2px);
}

body.lightbox-open {
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 900px) {
  .header {
    padding: 14px 20px;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: rgba(246, 241, 234, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .gallery-hero {
    padding: 150px 30px 90px;
  }
  .gallery-hero-content .eyebrow {
    margin-bottom: 16px;
    letter-spacing: 3px;
  }
  .gallery-hero-content h1 {
    font-size: 2.4rem;
    line-height: 1;
  }
  .gallery-hero-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .gallery-hero-content .text-link {
    margin-top: 28px;
  }
  .gallery-intro {
    padding: 60px 30px;
  }
  .gallery-intro-inner {
    display: block;
    max-width: none;
  }
  .gallery-intro-inner .eyebrow {
    display: block;
    margin-bottom: 20px;
  }
  .gallery-intro-inner p {
    font-size: 1.7rem;
    line-height: 1.35;
  }
  .gallery {
    padding: 0 30px;
  }
  .gallery .container {
    padding: 90px 0;
  }
  .gallery .section-header {
    display: block;
    margin-bottom: 40px;
  }
  .gallery .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .gallery .section-header-copy {
    max-width: none;
    margin-top: 20px;
  }
  .gallery .section-header-copy p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .gallery-filters {
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 10px 14px;
    font-size: 0.7rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 12px;
  }
  .gallery-item {
    border-radius: 12px;
  }
  .gallery-item:hover {
    transform: none;
    box-shadow: none;
  }
  .gallery-item:hover img {
    transform: none;
  }
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item--tall {
    grid-row: span 2;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .gallery-overlay {
    padding: 18px;
    opacity: 1;
  }
  .gallery-overlay-content {
    transform: none;
    opacity: 1;
  }
  .gallery-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .gallery-overlay-content strong {
    font-size: 1.35rem;
  }
  .gallery-view {
    margin-top: 4px;
    font-size: 0.7rem;
  }
  .gallery-philosophy {
    padding: 0 30px;
  }
  .gallery-philosophy .container {
    padding: 90px 0;
  }
  .philosophy-grid {
    display: block;
    max-width: none;
  }
  .philosophy-heading .eyebrow {
    margin-bottom: 16px;
    letter-spacing: 3px;
  }
  .philosophy-heading h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .philosophy-copy {
    max-width: none;
    margin-top: 28px;
  }
  .philosophy-copy p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .philosophy-copy .text-link {
    margin-top: 24px;
  }
  .cta {
    padding: 90px 30px;
  }
  .cta .eyebrow {
    letter-spacing: 3px;
  }
  .cta h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .cta p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
  }
  .primary-btn,
  .secondary-btn {
    width: 100%;
    box-sizing: border-box;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox-content {
    width: 100%;
    max-height: 86vh;
  }
  .lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
  }
  .lightbox-title {
    font-size: 1.7rem;
  }
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
  .lightbox-prev {
    top: auto;
    bottom: 30px;
    left: calc(50% - 55px);
    transform: none;
  }
  .lightbox-prev:hover {
    transform: translateY(-2px);
  }
  .lightbox-next {
    top: auto;
    right: calc(50% - 55px);
    bottom: 30px;
    transform: none;
  }
  .lightbox-next:hover {
    transform: translateY(-2px);
  }
}

/*# sourceMappingURL=gallery.css.map */
