@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --background: #10131a;
  --foreground: #faf6ec;
  --card: #191d27;
  --muted: #272c39;
  --muted-foreground: #8d94a1;
  --primary: #d8aa35;
  --primary-light: #e7c25a;
  --primary-dark: #ad8220;
  --cream: #fdf6ea;
  --charcoal: #10131a;
  --burgundy: #7e2a35;
  --border: rgba(63, 70, 86, 0.65);
  --gradient-gold: linear-gradient(135deg, #d8aa35 0%, #e7c25a 50%, #ad8220 100%);
  --gradient-card: linear-gradient(145deg, #202431 0%, #131720 100%);
  --shadow-gold: 0 4px 30px rgba(216, 170, 53, 0.16);
  --shadow-elegant: 0 25px 50px -12px rgba(5, 7, 11, 0.55);
  --shadow-glow: 0 0 60px rgba(216, 170, 53, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.font-display,
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
}

.text-gold {
  color: var(--primary);
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: rgba(25, 29, 39, 0.35);
  border: 1px solid rgba(63, 70, 86, 0.45);
  backdrop-filter: blur(18px);
}

.btn-luxury,
.btn-outline-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 3px;
  border: 0;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn-luxury {
  overflow: hidden;
  background: var(--gradient-gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline-luxury {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-luxury:hover {
  background: var(--primary);
  color: var(--charcoal);
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-soft {
  background: rgba(25, 29, 39, 0.45);
}

.section-hero {
  padding: 104px 0 88px;
  background: linear-gradient(180deg, rgba(25, 29, 39, 0.55), transparent);
  text-align: center;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.section-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(250, 246, 236, 0.82);
  font-size: 0.875rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--gradient-card);
  border: 1px solid rgba(63, 70, 86, 0.55);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(5, 7, 11, 0.3);
}

.card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elegant);
  border-color: rgba(216, 170, 53, 0.34);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(216, 170, 53, 0.1);
  color: var(--primary);
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.animated-underline:hover::after,
.animated-underline.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar {
  display: block;
  padding: 8px 0;
  background: rgba(25, 29, 39, 0.5);
  border-bottom: 1px solid rgba(63, 70, 86, 0.35);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.topbar-row,
.navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left {
  display: flex;
  gap: 24px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled,
.navbar.menu-active {
  background: #000;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: clamp(88px, 12vw, 156px);
  height: clamp(58px, 7vw, 92px);
  object-fit: contain;
}

.brand-title {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
}

.desktop-actions {
  display: block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 1.8rem;
}

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(63, 70, 86, 0.3);
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 520px;
}

.mobile-menu-inner {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(63, 70, 86, 0.3);
  font-size: 1.05rem;
  font-weight: 600;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  overflow: hidden;
  background: #000;
}

.home-hero-bg,
.home-hero-bg img,
.home-hero-bg::after,
.home-hero-bg::before {
  position: absolute;
  inset: 0;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.05);
}

.home-hero-bg::after {
  content: "";
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 48%, transparent 100%);
}

.home-hero-bg::before {
  content: "";
  z-index: 1;
  background: radial-gradient(circle at 20% 30%, rgba(216, 170, 53, 0.08), transparent 50%);
}

.home-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.home-hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.home-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
}

.home-hero-kicker {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-copy {
  max-width: 620px;
  padding-left: 22px;
  border-left: 2px solid rgba(216, 170, 53, 0.3);
  color: rgba(250, 246, 236, 0.82);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.mini-stats {
  display: flex;
  gap: 28px;
}

.mini-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  color: #fff;
  font-size: 2rem;
}

.mini-stat span {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.spotlight-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(216, 170, 53, 0.22), transparent 65%);
  filter: blur(80px);
  animation: glowShift 12s linear infinite;
}

.stage-light {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 330px;
  height: 80%;
  transform: translateX(-50%);
  background: conic-gradient(from 180deg at 50% 100%, rgba(216, 170, 53, 0.24) 0deg, transparent 35deg, transparent 325deg, rgba(216, 170, 53, 0.24) 360deg);
  filter: blur(30px);
  animation: beam 4s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(85%, 520px);
  filter: drop-shadow(0 0 30px rgba(216, 170, 53, 0.4));
  animation: float 5s ease-in-out infinite;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 34px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.7em;
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--primary), transparent);
  animation: nudge 2s ease-in-out infinite;
}

.services-grid-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 18px;
}

.services-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.services-grid-card:hover img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, var(--charcoal), rgba(16, 19, 26, 0.62), transparent);
}

.service-card-overlay h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.service-card-overlay p {
  color: var(--muted-foreground);
  line-height: 1.55;
}

.stats-section {
  background: var(--gradient-card);
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
}

.stat-label {
  margin: 8px 0 4px;
  font-weight: 700;
}

.muted {
  color: var(--muted-foreground);
}

.testimonial-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 52px);
  text-align: center;
}

.testimonial-content {
  min-height: 270px;
}

.stars {
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.quote-copy {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-style: italic;
  line-height: 1.65;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  text-align: left;
}

.author img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(216, 170, 53, 0.35);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(63, 70, 86, 0.55);
  background: rgba(25, 29, 39, 0.82);
  color: var(--foreground);
  transform: translateY(-50%);
}

.carousel-btn:hover {
  color: var(--primary);
  border-color: rgba(216, 170, 53, 0.55);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(141, 148, 161, 0.35);
  transition: width 0.25s ease, background 0.25s ease;
}

.dot.active {
  width: 32px;
  background: var(--primary);
}

.mission-card {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  border-color: rgba(216, 170, 53, 0.3);
}

.mission-card h2,
.mission-card p {
  position: relative;
  z-index: 1;
}

.mission-card h2 {
  margin-top: 0;
  font-size: 2rem;
}

.mission-card p {
  color: rgba(253, 246, 234, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

.value-card,
.team-card,
.equipment-card,
.additional-card {
  padding: 26px;
  text-align: center;
}

.team-card {
  padding: 0;
  background: transparent;
  border: 0;
}

.team-card .image-frame {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 16px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.08);
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-row.scroll {
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 10px;
}

.filter-btn {
  border: 1px solid rgba(63, 70, 86, 0.65);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted-foreground);
  padding: 12px 22px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-btn.square {
  border-radius: 12px;
}

.filter-btn:hover {
  transform: translateY(-1px);
  color: var(--foreground);
  border-color: rgba(216, 170, 53, 0.55);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--charcoal);
  border-color: var(--primary);
}

.gallery-item,
.equipment-card {
  overflow: hidden;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  cursor: pointer;
}

.gallery-item[hidden],
.equipment-card[hidden] {
  display: none;
}

.gallery-item img,
.equipment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img,
.equipment-card:hover img {
  transform: scale(1.09);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(16, 19, 26, 0.96), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption small {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-caption h3 {
  margin: 6px 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 19, 26, 0.96);
  backdrop-filter: blur(18px);
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(25, 29, 39, 0.7);
  color: var(--foreground);
  font-size: 1.8rem;
}

.lightbox img {
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox-meta {
  margin-top: 16px;
  text-align: center;
}

.accordion {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.accordion-item {
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  text-align: left;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-title h3 {
  margin: 0;
  font-size: 1.55rem;
}

.accordion-title p {
  margin: 4px 0 0;
  color: var(--muted-foreground);
}

.chevron {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--muted);
  transition: transform 0.25s ease;
}

.accordion-item.open .chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body {
  padding: 0 24px 28px;
  color: var(--muted-foreground);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(63, 70, 86, 0.45);
}

.feature-list span {
  color: var(--foreground);
}

.equipment-card {
  padding: 0;
  text-align: left;
}

.equipment-card img {
  aspect-ratio: 1;
}

.equipment-body {
  padding: 18px;
}

.equipment-body h3 {
  margin: 0 0 6px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(40px, 8vw, 88px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(63, 70, 86, 0.65);
  border-radius: 9px;
  background: var(--card);
  color: var(--foreground);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.input {
  min-height: 140px;
  resize: vertical;
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(216, 170, 53, 0.16);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-row p {
  margin: 0;
}

.contact-label {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

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

.social-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 70, 86, 0.65);
  border-radius: 13px;
  background: var(--card);
  color: var(--muted-foreground);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  color: var(--primary);
  border-color: rgba(216, 170, 53, 0.55);
  transform: translateY(-2px);
}

.map-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  background: rgba(25, 29, 39, 0.55);
  text-align: center;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  width: min(360px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid rgba(216, 170, 53, 0.32);
  box-shadow: var(--shadow-elegant);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.footer {
  background: var(--card);
  border-top: 1px solid rgba(63, 70, 86, 0.35);
}

.newsletter {
  padding: 44px 0;
  border-bottom: 1px solid rgba(63, 70, 86, 0.35);
}

.newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.newsletter h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
}

.newsletter-form {
  display: flex;
  width: min(100%, 430px);
}

.newsletter-form input {
  flex: 1;
  border-radius: 9px 0 0 9px;
}

.newsletter-form button {
  border-radius: 0 9px 9px 0;
  border: 0;
  padding-inline: 20px;
  background: var(--primary);
  color: var(--charcoal);
  font-weight: 800;
}

.footer-main {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer h4 {
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(63, 70, 86, 0.35);
  padding: 22px 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes beam {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.05); }
}

@keyframes glowShift {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .topbar {
    display: none;
  }

  .brand-title {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .home-hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-grid {
    padding-top: 48px;
  }

  .home-hero-bg::after {
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.66) 58%, transparent 100%);
  }

  .hero-logo-wrap {
    min-height: 300px;
  }

  .newsletter-row,
  .footer-bottom-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    position: static;
    transform: none;
    margin: 24px 8px 0;
  }

  .testimonial-card {
    padding-bottom: 32px;
  }
}

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

  .section-hero {
    padding: 76px 0 64px;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 22px;
  }

  .btn-luxury,
  .btn-outline-luxury {
    width: 100%;
  }

  .newsletter-form {
    display: grid;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 9px;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
