@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --ivory: #f7f1e7;
  --cream: #fffaf2;
  --emerald: #173f35;
  --emerald-light: #245b4d;
  --nyonya-red: #8b1f3d;
  --gold: #c49a48;
  --blue: #315c92;
  --charcoal: #292823;
  --muted: #716d64;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 25, 20, 0.12);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  color: var(--emerald);
}

h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--emerald);
}

p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 5%;
  color: var(--white);
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 18, 0.78),
    rgba(10, 22, 18, 0)
  );
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(23, 63, 53, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-book-button,
.primary-button,
.secondary-button,
.secondary-dark-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.header-book-button,
.primary-button {
  color: var(--white);
  background: var(--gold);
}

.header-book-button:hover,
.primary-button:hover {
  background: #ab8033;
  transform: translateY(-2px);
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-button:hover {
  color: var(--emerald);
  background: var(--white);
}

.secondary-dark-button {
  border-color: var(--emerald);
  color: var(--emerald);
  background: transparent;
}

.secondary-dark-button:hover {
  color: var(--white);
  background: var(--emerald);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 180px 7% 90px;
  color: var(--white);
  background:
    linear-gradient(
        rgba(9, 27, 22, 0.28),
        rgba(9, 27, 22, 0.45)
    ),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(255, 220, 150, 0.12),
      transparent 40%
    ),
    linear-gradient(
      to right,
      rgba(8, 30, 24, 0.82),
      rgba(8, 30, 24, 0.18)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  display: block;
  width: 1px;
  height: 42px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.section {
  width: min(var(--max-width), 90%);
  margin: 0 auto;
  padding: 110px 0;
}

.story-section {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.feature-card h3,
.feature-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.feature-card h3 {
  padding-top: 24px;
}

.feature-card p {
  padding-bottom: 28px;
  color: var(--muted);
}

.image-placeholder {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(rgba(23, 63, 53, 0.28), rgba(23, 63, 53, 0.52)),
    linear-gradient(135deg, var(--blue), var(--emerald));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  text-align: center;
}
  .story-photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.story-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;}
.story-caption {
   width: 100%;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 12px;}

.story-caption strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    color: var(--forest);
    margin-bottom: 6px;
}

.story-caption span {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}
.dining-section {
  width: 100%;
  max-width: none;
  padding-right: 5%;
  padding-left: 5%;
  background:
    linear-gradient(rgba(247, 241, 231, 0.95), rgba(247, 241, 231, 0.95)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(49, 92, 146, 0.05) 20px,
      rgba(49, 92, 146, 0.05) 21px
    );
}

.rooms-section {
  padding-bottom: 130px;
}

.centred-action {
  margin-top: 48px;
  text-align: center;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: 5%;
  padding-left: 5%;
  color: var(--white);
  background: var(--emerald);
}

.gallery-section h2 {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  min-height: 700px;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.gallery-grid .image-placeholder {
  min-height: 260px;
}

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

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

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 5%;
  color: rgba(255, 255, 255, 0.72);
  background: #102c25;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 120px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: #1f9d5b;
  box-shadow: 0 14px 34px rgba(15, 88, 48, 0.35);
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding: 14px 5%;
  }

  .desktop-nav {
    display: none;
  }

  .header-book-button {
    min-height: 44px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 92svh;
    padding-top: 130px;
  }

  .story-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .story-section {
    gap: 40px;
  }

  .story-placeholder {
    min-height: 460px;
  }

  .gallery-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .tall,
  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .section {
    width: 88%;
    padding: 78px 0;
  }

  .hero {
    padding-right: 6%;
    padding-left: 6%;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: auto;
  }
}/* ===== HERO REFINEMENT ===== */

.site-header {
  min-height: 96px;
  align-items: flex-start;
  padding: 24px 4.5%;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding-top: 2px;
}

.brand::after {
  content: "MESILAU · KUNDASANG · SABAH";
  margin-top: 7px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.desktop-nav {
  align-self: center;
  gap: 34px;
  padding-top: 2px;
}

.header-book-button {
  align-self: center;
  min-height: 58px;
  padding: 16px 32px;
  border-radius: 2px;
}

.hero {
  padding-left: 6.8%;
  background:
    linear-gradient(
      rgba(9, 27, 22, 0.32),
      rgba(9, 27, 22, 0.48)
    ),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(255, 220, 150, 0.09),
      transparent 42%
    ),
    linear-gradient(
      to right,
      rgba(8, 30, 24, 0.66),
      rgba(8, 30, 24, 0.08)
    );
}

h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6.4vw, 6.4rem);
}

.hero-description {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions a {
  min-height: 58px;
}

.scroll-indicator::after {
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0.25);
    transform-origin: top;
    opacity: 0.35;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(0.25);
    transform-origin: bottom;
    opacity: 0.35;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    align-items: center;
    padding: 13px 5%;
  }

  .brand {
    padding-top: 0;
  }

  .brand::after {
    margin-top: 5px;
    font-size: 0.52rem;
    letter-spacing: 0.19em;
  }

  .header-book-button {
    min-height: 44px;
    padding: 10px 16px;
  }

  .hero {
    padding-left: 6%;
  }
}
/* Heritage Menu Button */

.menu-button-wrap {
    text-align: center;
    margin: 50px 0 20px;
}

.menu-button {
    display: inline-block;
    padding: 18px 42px;
    background: #0F5B4C;
    color: #F5E6B8;
    text-decoration: none;
    border: 2px solid #C9A44C;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(15, 91, 76, 0.25);
    transition: 0.3s ease;
}

.menu-button:hover {
    background: #0A473B;
    transform: translateY(-3px);
}

.room-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}
/* ===== Guest Reviews ===== */

.reviews-section {
    padding: 100px 5%;
    background: #0f4f43;
    color: #ffffff;
}

.reviews-section .section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.reviews-section .section-heading h2 {
    color: #ffffff;
}

.reviews-section .section-heading p {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-section .eyebrow {
    color: #d0a146;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(208, 161, 70, 0.35);
    border-radius: 18px;
}

.review-stars {
    margin-bottom: 20px;
    color: #d0a146;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
}

.review-card p {
    margin-bottom: 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.review-card h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 1.05rem;
}

.review-card span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

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

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.review-card h3 {
    margin-top: auto;
}
.reviews-trust{
    margin-top:80px;
    text-align:center;
}

   .reviews-rating {
    color: #C9A44C;
    font-size: 40px;
    letter-spacing: 6px;
    margin-bottom: 18px;
}

.reviews-trust strong{
    display:block;
    font-size:2.2rem;
    font-family:"Cormorant Garamond", serif;
    color:#ffffff;
    margin-bottom:12px;
}

.reviews-trust p{
    font-size:1.1rem;
    color:rgba(255,255,255,.85);
    margin-bottom:36px;
}

.reviews-button{
    display:inline-block;
    padding:16px 42px;
    background:#C9A44C;
    color:#123F37;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews-button:hover{
    background:#d7b45a;
    transform:translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
/* Gallery */
.gallery-section {
    background: #f7f1e7;
    padding: 110px 6%;
}

.gallery-section .section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.gallery-section .section-heading span {
    display: block;
    margin-bottom: 14px;
    color: #c9a44c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.gallery-section .section-heading h2 {
    margin-bottom: 18px;
    color: #174f46;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.05;
}

.gallery-section .section-heading p {
    color: #5d665f;
    font-size: 1.05rem;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    margin: 0;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 80px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-featured {
        grid-column: auto;
        grid-row: auto;
    }
}.chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chat-toggle {
    background: linear-gradient(135deg, #0F5A4A, #1C7A67);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    transition: all .3s ease;
}

.chat-toggle:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,.25);
}
.footer-logo img {
    width: 130px;
    height: auto;
    display: block;
    opacity: 0.95;
}
.chat-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    padding: 20px;
    display: none;
    z-index: 9999;
}

.chat-menu.show {
    display: block;
}

.chat-menu h3 {
    margin: 0 0 8px;
    color: #0f3a2f;
    font-size: 1.2rem;
}

.chat-menu p {
    color: #666;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.chat-menu a {
    display: block;
    text-decoration: none;
    background: #f6f4ee;
    color: #0f3a2f;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: 0.25s;
    font-weight: 600;
}

.chat-menu a:hover {
    background: #C9A44C;
    color: white;
}

.whatsapp-direct {
    background: #0f3a2f !important;
    color: white !important;
}
.menu-item{
    width:100%;
    border:none;
    background:#f6f4ee;
    color:#0f3a2f;
    padding:12px 16px;
    margin-bottom:10px;
    border-radius:12px;
    text-align:left;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.25s;
}

.menu-item:hover{
    background:#C9A44C;
    color:white;
}

.menu-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    margin-bottom: 0;
    background: #faf9f5;
    border-left: 4px solid #C9A44C;
    border-radius: 12px;
    color: #333;
    line-height: 1.8;
    transition: max-height 0.35s ease,
                opacity 0.35s ease,
                padding 0.35s ease,
                margin 0.35s ease;
}

.menu-content strong {
    color: #0f3a2f;
}

.menu-content.show {
    display: block;
    max-height: 900px;
    opacity: 1;
    padding: 18px;
    margin-top: 12px;
    margin-bottom: 15px;
}

.book-btn{
    display:inline-block;
    background:#0f3a2f;
    color:white;
    padding:10px 18px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.book-btn:hover{
    background:#C9A44C;
}
/* Concierge Buttons */

.menu-item{
    width:100%;
    background:#f6f4ee;
    border:none;
    border-radius:16px;
    padding:18px;
    margin-bottom:14px;
    font-size:1.05rem;
    font-weight:600;
    color:#0f3a2f;
    text-align:left;
    cursor:pointer;
    transition:all .25s ease;
}

.menu-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
    background:#ffffff;
}
.menu-item.active{
    background:#C9A44C;
    color:white;
}
 .menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.arrow{
    transition:transform .3s ease;
}

.menu-item.active .arrow{
    transform:rotate(90deg);
}
.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:18px 0;
}

.info-item{
    background:#faf8f3;
    border-radius:12px;
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:6px;
    border:1px solid rgba(201,164,76,.15);
}

.info-item span{
    color:#666;
    font-size:14px;
}

.info-item strong{
    color:#0F3A2F;
    font-size:16px;
    font-weight:700;
}

.full{
    grid-column:1 / -1;
}.concierge-header h3{
    margin:0;
    color:#0F3A2F;
    font-size:28px;
}

.concierge-header p{
    margin:12px 0 24px;
    color:#666;
    line-height:1.6;
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:20px 0;
}

.info-item{
    background:#F8F5EF;
    padding:14px;
    border-radius:12px;
}

.info-item span{
    display:block;
    color:#666;
    font-size:14px;
    margin-bottom:6px;
}

.info-item strong{
    color:#0F3A2F;
    font-size:15px;
}

.info-item.full{
    grid-column:1 / -1;
}
.concierge-header h3{
    margin:0;
    color:#0F3A2F;
    font-size:28px;
}

.concierge-header p{
    margin:12px 0 24px;
    color:#666;
    line-height:1.6;
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:20px 0;
}

.info-item{
    background:#F8F5EF;
    padding:14px;
    border-radius:12px;
}

.info-item span{
    display:block;
    color:#666;
    font-size:14px;
    margin-bottom:6px;
}

.info-item strong{
    color:#0F3A2F;
    font-size:15px;
}

.info-item.full{
    grid-column:1 / -1;
}

.book-btn{
    display:block;
    margin-top:20px;
    background:#0F6A57;
    color:white;
    text-align:center;
    text-decoration:none;
    padding:16px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.book-btn:hover{
    background:#C9A44C;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 120px;
}

.footer-links a {
    display: block;
    white-space: nowrap;
}
.footer-contact a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .3s;
}

.footer-contact a:hover {
    color: #C9A44C;
}