:root {
  --color-forest: #23452D;
  --color-green: #3D5A40;
  --color-gold: #D6B46B;
  --color-sand: #E9DFC9;
  --color-off-white: #FAF8F3;
  --color-dark: #1F1F1F;
  --font-heading: Playfair Display, Georgia, serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
  --color-forest: #23452D;
  --color-green: #3D5A40;
  --color-gold: #D6B46B;
  --color-sand: #E9DFC9;
  --color-off-white: #FAF8F3;
  --color-dark: #1F1F1F;
  --font-heading: Playfair Display, Georgia, serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(35, 69, 45, 0.15);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  width: 100%;
  background: #ffffff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #D6B46B;
  box-shadow: 0 0 0 3px rgba(214, 180, 107, 0.15);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-forest);
}

::selection {
  background: rgba(214, 180, 107, 0.3);
  color: #23452D;
}

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

:root {
  --color-forest: #23452D;
  --color-green: #3D5A40;
  --color-gold: #D6B46B;
  --color-sand: #E9DFC9;
  --color-off-white: #FAF8F3;
  --color-dark: #1F1F1F;
  --font-heading: Playfair Display, Georgia, serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.text-center {
  text-align: center;
}

.section {
  padding: var(--section-padding) 0;
}
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D6B46B;
  margin-bottom: 1rem;
}
.section__label--light {
  color: rgba(233, 223, 201, 0.8);
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.section__title--light {
  color: #FAF8F3;
}
.section__subtitle {
  font-size: 1.125rem;
  color: rgba(31, 31, 31, 0.65);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.section__text {
  color: rgba(31, 31, 31, 0.75);
  font-size: 1.05rem;
}
.section__text--light {
  color: rgba(250, 248, 243, 0.85);
}
.section__text p + p {
  margin-top: 1rem;
}
.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(35, 69, 45, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 0 clamp(1.25rem, 4vw, 3.125rem);
  min-height: 90px;
}
.site-header__logo img {
  height: clamp(45px, 6vw, 65px);
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: color var(--transition);
}
.site-header__phone svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.site-header__phone:hover {
  color: #D6B46B;
}
.site-header--transparent {
  background: transparent;
  box-shadow: none;
}
.site-header--transparent.is-scrolled {
  background: rgba(35, 69, 45, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled:not(.site-header--transparent) {
  background: rgba(35, 69, 45, 0.97);
  backdrop-filter: blur(10px);
}

.nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: #ffffff;
  position: relative;
  padding: 0.35rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #D6B46B;
  transition: width 0.3s ease;
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}
.nav__link:hover {
  color: #D6B46B;
}

.btn--header {
  background: #ffffff;
  color: #23452D;
  border-color: #ffffff;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  white-space: nowrap;
}
.btn--header:hover {
  background: #D6B46B;
  border-color: #D6B46B;
  color: #23452D;
  transform: none;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  z-index: 1002;
  color: #ffffff;
}
.nav-toggle__label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #23452D;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  padding: 0.25rem;
}
.mobile-menu__nav .nav__list {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.mobile-menu__nav .nav__link {
  display: block;
  font-size: 1.125rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}
.mobile-menu__cta {
  margin-top: 2rem;
  width: 100%;
}

.site-footer {
  background: #23452D;
  color: rgba(250, 248, 243, 0.8);
}
.site-footer__top {
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer__logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}
.site-footer__description {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: #D6B46B;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.site-footer__bottom {
  border-top: 1px solid rgba(250, 248, 243, 0.1);
  padding: 1.5rem 0;
}
.site-footer__copyright {
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.6;
}

.footer-nav li, .footer-contact li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer-nav a:hover, .footer-contact a:hover {
  color: #D6B46B;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 248, 243, 0.2);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}
.social-links a:hover {
  background: #D6B46B;
  border-color: #D6B46B;
  color: #23452D;
}

@media (max-width: 1024px) {
  .site-header .nav {
    display: none;
  }
  .site-header .site-header__phone span {
    display: none;
  }
  .site-header .nav-toggle {
    display: flex;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    min-height: 70px;
  }
  .site-header .btn--header {
    display: none;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --color-forest: #23452D;
  --color-green: #3D5A40;
  --color-gold: #D6B46B;
  --color-sand: #E9DFC9;
  --color-off-white: #FAF8F3;
  --color-dark: #1F1F1F;
  --font-heading: Playfair Display, Georgia, serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.btn--primary {
  background: #D6B46B;
  color: #23452D;
  border-color: #D6B46B;
}
.btn--primary:hover {
  background: rgb(205.1492063492, 163.8095238095, 75.0507936508);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 180, 107, 0.3);
}
.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  background: #ffffff;
  color: #23452D;
  border-color: #ffffff;
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(35, 69, 45, 0.45) 0%, rgba(35, 69, 45, 0.65) 50%, rgba(35, 69, 45, 0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  padding-top: 80px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(250, 248, 243, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: scrollBounce 2s infinite;
}
.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #D6B46B, transparent);
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-hero--short {
  min-height: 40vh;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 69, 45, 0.9) 0%, rgba(35, 69, 45, 0.4) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin-top: 1rem;
}
.page-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(250, 248, 243, 0.85);
  margin-top: 0.75rem;
  max-width: 500px;
}

.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a:hover {
  color: #D6B46B;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-grid__image {
  position: relative;
  overflow: hidden;
}
.about-grid__image::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(214, 180, 107, 0.4);
  pointer-events: none;
}
.about-grid__image img {
  width: 100%;
  aspect-ratio: 7/8.5;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-grid__image:hover img {
  transform: scale(1.03);
}

.section--award {
  background: #23452D;
  color: #FAF8F3;
}

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.award-grid__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.award-grid__images {
  display: grid;
  gap: 1rem;
}
.award-grid__images img:first-child {
  aspect-ratio: 4/5;
}
.award-grid__images img:last-child {
  aspect-ratio: 16/10;
}

.award-list {
  margin-top: 2rem;
}
.award-list__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(250, 248, 243, 0.1);
}
.award-list__image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}
.award-list__name {
  font-family: var(--font-heading);
  color: #D6B46B;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.award-list__date {
  font-size: 0.8rem;
  opacity: 0.6;
}

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

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: default;
}
.experience-card__image {
  position: relative;
  overflow: hidden;
}
.experience-card__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 69, 45, 0.8) 0%, transparent 60%);
  transition: opacity var(--transition);
}
.experience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  z-index: 2;
}
.experience-card__title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.experience-card__text {
  font-size: 0.9rem;
  color: rgba(250, 248, 243, 0.8);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.experience-card:hover .experience-card__image img {
  transform: scale(1.08);
}
.experience-card:hover .experience-card__text {
  max-height: 100px;
  opacity: 1;
}

.masonry-gallery {
  columns: 4;
  column-gap: 0.75rem;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.masonry-gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
  break-inside: avoid;
}
.masonry-gallery__item img {
  width: 100%;
  transition: transform 0.6s ease;
}
.masonry-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 69, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-gallery__icon {
  font-size: 2rem;
  color: #D6B46B;
  transform: scale(0.5);
  transition: transform var(--transition);
}
.masonry-gallery__item:hover img {
  transform: scale(1.05);
}
.masonry-gallery__item:hover .masonry-gallery__overlay {
  opacity: 1;
}
.masonry-gallery__item:hover .masonry-gallery__icon {
  transform: scale(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-grid__item:nth-child(3n+1) {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 69, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #D6B46B;
  font-size: 2rem;
}
.gallery-grid__item:hover img {
  transform: scale(1.06);
}
.gallery-grid__item:hover .gallery-grid__overlay {
  opacity: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(35, 69, 45, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(35, 69, 45, 0.08);
}
.why-card__icon {
  font-size: 1.75rem;
  color: #D6B46B;
  margin-bottom: 1.25rem;
}
.why-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.why-card__text {
  font-size: 0.9rem;
  color: rgba(31, 31, 31, 0.65);
  line-height: 1.6;
}

.section--testimonials {
  background: #E9DFC9;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slider__slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .testimonial-slider__slide {
    flex: 0 0 33.333%;
  }
}
.testimonial-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-slider__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(35, 69, 45, 0.2);
  border-radius: 50%;
  font-size: 1.25rem;
  color: #23452D;
  transition: all var(--transition);
}
.testimonial-slider__btn:hover {
  background: #23452D;
  color: #ffffff;
  border-color: #23452D;
}
.testimonial-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(35, 69, 45, 0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testimonial-dot.is-active {
  background: #D6B46B;
  transform: scale(1.3);
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #D6B46B;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: rgba(31, 31, 31, 0.75);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(35, 69, 45, 0.08);
}
.testimonial-card__photo, .testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23452D;
  color: #D6B46B;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1rem;
  color: #23452D;
}
.testimonial-card__position {
  display: block;
  font-size: 0.8rem;
  color: rgba(31, 31, 31, 0.5);
  margin-top: 0.15rem;
}

.cta-banner {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.cta-banner--compact {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 69, 45, 0.8);
}
.cta-banner__content {
  position: relative;
  z-index: 2;
}
.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #ffffff;
  margin-bottom: 2rem;
}
.cta-banner .booking-area {
  margin-top: 2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(31, 31, 31, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  color: #ffffff;
  font-size: 2rem;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 2;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  opacity: 1;
}
.lightbox__close {
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
}
.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: #D6B46B;
  color: #23452D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), opacity var(--transition);
}
.scroll-top[hidden] {
  display: none;
}
.scroll-top:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .about-grid, .award-grid {
    grid-template-columns: 1fr;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-gallery {
    columns: 2;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .masonry-gallery {
    columns: 1;
  }
}
:root {
  --color-forest: #23452D;
  --color-green: #3D5A40;
  --color-gold: #D6B46B;
  --color-sand: #E9DFC9;
  --color-off-white: #FAF8F3;
  --color-dark: #1F1F1F;
  --font-heading: Playfair Display, Georgia, serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
  --color-forest: #23452D;
  --color-green: #3D5A40;
  --color-gold: #D6B46B;
  --color-sand: #E9DFC9;
  --color-off-white: #FAF8F3;
  --color-dark: #1F1F1F;
  --font-heading: Playfair Display, Georgia, serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 780px;
  overflow: hidden;
}
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2.5s ease, visibility 2.5s ease;
  z-index: 0;
}
.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slider__slide.is-active .hero-slider__image {
  transform: scale(1.05);
}
.hero-slider__slide.is-active .hero-slider__inner {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider__slide.is-active .hero-slider__title {
  animation: heroFadeUp 1s ease 0.3s both;
}
.hero-slider__slide.is-active .hero-slider__subtitle {
  animation: heroFadeUp 1s ease 0.7s both;
}
.hero-slider__slide.is-active .hero-slider__actions {
  animation: heroFadeUp 1s ease 1.1s both;
}
.hero-slider__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7s ease;
  will-change: transform;
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31, 31, 31, 0.35) 0%, rgba(35, 69, 45, 0.45) 50%, rgba(35, 69, 45, 0.55) 100%);
  z-index: 1;
}
.hero-slider__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}
.hero-slider__inner {
  max-width: 840px;
  padding: 50px 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-slider__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hero-slider__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(250, 248, 243, 0.92);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-slider__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-slider__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}
.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.hero-slider__dot.is-active, .hero-slider__dot:hover {
  background: #ffffff;
  border-color: #ffffff;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-intro {
  padding: 50px 0 0;
  background: #FAF8F3;
}
.home-intro__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.home-intro__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: #1F1F1F;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.home-intro__text {
  font-size: 1.05rem;
  color: rgba(31, 31, 31, 0.7);
  line-height: 1.8;
  padding: 0 20px;
}

.home-gallery {
  padding: 50px 0;
  background: #FAF8F3;
  overflow: hidden;
}
.home-gallery__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.home-gallery__track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.home-gallery__slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}
.home-gallery__link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.home-gallery__link img {
  width: 100%;
  aspect-ratio: 37/27;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-gallery__link:hover img {
  transform: scale(1.05);
}
.home-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(35, 69, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23452D;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}
.home-gallery__arrow:hover {
  background: #23452D;
  color: #ffffff;
}
.home-gallery__arrow--prev {
  left: 0;
}
.home-gallery__arrow--next {
  right: 0;
}

.featured-about {
  padding: 140px 0 80px;
  background: #E9DFC9;
  margin-bottom: 50px;
}
.featured-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.featured-about__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: #1F1F1F;
}
.featured-about__text {
  font-size: 1.05rem;
  color: rgba(31, 31, 31, 0.75);
  line-height: 1.8;
}
.featured-about__text p + p {
  margin-top: 1rem;
}
.featured-about__logo {
  margin-top: 3.75rem;
}
.featured-about__logo img {
  height: 50px;
  width: auto;
  opacity: 0.85;
}
.featured-about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 -10px;
  padding: 0 10px;
}
.featured-about__image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.featured-about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.featured-about__image:hover img {
  transform: scale(1.03);
}
.featured-about__image--up {
  margin-top: 0;
}
.featured-about__image--down {
  margin-top: 3rem;
}
.featured-about__caption {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32%;
  pointer-events: none;
}
.featured-about__caption span {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: #ffffff;
  text-align: center;
  padding: 0 1.5rem;
}

.experience-cta {
  position: relative;
  padding: 210px 0;
  overflow: hidden;
  background: #1F1F1F;
}
.experience-cta__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.4;
}
.experience-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 69, 45, 0.5);
}
.experience-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.experience-cta__title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  color: #ffffff;
  max-width: 840px;
  margin: 0 auto 2.5rem;
  line-height: 1.2;
  font-weight: 400;
}
.experience-cta__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  color: #ffffff;
  transition: background var(--transition), transform var(--transition);
}
.experience-cta__play:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.why-us {
  padding: 140px 0 110px;
  background: #FAF8F3;
}
.why-us__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}
.why-us__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}
.why-us__intro {
  font-size: 1rem;
  color: rgba(31, 31, 31, 0.7);
  line-height: 1.8;
  padding-top: 0.5rem;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-us__card {
  background: #ffffff;
  padding: 3.75rem 1.875rem 2.2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}
.why-us__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  color: #D6B46B;
  position: relative;
}
.why-us__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(214, 180, 107, 0.3);
  border-radius: 50%;
}
.why-us__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #1F1F1F;
}
.why-us__card-text {
  font-size: 0.9rem;
  color: rgba(31, 31, 31, 0.65);
  line-height: 1.7;
}

.home-contact {
  position: relative;
  padding: 100px 0;
  background: #E9DFC9;
}
.home-contact__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.home-contact__map--placeholder {
  background: linear-gradient(135deg, #3D5A40, #23452D);
}
.home-contact__map-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.home-contact__map-fallback p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 400px;
}
.home-contact__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.home-contact__form {
  background: #ffffff;
  padding: 4.375rem 4.375rem 3.75rem;
  max-width: 570px;
  width: 100%;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.07);
}
.home-contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #1F1F1F;
}

.contact-form--compact .form-group {
  margin-bottom: 1.25rem;
}
.contact-form--compact .field-inner input,
.contact-form--compact .field-inner textarea {
  width: 100%;
  height: 52px;
  padding: 10px 20px;
  border: 1px solid rgba(35, 69, 45, 0.15);
  background: #FAF8F3;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.contact-form--compact .field-inner input:focus,
.contact-form--compact .field-inner textarea:focus {
  outline: none;
  border-color: #D6B46B;
}
.contact-form--compact .field-inner textarea {
  height: 150px;
  resize: vertical;
}
.contact-form--compact button[type=submit] {
  width: 100%;
}

@media (max-width: 1024px) {
  .home-gallery__slide {
    flex: 0 0 calc(50% - 10px);
  }
  .featured-about__grid {
    grid-template-columns: 1fr;
  }
  .featured-about__images {
    margin-top: 2rem;
  }
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-contact__container {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .home-gallery {
    padding: 30px 0;
  }
  .home-gallery__carousel {
    padding: 0 40px;
  }
  .home-gallery__slide {
    flex: 0 0 85%;
  }
  .featured-about {
    padding: 80px 0 60px;
  }
  .featured-about__images {
    grid-template-columns: 1fr;
  }
  .featured-about__image--down {
    margin-top: 1rem;
  }
  .experience-cta {
    padding: 120px 0;
  }
  .experience-cta__image {
    background-attachment: scroll;
  }
  .why-us {
    padding: 80px 0 60px;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .home-contact {
    padding: 60px 0;
  }
  .home-contact__map {
    position: relative;
    height: 300px;
  }
  .home-contact__form {
    padding: 2.5rem 1.5rem;
  }
}

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