:root {
  --font-title: "Cormorant Garamond", serif;
  --font-body: "Lato", sans-serif;
  --font-menu: "Libre Baskerville", serif;
  --white: #fff;
  --ink: #1f1712;
  --coffee: #4a2e1c;
  --line: rgba(255, 255, 255, 0.72);
  --paper: rgba(255, 252, 248, 0.95);
  --shadow: 0 18px 45px rgba(34, 20, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: #fffaf4;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  width: 100%;
  transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--paper);
  border-bottom: 1px solid rgba(74, 46, 28, 0.12);
  box-shadow: var(--shadow);
}

.header-inner {
  width: min(1280px, calc(100% - 56px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 30px;
  transition: min-height 0.28s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  color: var(--white);
  line-height: 0.8;
  transition: color 0.28s ease;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: var(--coffee);
}

.brand-wordmark {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 18px;
  line-height: 1;
  transition: color 0.28s ease;
}

.site-header.is-scrolled .primary-nav,
.site-header.is-open .primary-nav {
  color: var(--ink);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 174px;
  padding: 8px 12px;
  background: rgba(255, 252, 248, 0.96);
  color: #2c1b12;
  font-family: var(--font-title);
  font-size: 17px;
  box-shadow: 0 16px 28px rgba(26, 16, 10, 0.2);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(74, 46, 28, 0.14);
}

.submenu a:last-child {
  border-bottom: 0;
}

.submenu a:hover {
  color: #8a5e3b;
}

.header-booking,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid currentColor;
  font-family: var(--font-menu);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-booking {
  color: var(--white);
}

.site-header.is-scrolled .header-booking,
.site-header.is-open .header-booking {
  color: var(--ink);
}

.header-booking:hover {
  background: var(--white);
  color: var(--coffee);
}

.site-header.is-scrolled .header-booking:hover {
  background: var(--coffee);
  border-color: var(--coffee);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  width: 100%;
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  display: grid;
  place-items: center;
  padding: 164px 24px 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
}

.swiper-slide-active .hero-bg {
  animation: heroZoom 8s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 22, 12, 0.36);
}

.hero-panel {
  /* position: relative; */
  z-index: 1;
  width: min(980px, 100%);
  min-height: 480px;
  padding: 78px 54px 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: rgba(48, 24, 9, 0.3);
  border-radius: 14px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-kicker {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(50px, 4.6vw, 76px);
  font-weight: 600;
  line-height: 0.98;
}

.hero-copy {
  width: min(670px, 100%);
  margin: 28px 0 34px;
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 400;
  line-height: 1.25;
}

.hero-button {
  border-color: var(--white);
  background: var(--white);
  color: var(--coffee);
  min-width: 215px;
  min-height: 66px;
  font-size: 24px;
}

.hero-button:hover {
  background: transparent;
  color: var(--white);
}

.hero-animate {
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide:first-child .hero-kicker,
.swiper-slide-active .hero-kicker {
  animation: heroReveal 0.85s ease forwards 0.2s;
}

.hero-slide:first-child h1.hero-animate,
.swiper-slide-active h1.hero-animate {
  animation: heroReveal 0.9s ease forwards 0.42s;
}

.hero-slide:first-child .hero-copy,
.swiper-slide-active .hero-copy {
  animation: heroReveal 0.9s ease forwards 0.64s;
}

.hero-slide:first-child .hero-button,
.swiper-slide-active .hero-button {
  animation: heroReveal 0.9s ease forwards 0.86s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.home-about {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 8vw, 135px) 0 clamp(56px, 6vw, 100px);
  background: #f8f5ef;
}

.about-intro {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.about-intro h2 {
  margin: 0;
  color: #3f2413;
  font-family: var(--font-title);
  font-size: clamp(54px, 3.8vw, 70px);
  font-weight: 700;
  line-height: 0.98;
}

.about-copy {
  padding-top: 8px;
  color: #1f1a16;
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.28;
}

.about-copy p {
  margin: 0 0 28px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  width: min(1760px, calc(100% - 110px));
  margin: clamp(78px, 7vw, 118px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8dfd4;
  isolation: isolate;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.about-photo:hover::before,
.about-photo:hover::after {
  opacity: 1;
}

.about-photo:hover::after {
  transform: scale(1);
}

.about-photo:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.09);
}

.about-photo-small {
  aspect-ratio: 460 / 430;
}

.about-photo-tall {
  aspect-ratio: 460 / 585;
}

.about-photo:nth-child(1) {
  transform: translateY(54px);
}

.about-photo:nth-child(3) {
  transform: translateY(54px);
}

.about-marquee {
  width: 100%;
  margin-top: clamp(104px, 10vw, 172px);
  color: #653715;
  font-family: var(--font-title);
  font-size: clamp(72px, 7.8vw, 154px);
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding-right: 0.38em;
}

.marquee-track span::after {
  content: "";
  width: 0.22em;
  height: 0.22em;
  margin-left: 0.38em;
  border-radius: 50%;
  background: currentColor;
}

.marquee-track-left {
  animation: marqueeLeft 30s linear infinite;
}

.marquee-track-right {
  margin-top: 18px;
  animation: marqueeRight 30s linear infinite;
}

.reveal-item {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

.about-photo.reveal-item.is-visible:nth-child(1),
.about-photo.reveal-item.is-visible:nth-child(3) {
  transform: translateY(54px);
}

.about-gallery .reveal-item:nth-child(2) {
  transition-delay: 0.14s;
}

.about-gallery .reveal-item:nth-child(3) {
  transition-delay: 0.26s;
}

.about-gallery .reveal-item:nth-child(4) {
  transition-delay: 0.38s;
}

.home-services {
  overflow: hidden;
  padding: clamp(68px, 5.8vw, 98px) 0 clamp(86px, 8vw, 130px);
  background: #eee2d2;
}

.services-heading {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.services-heading h2 {
  margin: 0;
  color: #3f2413;
  font-family: var(--font-title);
  font-size: clamp(48px, 4.2vw, 74px);
  font-weight: 700;
  line-height: 1.02;
}

.services-heading p {
  width: min(780px, 100%);
  margin: 22px auto 0;
  color: #24201d;
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.35;
}

.services-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 66px;
  margin-top: 42px;
  padding: 14px 32px;
  background: #623513;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.services-booking:hover {
  background: #3f2413;
  transform: translateY(-3px);
}

.services-showcase {
  width: min(1760px, calc(100% - 110px));
  margin: clamp(54px, 5.4vw, 82px) auto 0;
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 1.8vw, 34px);
  height: clamp(540px, 35vw, 700px);
  min-height: 0;
}

.service-card {
  flex: 1 1 0;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s ease;
}

.service-card.is-active {
  flex: 2.45 1 0;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #d9c5b3;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(43, 24, 13, 0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card.is-active .service-image::after,
.service-card:hover .service-image::after {
  opacity: 1;
}

.service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.service-card.is-active .service-image img,
.service-card:hover .service-image img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.1);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 28px;
  text-align: center;
  transform: translateY(-8px);
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.45s ease, transform 0.35s ease;
}

.service-card.is-active .service-content {
  max-height: 190px;
  opacity: 1;
  padding: 28px 28px 0;
  transform: translateY(0);
}

.service-content h3 {
  margin: 0;
  color: #3f2413;
  font-family: var(--font-title);
  font-size: clamp(32px, 2.2vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.service-content p {
  width: min(650px, 100%);
  margin: 16px auto 0;
  color: #2d2722;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.25;
}

.booking-banner {
  position: relative;
  min-height: clamp(340px, 24vw, 430px);
  display: grid;
  place-items: center;
  padding: 72px 24px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background-image: url("/assets/images/book-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.booking-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 23, 16, 0.42);
}

.booking-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 35%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.booking-banner-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
}

.booking-banner h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(42px, 3.3vw, 62px);
  font-weight: 700;
  line-height: 1.04;
}

.booking-banner p {
  margin: 20px auto 0;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.28;
}

.booking-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(360px, 100%);
  min-height: 62px;
  margin-top: 38px;
  padding: 14px 34px;
  background: var(--white);
  color: #5b3113;
  font-family: var(--font-menu);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.booking-banner-button:hover {
  background: #5b3113;
  color: var(--white);
  transform: translateY(-3px);
}

.site-footer {
  background: #f8f5ef;
  color: #1f1a16;
  border-top: 1px solid rgba(63, 36, 19, 0.25);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  min-height: 455px;
}

.footer-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 70px);
}

.footer-column+.footer-column {
  border-left: 1px solid rgba(63, 36, 19, 0.25);
}

.footer-brand {
  flex-direction: column;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--coffee);
  font-family: var(--font-title);
  line-height: 0.85;
}

.footer-wordmark {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-logo-subtitle {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-brand p {
  width: min(360px, 100%);
  margin: 34px auto 28px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-social a,
.footer-social-disabled {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  background: rgba(101, 55, 21, 0.1);
  transform: translateY(-3px);
}

.footer-social img {
  display: block;
}

.footer-social-disabled {
  cursor: default;
}

.footer-info {
  flex-direction: column;
  gap: 58px;
  text-align: center;
}

.footer-info h2 {
  margin: 0 0 22px;
  color: #3f2413;
  font-family: var(--font-title);
  font-size: clamp(36px, 2.6vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.footer-info address,
.footer-info p {
  margin: 0;
  font-style: normal;
  font-size: 19px;
  line-height: 1.5;
}

.footer-info address a {
  display: inline-block;
  margin-top: 2px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-info address a[href^="mailto:"] {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-map iframe {
  width: min(500px, 100%);
  height: 315px;
  display: block;
  border: 0;
  box-shadow: 0 10px 24px rgba(40, 25, 15, 0.14);
}

.footer-bottom {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(63, 36, 19, 0.25);
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 18px;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 22px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 18px;
  }

  .header-booking {
    min-width: 134px;
    min-height: 46px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .about-gallery {
    width: min(1100px, calc(100% - 54px));
    gap: 28px;
  }

  .services-showcase {
    width: min(1120px, calc(100% - 54px));
    gap: 18px;
  }
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-inner {
    width: min(100% - 34px, 760px);
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 72px;
  }

  .brand-wordmark {
    font-size: 42px;
  }

  .brand-subtitle {
    margin-top: 8px;
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    display: block;
    padding: 10px 22px 26px;
    background: var(--paper);
    color: var(--ink);
    font-size: 18px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .primary-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 15px 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(74, 46, 28, 0.14);
  }

  .nav-link::after {
    display: none;
  }

  .submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 16px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height 0.24s ease;
  }

  .has-submenu.is-expanded .submenu {
    max-height: 360px;
  }

  .has-submenu.is-expanded .chevron {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .header-booking {
    display: none;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 100svh;
  }

  .hero-slide {
    padding: 120px 16px 52px;
  }

  .hero-panel {
    min-height: 430px;
    padding: 54px 24px 48px;
    border-radius: 10px;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .about-intro {
    width: min(100% - 34px, 760px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro h2 {
    font-size: clamp(38px, 9vw, 64px);
  }

  .about-gallery {
    width: min(100% - 34px, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
  }

  .about-photo:nth-child(1),
  .about-photo:nth-child(3),
  .about-photo.reveal-item.is-visible:nth-child(1),
  .about-photo.reveal-item.is-visible:nth-child(3) {
    transform: translateY(0);
  }

  .about-marquee {
    margin-top: 72px;
    font-size: clamp(58px, 17vw, 92px);
  }

  .services-showcase {
    width: min(100% - 34px, 760px);
    height: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
  }

  .service-card,
  .service-card.is-active {
    flex: none;
    height: auto;
  }

  .service-image {
    aspect-ratio: 1 / 1.18;
  }

  .service-card.is-active .service-content {
    opacity: 1;
    max-height: 210px;
    padding: 18px 10px 4px;
    transform: translateY(0);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card:last-child .service-image {
    aspect-ratio: 2.15 / 1;
  }

  .service-card.is-active:not(:last-child) .service-image {
    aspect-ratio: 1 / 0.62;
  }

  .service-content h3 {
    font-size: 28px;
  }

  .service-content p {
    font-size: 14px;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  .booking-banner {
    background-attachment: scroll;
    min-height: 390px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding: 44px 24px;
  }

  .footer-column+.footer-column {
    border-left: 0;
    border-top: 1px solid rgba(63, 36, 19, 0.25);
  }

  .footer-info {
    gap: 42px;
  }

  .footer-map iframe {
    width: min(560px, 100%);
  }
}

@media (max-width: 560px) {
  .brand-wordmark {
    font-size: 36px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .hero-panel {
    min-height: 390px;
    padding-inline: 18px;
  }

  .hero-kicker {
    font-size: 23px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-button {
    min-width: 178px;
    min-height: 56px;
    font-size: 20px;
  }

  .home-about {
    padding-top: 70px;
  }

  .about-copy {
    font-size: 16px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-photo-small,
  .about-photo-tall {
    aspect-ratio: 1 / 1.05;
  }

  .marquee-track-right {
    margin-top: 8px;
  }

  .services-heading h2 {
    font-size: 42px;
  }

  .services-heading p {
    font-size: 16px;
  }

  .services-booking {
    min-width: 180px;
    min-height: 56px;
    margin-top: 34px;
    font-size: 20px;
  }

  .service-image {
    aspect-ratio: 1 / 1.24;
  }

  .service-card.is-active:not(:last-child) .service-image {
    aspect-ratio: 1 / 0.62;
  }

  .booking-banner {
    min-height: 430px;
    padding: 68px 18px;
  }

  .booking-banner h2 {
    font-size: 39px;
  }

  .booking-banner-button {
    min-height: 56px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-brand p {
    font-size: 16px;
  }

  .footer-social a,
  .footer-social-disabled {
    width: 48px;
    height: 48px;
  }

  .footer-info h2 {
    font-size: 34px;
  }

  .footer-info address,
  .footer-info p {
    font-size: 16px;
  }

  .footer-info address a {
    font-size: 22px;
  }

  .footer-map iframe {
    height: 280px;
  }

  .footer-bottom p {
    font-size: 16px;
  }
}


/* =========================
   ABOUT HERO (About page)
========================= */
.about-hero {
  position: relative;
  width: 100%;
  height: 360px;
  /* chiều cao banner desktop */
  overflow: hidden;
}

/* background image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .45) 0%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, .05) 70%,
      rgba(0, 0, 0, 0) 100%),
    url("/assets/images/about/about-banner.png") center / cover no-repeat;
}

/* content */
.about-hero-content {
  position: relative;
  z-index: 2;

  width: min(1320px, calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  padding: 0;

  display: flex;
  align-items: center;
}

.about-hero-content h1 {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: .5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-hero {
    height: 300px;
  }

  .about-hero-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 520px) {
  .about-hero {
    height: 240px;
  }

  .about-hero-bg {
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, .45) 0%,
        rgba(0, 0, 0, .25) 50%,
        rgba(0, 0, 0, .05) 80%,
        rgba(0, 0, 0, 0) 100%),
      url("/assets/images/about/about-banner.png") center / cover no-repeat;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }
}

/* =========================
   ABOUT PAGE - INTRO (aboutp-*)
========================= */
.aboutp-intro {
  padding: 80px 0 90px;
  background:
    linear-gradient(rgba(248, 245, 239, 0.9), rgba(248, 245, 239, 0.9)),
    url("/assets/images/image-bg.png") center/cover no-repeat;

}

.aboutp-container {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10px;
  align-items: start;
}

/* LEFT VIDEO */
.aboutp-media {
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 18px 45px rgba(0,0,0,.14); */
  /* background: #000; */
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* video dạng đứng (9:16) giống hình */
.aboutp-video {
  width: 100%;
  object-fit: cover;
  display: block;
  max-width: 490px;
  max-height: 687px;
}

.aboutp-image {
  width: 100%;
  object-fit: cover;
  display: block;
  max-width: 490px;
  max-height: 687px;
}

/* RIGHT CONTENT */
.aboutp-title {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #3f2413;
}

.aboutp-subtitle {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--coffee);
  opacity: .9;
}

.aboutp-text p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: #1f1a16;
  margin: 0 0 14px;
  max-width: 640px;
}

/* BUTTONS */
.aboutp-actions {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.aboutp-btn {
  min-height: 52px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.aboutp-btn-primary {
  background: #623513;
  color: var(--white);
  border: 1px solid #623513;
}

.aboutp-btn-primary:hover {
  background: #3f2413;
  border-color: #3f2413;
  transform: translateY(-3px);
}

.aboutp-btn-outline {
  background: transparent;
  color: #623513;
  border: 1px solid #623513;
}

.aboutp-btn-outline:hover {
  background: #623513;
  color: var(--white);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .aboutp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aboutp-title {
    font-size: 44px;
  }

  .aboutp-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 520px) {

  .about-hero-content,
  .aboutp-container {
    width: min(100% - 36px, 1320px);
  }

  .aboutp-intro {
    padding: 55px 0 65px;
  }

  .aboutp-title {
    font-size: 36px;
  }

  .aboutp-subtitle {
    font-size: 18px;
  }

  .aboutp-actions {
    gap: 12px;
  }

  .aboutp-btn {
    width: 100%;
  }
}


/* =========================
   TESTIMONIALS (testi-*)
========================= */
.testi-section {
  position: relative;
  padding: clamp(68px, 6vw, 96px) 0;
  background:
    linear-gradient(rgba(238, 226, 210, 0.92), rgba(238, 226, 210, 0.92)),
    url('/assets/images/home/testi-bg.png') center / cover no-repeat;
  overflow: hidden;
}

.testi-container {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  text-align: center;
}

.testi-title {
  font-family: var(--font-title);
  font-size: clamp(48px, 4.2vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 18px;
  color: #3f2413;
}

.testi-sub {
  max-width: 780px;
  margin: 0 auto 42px;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.35;
  color: #24201d;
}

/* slider wrap để đặt arrows ngoài */
.testi-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 56px 0;
  /* chừa chỗ cho arrows */
}

/* card */
.testi-card {
  background: rgba(255, 252, 248, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 46, 28, 0.12);
  border-radius: 14px;
  padding: 30px 26px;
  min-height: 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: transform .35s ease, box-shadow .35s ease;
}

.testi-name {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 24px;
  color: #3f2413;
}

.testi-quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: #1f1a16;
  font-style: italic;
}

/* hiệu ứng nhẹ */
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(34, 20, 12, 0.16);
}

/* pagination dots */
.testi-pagination {
  margin-top: 22px;
}

.testi-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(74, 46, 28, 0.24);
  margin: 0 6px !important;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: #623513;
  transform: scale(1.15);
}

/* arrows riêng */
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--coffee);
}

/* dùng pseudo để hiện icon */
.testi-prev::before,
.testi-next::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 22px 22px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 22px 22px;
  background: currentColor;
}

/* icon mũi tên (CSS mask) */
.testi-prev::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.testi-next::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
}

.testi-prev {
  left: 0;
}

.testi-next {
  right: 0;
}

.testi-nav:hover {
  color: #623513;
}

/* responsive */
@media (max-width: 900px) {
  .testi-container {
    width: min(100% - 48px, 1320px);
  }

  .testi-slider-wrap {
    padding: 10px 40px 0;
  }
}

@media (max-width: 520px) {
  .testi-container {
    width: min(100% - 36px, 1320px);
  }

  .testi-title {
    font-size: 40px;
  }

  .testi-sub {
    font-size: 17px;
  }

  .testi-slider-wrap {
    padding: 10px 0 0;
  }

  .testi-nav {
    display: none;
  }

  /* mobile dùng swipe + dots */
}


/* =========================
   SERVICES PAGE (srvpg-*)
========================= */

.srvpg-main {
  background:
    linear-gradient(rgba(248, 245, 239, 0.92), rgba(248, 245, 239, 0.92)),
    url("/assets/images/services/services-bg.png") center/cover fixed no-repeat;
  background-color: #f8f5ef;
}

.srvpg-wrap {
  padding: clamp(68px, 6vw, 96px) 0 clamp(86px, 8vw, 130px);
}

.srvpg-grid {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 5vw, 70px);
}

.srvpg-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.srvpg-media {
  width: 100%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(74, 46, 28, 0.14);
  box-shadow: 0 14px 35px rgba(34, 20, 12, 0.1);
}

.srvpg-media img {
  width: 100%;
  height: auto;
  display: block;
}

.srvpg-media-gap {
  margin-top: 6px;
}

/* block text */
.srvpg-block {
  padding: 0 6px;
}

.srvpg-title {
  font-family: var(--font-title);
  font-size: clamp(42px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  color: #3f2413;
  margin: 0 0 14px;
}

/* group */
.srvpg-group {
  margin: 14px 0 0;
}

.srvpg-group-title {
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: .03em;
  color: var(--coffee);
  margin: 18px 0 7px;
  text-transform: uppercase;
}

/* rows with dotted leaders */
.srvpg-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: baseline;

  padding: 5px 0;
}

.srvpg-left {
  font-family: var(--font-body);
  font-size: 17px;
  color: #1f1a16;
}

.srvpg-right {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: #623513;
  white-space: nowrap;
}

.srvpg-dots {
  border-bottom: 1px dotted rgba(74, 46, 28, 0.38);
  transform: translateY(-2px);
}

/* description line (multi-line) */
.srvpg-desc {
  line-height: 1.55;
  color: #24201d;
}

/* simple list in Add On */
.srvpg-simple .srvpg-row {
  padding: 5px 0;
}

/* responsive */
@media (max-width: 980px) {
  .srvpg-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 520px) {
  .srvpg-grid {
    width: min(100% - 36px, 1320px);
  }

  .srvpg-title {
    font-size: 40px;
  }

  .srvpg-group-title,
  .srvpg-left,
  .srvpg-right {
    font-size: 15px;
  }
}



.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg);
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 20px 10px;
  }

  .iframe-wrapper {
    height: 80vh;
    /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}


/* =========================
   GALLERY PAGE (gpg-*)
========================= */

.gpg-main {
  background: #fff;
}

.gpg-section {
  padding: 70px 0 90px;
}

.gpg-container {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  text-align: center;
}

.gpg-title {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 14px;
  color: #6a3f2a;
}

.gpg-sub {
  max-width: 820px;
  margin: 0 auto 50px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #2f2f2f;
}

/* GRID */
.gpg-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

/* ITEM */
.gpg-item {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #f3eee6;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gpg-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
}

/* hover nhẹ */
.gpg-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.gpg-item:hover img {
  transform: scale(1.05);
}

/* responsive */
@media (max-width: 900px) {
  .gpg-container {
    width: min(100% - 48px, 1320px);
  }

  .gpg-title {
    font-size: 36px;
  }

  .gpg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .gpg-section {
    padding: 55px 0 75px;
  }

  .gpg-container {
    width: min(100% - 36px, 1320px);
  }

  .gpg-sub {
    margin-bottom: 30px;
  }

  .gpg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (min-width: 480px) and (max-width: 520px) {
  .gpg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* LIGHTBOX TWEAK */
.lb-data .lb-caption {
  font-family: var(--font-body);
  font-size: 13px;
}

.lb-data .lb-number {
  font-family: var(--font-body);
  font-size: 12px;
  opacity: .8;
}

/* =========================
   CONTACT PAGE (ctpg-*)
========================= */

.ctpg-main{
  background: #f8f5ef;
}

.ctpg-section{
  padding: clamp(68px, 6vw, 96px) 0 clamp(86px, 8vw, 130px);
}

.ctpg-container{
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
}

.ctpg-grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(28px, 3vw, 42px);
  align-items: start;
}

/* MAP */
.ctpg-map{
  background: var(--paper);
  border: 1px solid rgba(74, 46, 28, 0.14);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(34, 20, 12, 0.1);
}

.ctpg-map iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* CARD */
.ctpg-card{
  background: #eee2d2;
  padding: 32px 30px;
  border: 1px solid rgba(74, 46, 28, 0.14);
  border-radius: 10px;
  min-height: 420px;
  box-shadow: 0 14px 35px rgba(34, 20, 12, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ctpg-title{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(34px, 2.5vw, 44px);
  line-height: 1.02;
  letter-spacing: .02em;
  margin: 0 0 24px;
  color: #3f2413;
}

.ctpg-block{
  margin-bottom: 18px;
}

.ctpg-label{
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--coffee);
}

.ctpg-text{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: #1f1a16;
}

.ctpg-link{
  color: inherit;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.ctpg-link:hover{
  color: #623513;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .ctpg-container{
    width: min(100% - 48px, 1320px);
  }
  .ctpg-grid{
    grid-template-columns: 1fr;
  }
  .ctpg-card{
    min-height: auto;
  }
  .ctpg-map iframe{
    height: 360px;
  }
}

@media (max-width: 520px){
  .ctpg-section{
    padding: 55px 0 75px;
  }
  .ctpg-container{
    width: min(100% - 36px, 1320px);
  }
  .ctpg-card{
    padding: 28px 24px;
  }
  .ctpg-map iframe{
    height: 320px;
  }
}
