/* ============ Brand System ============ */
:root {
  --gold: #c6a768;
  --gold-1: #b7903c;
  --gold-2: #e3c77e; /* gradient */
  --emerald: #0e3c35;
  --ivory: #faf8f2;
  --charcoal: #1c1c1c;
  --wood: #b07643;
  --ocean: #214e85;

  --bg: var(--ivory);
  --ink: #222;
  --muted: #6f726e;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --container: 1120px;
  --chip: #eee5cf;
}

/* Dark mode */
[data-theme="dark"] {
  --bg: #0b201d;
  --ink: #e8efe9;
  --muted: #a7b6b1;
  --chip: #113630;
  --card-bg: #113630;
  --card-border: #1a4a42;
  --input-bg: #0e2925;
  --input-border: #1a4a42;
}

/* Dark mode - Cards & Containers */
[data-theme="dark"] .room-showcase,
[data-theme="dark"] .booking-form,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .testimonial-item,
[data-theme="dark"] .facility-item,
[data-theme="dark"] .card,
[data-theme="dark"] .cards .card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

/* Dark mode - Form inputs */
[data-theme="dark"] .booking-form__input,
[data-theme="dark"] .contact-form__input,
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: var(--input-bg);
  border-color: var(--input-border);
  color: var(--ink);
}

[data-theme="dark"] .booking-form__input::placeholder,
[data-theme="dark"] .contact-form__input::placeholder,
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--muted);
}

/* Dark mode - Labels */
[data-theme="dark"] .booking-form__label,
[data-theme="dark"] .contact-form__label,
[data-theme="dark"] label {
  color: var(--ink);
}

/* Dark mode - Gallery filters */
[data-theme="dark"] .gallery-filter {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--ink);
}

[data-theme="dark"] .gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

[data-theme="dark"] .gallery-filter.is-active {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #fff;
}

/* Dark mode - Testimonials */
[data-theme="dark"] .testimonials-btn {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--ink);
}

[data-theme="dark"] .testimonials-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Dark mode - WhatsApp button */
[data-theme="dark"] .booking-form__whatsapp {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--ink);
}

/* Dark mode - Room showcase */
[data-theme="dark"] .room-showcase__title,
[data-theme="dark"] .room-showcase__desc {
  color: var(--ink);
}

[data-theme="dark"] .room-showcase__availability {
  color: var(--muted);
}

/* Dark mode - Facility items */
[data-theme="dark"] .facility-item {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .facility-item__label {
  color: var(--ink);
}

/* Dark mode - Location map */
[data-theme="dark"] .location-map {
  border-color: var(--card-border);
}

/* Dark mode - Features/Amenities */
[data-theme="dark"] .features > div {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--ink);
}

/* Dark mode - Section backgrounds */
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .location-section,
[data-theme="dark"] .contact-section {
  background: linear-gradient(180deg, rgba(17, 54, 48, 0.5) 0%, rgba(17, 54, 48, 0.2) 100%);
}

/* Dark mode - Testimonials dots */
[data-theme="dark"] .testimonials-dot {
  background: var(--card-border);
}

[data-theme="dark"] .testimonials-dot:hover,
[data-theme="dark"] .testimonials-dot.is-active {
  background: var(--gold);
}

/* Dark mode - Lightbox */
[data-theme="dark"] .lightbox__img {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Reset */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

/* Accessibility - Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: #222;
  padding: 8px 16px;
  z-index: 100;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Accessibility - Visually Hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States - Global */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 "Poppins", system-ui, Segoe UI, Roboto, Arial;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}
.center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.serif {
  font-family: "Cormorant Garamond", serif;
}
.display {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}
.h2 {
  font-weight: 700;
  font-size: clamp(24px, 4.2vw, 38px);
}
.h3 {
  font-weight: 700;
  font-size: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s;
}
.btn--gold {
  background: var(--gold);
  color: #222;
}
.btn--gold:hover {
  filter: brightness(0.95);
}
.btn--outline {
  border: 1px solid var(--emerald);
  color: var(--emerald);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(14, 60, 53, 0.08);
}
.btn--ghost {
  border: 1px solid #ddd;
  background: #fff;
}
.btn--chip {
  background: var(--chip);
  border: 0;
  padding: 8px 14px;
  border-radius: 0;
}
.btn--chip.is-active {
  outline: 2px solid var(--gold);
}
.btn--grad {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #222;
}

/* Gold logo and welcome accent */
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--emerald);
}
.logo--footer {
  color: #e4d5a8;
}
.welcome {
  font-family: "Great Vibes", cursive;
  font-size: clamp(22px, 4vw, 36px);
  color: #e4d5a8;
}

/* Layout helpers */
.section {
  padding: 80px 0;
}
.section--tint {
  background: linear-gradient(
    0deg,
    rgba(198, 167, 104, 0.06),
    rgba(198, 167, 104, 0.06)
  );
}
.narrow {
  max-width: 760px;
  margin-inline: auto;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards .card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.card.shadow {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.ratio {
  position: relative;
  padding-top: 56.25%;
}
.ratio-4x3 {
  padding-top: 75%;
}
.ratio > * {
  position: absolute;
  inset: 0;
}

/* Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: var(--bg);
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav.scrolled .brand__crown {
  color: var(--gold);
}
.nav.scrolled .brand__text {
  color: var(--ink);
}
.nav.scrolled .nav__menu a {
  color: var(--muted);
}
.nav.scrolled .nav__menu a:hover,
.nav.scrolled .nav__menu a.active {
  color: var(--ink);
}
.nav.scrolled .theme-toggle {
  color: var(--muted);
}
.nav.scrolled .theme-toggle:hover {
  color: var(--gold);
}
.nav.scrolled .nav__toggle span,
.nav.scrolled .nav__toggle span:before,
.nav.scrolled .nav__toggle span:after {
  background: var(--ink);
}
.nav__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 24px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6a768;
  text-decoration: none;
}
.brand__crown {
  width: 28px;
  height: 20px;
  color: #c6a768;
}
.brand__text {
  font: 700 16px "Playfair Display", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 2px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, #b7903c, #e3c77e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__menu a:hover::after,
.nav__menu a.active::after {
  transform: scaleX(1);
}
.nav__menu a:hover,
.nav__menu a.active {
  color: #fff;
}
.nav__cta {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
}
.theme-toggle {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.theme-toggle:hover {
  color: #c6a768;
}
.theme-toggle__icon {
  display: inline;
}
.theme-toggle__icon--dark {
  display: none;
}
[data-theme="dark"] .theme-toggle__icon--light {
  display: none;
}
[data-theme="dark"] .theme-toggle__icon--dark {
  display: inline;
}

.btn--gold {
  background: linear-gradient(90deg, #b7903c, #e3c77e);
  color: #222;
  border: 0;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(183, 144, 60, 0.25);
  transition: filter 0.2s, transform 0.05s;
}
.btn--gold:hover {
  filter: brightness(0.95);
}
.btn--lg {
  padding: 12px 22px;
}

/* Burger (mobile) */
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  position: relative;
  cursor: pointer;
}
.nav__toggle span,
.nav__toggle span:before,
.nav__toggle span:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.nav__toggle span {
  top: 20px;
}
.nav__toggle span:before {
  top: -8px;
}
.nav__toggle span:after {
  top: 8px;
}

/* Sticky CTA */
.cta-sticky {
  position: fixed;
  right: 16px;
  top: 88px;
  z-index: 50;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #222;
  padding: 10px 14px;
  border-radius: 0;
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-image: var(--hero, url('../assets/images/hero.jpg'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #222;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 100% 80% at 50% 50%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.6) 70%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.5) 100%
    );
}
.hero__content {
  position: relative;
  padding: 0 24px;
  max-width: 900px;
  margin-top: 60px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.crown-icon {
  width: 56px;
  height: 36px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.hero__welcome {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: 2px;
}
.hero__divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  margin: 0 auto 20px;
}
.hero__tagline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1px;
}
.hero__subtitle {
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 32px;
  letter-spacing: 0.5px;
}
.hero__btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(183, 144, 60, 0.3);
}
.hero__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
  animation: bounce 2s infinite;
}
.hero__scroll:hover {
  opacity: 1;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Legacy hero classes */
.hero__brand {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.display {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: 1px;
}
.tagline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1px;
}
.subtext {
  font-size: 14px;
  opacity: 0.85;
  margin: 8px 0 28px;
  letter-spacing: 0.5px;
}
.welcome {
  font-family: "Great Vibes", cursive;
  color: #e3c77e;
  font-size: clamp(22px, 4vw, 34px);
  margin-bottom: 6px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* About */
.about {
  padding: 100px 0;
  background: var(--bg);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about__image {
  margin: 0;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about__content {
  padding-right: 20px;
}
.about__line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 24px;
}
.about__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* Legacy support */
.gold-line {
  height: 3px;
  width: 110px;
  background: var(--gold);
  margin: 10px 0 16px;
}
.list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}
.list li {
  padding-left: 24px;
  position: relative;
  margin: 0.4rem 0;
}
.list li::before {
  content: "✓";
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header__line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.section-header__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin: 0 0 12px;
}
.section-header__subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Accommodations */
.accommodations {
  padding: 80px 0;
  background: var(--bg);
}

/* Room Showcase */
.room-showcase {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.room-showcase__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.room-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-showcase:hover .room-showcase__image img {
  transform: scale(1.03);
}
.room-showcase__info {
  padding: 28px 32px 32px;
}
.room-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.room-showcase__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 4px;
}
.room-showcase__availability {
  font-size: 13px;
  color: var(--muted);
}
.room-showcase__price {
  text-align: right;
}
.room-showcase__amount {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
}
.room-showcase__per {
  font-size: 12px;
  color: var(--muted);
}
.room-showcase__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
}

/* Facilities */
.facilities {
  padding: 60px 0 80px;
  background: var(--bg);
}
.facilities__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 26px);
  font-style: italic;
  text-align: center;
  color: var(--ink);
  margin: 0 0 40px;
}
.facilities__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.facility-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.facility-item__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}
.facility-item__label {
  font-size: 12px;
  text-align: center;
  color: var(--ink);
  line-height: 1.4;
}

/* Legacy Rooms (keeping for backwards compatibility) */
.room__body {
  padding: 16px;
}
.room__meta {
  color: #7a7a7a;
  font-size: 14px;
  margin: 6px 0 10px;
}
.room__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-weight: 700;
}
.room:hover .ratio img {
  transform: scale(1.04);
}
.ratio img {
  transition: transform 0.5s ease;
}

/* Facilities */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.features > div {
  background: #fff;
  border: 1px solid #eee;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background: var(--bg);
}
.booking-form {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.booking-form__field {
  margin-bottom: 20px;
}
.booking-form__field--full {
  width: 100%;
}
.booking-form__row .booking-form__field {
  margin-bottom: 0;
}
.booking-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.booking-form__icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.booking-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-form__input::placeholder {
  color: var(--muted);
}
.booking-form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 167, 104, 0.15);
}
.booking-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236f726e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.booking-form__submit {
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-form__submit:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}
.booking-form__submit svg {
  flex-shrink: 0;
}
.booking-form__divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}
.booking-form__divider::before,
.booking-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}
.booking-form__divider span {
  padding: 0 16px;
}
.booking-form__whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.booking-form__whatsapp:hover {
  background: #f9f9f9;
  border-color: #ccc;
}
.booking-form__whatsapp svg {
  color: var(--muted);
}

/* Legacy Forms */
.form {
  padding: 20px;
  border-radius: var(--radius);
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}
input,
select,
textarea {
  border: 1px solid var(--gold);
  background: #fff;
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(198, 167, 104, 0.35);
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.form__msg {
  margin-top: 10px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}
.form__msg:not(:empty) {
  display: block;
}
.form__msg--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form__msg--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Tooltip */
.tooltip span {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--bg);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 24px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}
.gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-filter.is-active {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  border-color: var(--gold);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Legacy Masonry Gallery */
.masonry {
  column-count: 3;
  column-gap: 12px;
  margin-top: 18px;
}
.m-item {
  break-inside: avoid;
  display: block;
  margin: 0 0 12px;
  border-radius: 14px;
  overflow: hidden;
}
.m-item img {
  transition: transform 0.35s ease;
}
.m-item:hover img {
  transform: scale(1.04);
}
.filters {
  margin: 10px 0 4px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
.lightbox.open {
  display: flex;
}
.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(198, 167, 104, 0.06) 0%, rgba(198, 167, 104, 0.02) 100%);
}
.testimonials-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.testimonial-item {
  display: none;
  background: #fff;
  border-radius: 8px;
  padding: 48px 40px;
  margin: 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.testimonial-item.is-active {
  display: block;
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 3px solid rgba(198, 167, 104, 0.2);
}
.testimonial-avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  border: none;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
  padding: 0;
  border: none;
}
.testimonial-original {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}
.testimonial-translation {
  display: block;
  font-size: 0.85em;
  color: var(--gold);
  opacity: 0.9;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.testimonial-location {
  font-size: 13px;
  color: var(--muted);
}
.testimonials-btn {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.testimonials-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}
.testimonials-dot:hover {
  background: var(--gold);
  opacity: 0.7;
}
.testimonials-dot.is-active {
  background: var(--gold);
  width: 28px;
  border-radius: 10px;
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(198, 167, 104, 0.06) 0%, rgba(198, 167, 104, 0.02) 100%);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.location-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.location-map iframe {
  width: 100%;
  height: 100%;
}
.location-info {
  padding: 10px 0;
}
.location-address {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.location-address__icon {
  flex-shrink: 0;
  color: var(--gold);
}
.location-address__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 8px;
}
.location-address__text {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.location-nearby {
  margin-bottom: 32px;
}
.location-nearby__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 16px;
}
.location-nearby__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-nearby__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.location-nearby__item:last-child {
  border-bottom: none;
}
.location-nearby__name {
  font-size: 14px;
  color: var(--ink);
}
.location-nearby__time {
  font-size: 13px;
  color: var(--muted);
}
.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0;
  transition: filter 0.2s;
}
.location-btn:hover {
  filter: brightness(0.95);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(198, 167, 104, 0.06) 0%, rgba(198, 167, 104, 0.02) 100%);
}
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-form__field {
  margin-bottom: 24px;
}
.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-form__input::placeholder {
  color: #aaa;
}
.contact-form__input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198, 167, 104, 0.1);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: filter 0.2s;
  margin-top: 8px;
}
.contact-form__submit:hover {
  filter: brightness(0.95);
}
.contact-form__submit--wa {
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-form__submit--wa:hover {
  filter: brightness(0.95);
}
.optional-label {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}

/* Legacy Testimonials Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}
.c-track {
  display: flex;
  transition: transform 0.4s ease;
}
.t-item {
  flex: 0 0 100%;
  padding: 28px;
  text-align: center;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 8px;
  object-fit: cover;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.c-btn.prev {
  left: 10px;
}
.c-btn.next {
  right: 10px;
}

/* Footer */
.footer {
  background: var(--emerald);
  color: #e7e2d2;
  padding: 60px 0 0;
}
.footer__top {
  text-align: center;
  margin-bottom: 50px;
}
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__crown {
  width: 32px;
  height: 22px;
  color: var(--gold);
}
.footer__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__col {
  text-align: center;
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 20px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--gold);
}
.footer__info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__info li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__info svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 167, 104, 0.1);
}
.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Actions (WA/Call/Map) */
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}
.fab {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.fab--wa {
  background: #25d366;
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.2s;
}
.faq-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .faq-card {
  background: #113630;
  border-color: #1a4a42;
}
.faq-card__question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: background 0.2s;
  color: var(--ink);
}
.faq-card__question::-webkit-details-marker {
  display: none;
}
.faq-card__question span {
  flex: 1;
}
.faq-card__icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-card[open] .faq-card__icon {
  transform: rotate(45deg);
}
.faq-card__question:hover {
  background: rgba(198, 167, 104, 0.06);
}
.faq-card__answer {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.faq-card__answer p {
  margin: 0;
}

/* Legacy FAQ */
.faq-list {
  margin-top: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #eee;
}
[data-theme="dark"] .faq-item {
  background: #113630;
  border-color: #1a4a42;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background 0.2s;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover {
  background: rgba(198, 167, 104, 0.08);
}
.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer p {
  margin: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Form Validation Styles */
.booking-form__input:invalid:not(:placeholder-shown),
.contact-form__input:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}
.booking-form__input:valid:not(:placeholder-shown),
.contact-form__input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}
.form-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.form-error.show {
  display: block;
}

/* Loading Button State */
.btn--loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--emerald);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 70;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast--success {
  background: #28a745;
}
.toast--error {
  background: #dc3545;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry {
    column-count: 2;
  }
  .nav__menu {
    gap: 18px;
  }
  .about__grid {
    gap: 40px;
  }
  .facilities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav__toggle {
    display: block;
  }
  .nav__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: rgba(14, 60, 53, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__menu.open {
    display: flex;
  }
  .nav__menu a {
    padding: 12px 0;
    font-size: 15px;
  }
  .nav__cta {
    order: -1;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 14px;
    font-size: 11px;
  }
  .brand__text {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .cta-sticky {
    top: auto;
    bottom: 90px;
  }
  .masonry {
    column-count: 1;
  }
  .hero__content {
    margin-top: 40px;
  }
  .hero__logo {
    margin-bottom: 16px;
  }
  .crown-icon {
    width: 40px;
    height: 28px;
  }
  .about {
    padding: 60px 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about__content {
    padding-right: 0;
    text-align: center;
  }
  .about__line {
    margin: 0 auto 24px;
  }
  .about__title {
    font-size: 26px;
  }
  .accommodations {
    padding: 60px 0;
  }
  .room-showcase__info {
    padding: 20px 24px 28px;
  }
  .room-showcase__header {
    flex-direction: column;
    gap: 12px;
  }
  .room-showcase__price {
    text-align: left;
  }
  .facilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .facility-item {
    padding: 20px 12px;
  }
  .booking-section {
    padding: 60px 0;
  }
  .booking-form {
    padding: 28px 20px;
  }
  .booking-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .booking-form__row .booking-form__field {
    margin-bottom: 20px;
  }
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-filters {
    gap: 8px;
    margin-bottom: 30px;
  }
  .gallery-filter {
    padding: 8px 16px;
    font-size: 11px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-carousel {
    gap: 16px;
  }
  .testimonials-btn {
    width: 40px;
    height: 40px;
  }
  .testimonial-item {
    padding: 32px 24px;
  }
  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }
  .testimonial-quote {
    font-size: 16px;
  }
  .testimonials-dots {
    margin-top: 24px;
  }
  .location-section {
    padding: 60px 0;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-map {
    aspect-ratio: 16 / 10;
  }
  .location-info {
    padding: 0;
  }
  .location-btn {
    width: 100%;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-form {
    padding: 28px 20px;
  }
  /* Hero responsive */
  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero__divider {
    width: 60px;
  }
  .hero__tagline {
    font-size: clamp(18px, 4vw, 24px);
  }
  .hero__btn {
    padding: 14px 32px;
    font-size: 12px;
  }
  .hero__scroll {
    bottom: 20px;
  }
  /* FAQ responsive */
  .faq-section {
    padding: 60px 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-card__question {
    padding: 16px 20px;
    font-size: 14px;
  }
  .faq-card__answer {
    padding: 0 20px 16px;
    font-size: 13px;
  }
  /* Footer responsive */
  .footer {
    padding: 50px 0 0;
  }
  .footer__top {
    margin-bottom: 40px;
  }
  .footer__name {
    font-size: 18px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer__col {
    text-align: center;
  }
  .footer__info li {
    justify-content: center;
  }
}
