/* ===== 蒙帝斯異國餐廳 Montes Cuisine ===== */

:root {
  --dark: #241a12;
  --brown-text: #3a2c20;
  --cream: #faf5ec;
  --cream-2: #f1e8d8;
  --gold: #c8973f;
  --gold-dark: #a97928;
  --terracotta: #c2542e;
  --line-green: #06c755;
  --shadow: 0 10px 30px rgba(36, 26, 18, 0.12);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--brown-text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  color: var(--dark);
  line-height: 1.4;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  color: var(--gold-dark);
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-desc {
  max-width: 680px;
  color: #5c4a3a;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head .section-desc {
  margin: 0 auto;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(169, 121, 40, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.3);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(250, 245, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(36, 26, 18, 0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--cream);
  box-shadow: 0 12px 20px rgba(36, 26, 18, 0.1);
  padding: 20px 24px 30px;
  z-index: 998;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu > a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border-bottom: 1px solid rgba(36, 26, 18, 0.08);
}

.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mobile-menu-actions .btn {
  flex: 1 1 auto;
  padding: 12px 14px;
  font-size: 0.92rem;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/banner.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  color: #fff;
}

.hero-glass {
  max-width: 560px;
  background: rgba(36, 26, 18, 0.16);
  backdrop-filter: blur(7px) saturate(110%);
  -webkit-backdrop-filter: blur(7px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 16px 40px rgba(20, 14, 9, 0.18);
}

.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  max-width: 720px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.15em;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== About ===== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
  color: #4a3b2c;
}

.about-text p:first-of-type {
  font-size: 1.08rem;
  color: var(--brown-text);
}

.about-badges {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.about-badges div {
  text-align: left;
}

.about-badges strong {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 1.8rem;
  color: var(--gold-dark);
}

.about-badges span {
  font-size: 0.85rem;
  color: #6b5a48;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Services ===== */
.services {
  background: var(--cream-2);
  position: relative;
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card .service-sub {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: #5c4a3a;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== Philosophy ===== */
.philosophy {
  background: var(--dark);
  color: #f1e8d8;
  position: relative;
}

.philosophy .section-desc,
.philosophy p {
  color: rgba(241, 232, 216, 0.75);
}

.philosophy .section-label {
  color: var(--gold);
}

.philosophy .section-title {
  color: #fff;
}

.pull-quote {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: #fff;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
  line-height: 1.7;
  position: relative;
  padding: 0 20px;
  text-wrap: balance;
}

.pull-quote::before,
.pull-quote::after {
  content: '"';
  color: var(--gold);
  font-size: 2.5rem;
  font-family: "Noto Serif TC", serif;
  opacity: 0.8;
}

.philosophy-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.philosophy-col h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.philosophy-col p {
  font-size: 0.95rem;
}

.future-title {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 36px;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.future-card {
  background: rgba(241, 232, 216, 0.06);
  border: 1px solid rgba(241, 232, 216, 0.14);
  border-radius: var(--radius);
  padding: 22px 18px;
}

.future-num {
  color: var(--gold);
  font-family: "Noto Serif TC", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.future-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.future-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ===== Reviews ===== */
.reviews {
  background: var(--dark);
  text-align: center;
}

.reviews .section-label {
  color: var(--gold);
}

.reviews .section-title {
  color: #fff;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.rating-num {
  font-family: "Noto Serif TC", serif;
  font-size: 1.6rem;
  color: #fff;
}

.rating-count {
  color: rgba(241, 232, 216, 0.6);
  font-size: 0.92rem;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(200, 151, 63, 0.4);
  padding-bottom: 3px;
  transition: opacity 0.2s ease;
}

.maps-link:hover {
  opacity: 0.75;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
  text-align: left;
}

.review-card {
  border: 1px solid rgba(241, 232, 216, 0.14);
  background: rgba(241, 232, 216, 0.03);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.review-role {
  font-size: 0.78rem;
  color: rgba(241, 232, 216, 0.45);
}

.review-card .review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(241, 232, 216, 0.7);
  white-space: pre-line;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-toggle {
  display: none;
  align-self: flex-start;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.review-toggle:hover {
  text-decoration: underline;
}

.review-time {
  font-size: 0.78rem;
  color: rgba(241, 232, 216, 0.35);
  margin-top: 16px;
}

/* ===== Reservation CTA ===== */
.reserve {
  position: relative;
  background: linear-gradient(135deg, rgba(20,14,9,0.5), rgba(20,14,9,0.35)), url("../images/food-9.webp") center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 110px 0;
}

@media (max-width: 760px) {
  .reserve {
    background-attachment: scroll;
  }
}

.reserve h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.reserve p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 34px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.reserve-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-grid figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 9, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.gallery-grid figure:hover::before {
  background: rgba(20, 14, 9, 0.25);
}

.gallery-grid figure::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.gallery-grid figure:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.gallery-cta p {
  color: #5c4a3a;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 9, 0.94);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

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

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

@media (max-width: 600px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #1a120b;
  color: rgba(241, 232, 216, 0.8);
  padding-top: 80px;
  border-top: 1px solid rgba(200, 151, 63, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 232, 216, 0.14);
}

.footer-logo {
  height: 60px;
  margin-bottom: 18px;
  display: inline-block;
}

.footer-logo img {
  height: 60px;
}

.footer p {
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.footer-list a,
.footer-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: rgba(241, 232, 216, 0.8);
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(241, 232, 216, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-row svg {
  width: 18px;
  height: 18px;
  stroke: #f1e8d8;
  fill: none;
  stroke-width: 1.8;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  filter: grayscale(0.3) contrast(1.05);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 220px;
}

.footer-bottom {
  padding: 26px 0 34px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(241, 232, 216, 0.55);
}

/* ===== Floating CTA ===== */
.fab-group {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fab-top {
  background: var(--dark);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.2s ease;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.fab-char {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}

.fab-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.fab-line {
  background-color: #06c755;
}

.fab-line svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

@media (max-width: 760px) {
  .fab-group {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab-char {
    font-size: 1.3rem;
  }

  .fab-line svg {
    width: 25px;
    height: 25px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-cols {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .nav-links,
  .nav-cta .btn-line {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 100px 16px 56px;
  }

  .hero-glass {
    padding: 22px 20px;
    border-radius: 16px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }

  .pull-quote {
    font-size: 1.15rem;
    padding: 0 8px;
    margin-bottom: 50px;
  }

  .pull-quote::before,
  .pull-quote::after {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    padding: 12px 16px;
    font-size: 0.88rem;
    justify-content: center;
  }

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

  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reserve {
    text-align: left;
  }

  .reserve p {
    margin: 0 0 34px;
  }

  .reserve-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .reserve-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
