:root {
  --pink-50: #fff7fa;
  --pink-100: #fdeaf1;
  --pink-200: #f9d3e1;
  --pink-300: #f1a9c2;
  --pink-500: #d94c83;
  --pink-600: #bd2e69;
  --pink-700: #94204f;
  --pink-800: #681638;
  --pink-900: #3d0d22;

  --cream: #fffaf7;
  --white: #ffffff;
  --text-dark: #291820;
  --text-medium: #67535c;
  --text-light: #917c85;
  --border: rgba(148, 32, 79, 0.15);
  --shadow: 0 20px 55px rgba(104, 22, 56, 0.12);
  --shadow-small: 0 10px 30px rgba(104, 22, 56, 0.1);

  --heading-font: "Playfair Display", Georgia, serif;
  --body-font: "DM Sans", Arial, sans-serif;

  --container: 1180px;
  --header-height: 90px;
}

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

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

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--body-font);
  line-height: 1.7;
}

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

/* Missing-image placeholders */

.img-frame {
  position: relative;
}

.img-frame.is-broken img {
  visibility: hidden;
}

.img-frame.is-broken::before {
  content: "🐾";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  color: var(--pink-300);
  font-size: 2.25rem;
}

.gallery-card.is-broken::before {
  flex-direction: column;
  gap: 8px;
  font-size: 2rem;
}

.brand-logo-frame.is-broken::before {
  font-size: 1.3rem;
}

.footer-logo-frame.is-broken::before {
  font-size: 2.6rem;
}

.gallery-card.is-broken::after {
  content: "Photo coming soon";
  position: absolute;
  bottom: 22px;
  left: 0;
  z-index: 0;
  width: 100%;
  color: var(--pink-500);
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.img-broken-standalone {
  visibility: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

section {
  position: relative;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* Demo banner */

.demo-bar {
  position: relative;
  z-index: 1001;
  background: var(--pink-800);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
}

.demo-bar p {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(148, 32, 79, 0.09);
  background: rgba(255, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header .container {
  max-width: 1340px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 18px;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-name {
  overflow: hidden;
  max-width: 230px;
  color: var(--pink-800);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo-frame {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.brand-logo {
  width: auto;
  max-width: 130px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
}

.nav-links > a {
  position: relative;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-links > a:not(.nav-contact-button)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-500);
  content: "";
  transition: width 0.25s ease;
}

.nav-links > a:hover {
  color: var(--pink-600);
}

.nav-links > a:not(.nav-contact-button):hover::after {
  width: 100%;
}

.nav-contact-button {
  border-radius: 999px;
  background: var(--pink-600);
  color: var(--white) !important;
  padding: 10px 16px;
  box-shadow: 0 8px 22px rgba(189, 46, 105, 0.2);
}

.nav-contact-button:hover {
  background: var(--pink-700);
  transform: translateY(-2px);
}

/* ES / EN selector */

.language-switcher {
  display: flex;
  width: 116px;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border: 1px solid var(--pink-300);
  border-radius: 999px;
  background: var(--pink-100);
  padding: 4px;
  box-shadow:
    0 8px 22px rgba(104, 22, 56, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lang-btn {
  display: flex;
  width: 52px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  color: var(--pink-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.lang-btn.active {
  background: var(--pink-600);
  color: var(--white);
  box-shadow:
    0 6px 16px rgba(189, 46, 105, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink-200);
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-700);
  box-shadow: 0 8px 22px rgba(104, 22, 56, 0.12);
  font-size: 1.4rem;
}

/* Typography */

h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 1.15;
}

h1 {
  max-width: 830px;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.65rem;
}

p {
  color: var(--text-medium);
}

.section {
  padding: 110px 0;
}

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

.section-heading h2 {
  margin-bottom: 18px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--pink-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.04rem;
}

/* Buttons */

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.button-primary {
  background: var(--pink-600);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(189, 46, 105, 0.25);
}

.button-primary:hover {
  background: var(--pink-700);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--pink-800);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pink-900);
  color: var(--white);
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(38, 6, 22, 0.94) 0%,
      rgba(62, 11, 34, 0.78) 42%,
      rgba(61, 13, 34, 0.35) 70%,
      rgba(61, 13, 34, 0.16) 100%
    ),
    linear-gradient(
      0deg,
      rgba(61, 13, 34, 0.42) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero-eyebrow,
.hero h1,
.hero-description,
.hero-buttons,
.hero-features {
  animation: hero-fade-up 0.8s ease both;
}

.hero-eyebrow {
  animation-delay: 0.05s;
}

.hero h1 {
  animation-delay: 0.15s;
}

.hero-description {
  animation-delay: 0.28s;
}

.hero-buttons {
  animation-delay: 0.4s;
}

.hero-features {
  animation-delay: 0.5s;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pink-200);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  width: 35px;
  height: 1px;
  background: var(--pink-300);
  content: "";
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 5px 28px rgba(40, 5, 20, 0.35);
}

.hero-description {
  max-width: 680px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 45px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-icon {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--pink-200);
}

/* Introduction */

.intro-section {
  padding: 95px 0;
  background: var(--white);
}

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

.intro-copy {
  border-left: 1px solid var(--pink-200);
  padding-left: 45px;
}

.intro-copy p {
  margin-bottom: 22px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  color: var(--pink-600);
  font-size: 0.93rem;
  font-weight: 800;
}

/* Services */

.services-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(249, 211, 225, 0.55),
      transparent 30%
    ),
    var(--pink-50);
}

.services-grid,
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card,
.package-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  padding: 36px;
  box-shadow: var(--shadow-small);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover,
.package-card:hover {
  border-color: var(--pink-300);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.featured-service {
  border-color: var(--pink-300);
  background:
    linear-gradient(
      145deg,
      #ffffff,
      rgba(253, 234, 241, 0.7)
    );
}

.service-badge,
.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 999px;
  background: var(--pink-600);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-number {
  margin-bottom: 12px;
  color: var(--pink-300);
  font-family: var(--heading-font);
  font-weight: 700;
}

.service-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--pink-100);
  font-size: 1.65rem;
}

.service-card h3,
.package-card h3 {
  margin-bottom: 14px;
}

.service-card > p {
  min-height: 112px;
  margin-bottom: 22px;
  font-size: 0.94rem;
}

.service-card ul,
.package-features {
  display: grid;
  gap: 10px;
}

.service-card li,
.package-features li {
  position: relative;
  padding-left: 24px;
  color: var(--text-medium);
  font-size: 0.89rem;
}

.service-card li::before,
.package-features li::before {
  position: absolute;
  left: 0;
  color: var(--pink-500);
  content: "✓";
  font-weight: 800;
}

/* Packages */

.packages-section {
  background: var(--white);
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--pink-50);
}

.featured-package {
  border: 2px solid var(--pink-500);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: scale(1.025);
}

.featured-package:hover {
  transform: scale(1.025) translateY(-8px);
}

.package-subtitle {
  margin-bottom: 8px;
  color: var(--pink-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-price {
  display: flex;
  flex-direction: column;
  margin: 12px 0 27px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--border);
}

.package-price span {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.package-price strong {
  color: var(--pink-700);
  font-family: var(--heading-font);
  font-size: 3.25rem;
  line-height: 1.1;
}

.package-features {
  flex-grow: 1;
  gap: 13px;
  margin-bottom: 30px;
}

.package-button {
  width: 100%;
  border-color: var(--pink-300);
  color: var(--pink-700);
}

.package-button:hover {
  border-color: var(--pink-600);
  background: var(--pink-600);
  color: var(--white);
}

.featured-package .package-button {
  color: var(--white);
}

.pricing-note {
  max-width: 800px;
  margin: 35px auto 0;
  color: var(--text-light);
  font-size: 0.82rem;
  text-align: center;
}

/* About */

.about-section {
  overflow: hidden;
  background: var(--pink-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 85px;
}

.about-image-wrapper {
  position: relative;
}

.about-photo {
  width: 100%;
  height: 660px;
  border-radius: 240px 240px 28px 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.about-image-accent {
  position: absolute;
  right: -30px;
  bottom: 40px;
  display: flex;
  max-width: 245px;
  flex-direction: column;
  border-radius: 22px;
  background: var(--pink-700);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 20px 45px rgba(104, 22, 56, 0.25);
}

.about-image-accent strong {
  margin-bottom: 5px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.about-image-accent span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-text > p:not(.section-label) {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}

.about-points > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.about-points strong {
  color: var(--pink-700);
  font-size: 0.92rem;
}

.about-points span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Gallery — images display fully */

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

.gallery-grid {
  columns: 4;
  column-gap: 16px;
}

.gallery-card {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 16px;
  break-inside: avoid;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--pink-50);
  box-shadow: var(--shadow-small);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.gallery-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

/* Automation / time-saving section */

.automation-section {
  background: var(--white);
}

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

.automation-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--pink-50);
  padding: 20px 22px;
  color: var(--text-medium);
  font-size: 0.94rem;
  font-weight: 700;
}

.automation-icon {
  display: flex;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--pink-100);
  font-size: 1.2rem;
}

/* Booking form */

.booking-section {
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(249, 211, 225, 0.55),
      transparent 35%
    ),
    var(--pink-50);
}

.demo-form-notice {
  display: flex;
  max-width: 900px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
  border: 1px solid var(--pink-300);
  border-radius: 999px;
  background: var(--pink-100);
  padding: 12px 22px;
  color: var(--pink-800);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.demo-form-notice-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.booking-form {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-small);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  color: var(--pink-800);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--pink-50);
  padding: 12px 14px;
  color: var(--text-dark);
  font-size: 0.92rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink-500);
  box-shadow: 0 0 0 3px rgba(217, 76, 131, 0.18);
}

.form-field textarea {
  resize: vertical;
}

.form-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.form-submit-row .button {
  min-width: 260px;
}

.booking-confirmation {
  max-width: 700px;
  margin: 26px auto 0;
  border-radius: 16px;
  background: var(--pink-100);
  padding: 16px 22px;
  color: var(--pink-800);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

/* Testimonials */

.testimonials-section {
  background:
    linear-gradient(
      135deg,
      var(--pink-50),
      var(--pink-100)
    );
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  background: var(--white);
  padding: 36px;
  box-shadow: var(--shadow-small);
}

.testimonial-stars {
  margin-bottom: 18px;
  color: var(--pink-500);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  flex-grow: 1;
  color: var(--text-dark);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.testimonial-sample-badge {
  color: var(--pink-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* FAQ */

.faq-section {
  background: var(--pink-50);
}

.faq-container {
  display: grid;
  max-width: 900px;
  gap: 13px;
  margin-inline: auto;
}

.faq-container details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 0 24px;
  box-shadow: 0 6px 18px rgba(104, 22, 56, 0.04);
}

.faq-container summary {
  position: relative;
  padding: 22px 40px 22px 0;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

.faq-container summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-700);
  content: "+";
  transform: translateY(-50%) rotate(0deg);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.faq-container details[open] summary::after {
  background: var(--pink-200);
  transform: translateY(-50%) rotate(135deg);
}

.faq-container details {
  transition: box-shadow 0.3s ease;
}

.faq-container details[open] {
  box-shadow: 0 10px 26px rgba(104, 22, 56, 0.08);
}

.faq-container details p {
  padding: 0 40px 24px 0;
  font-size: 0.94rem;
}

/* Final CTA */

.final-cta {
  background: var(--white);
  padding: 110px 0;
  text-align: center;
}

.final-cta-content {
  max-width: 810px;
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p:not(.section-label) {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

/* Footer */

.site-footer {
  background: var(--pink-900);
  color: var(--white);
  padding: 75px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 70px;
  padding-bottom: 55px;
}

.footer-logo-frame {
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.footer-brand img {
  width: 110px;
  height: 110px;
  margin-bottom: 0;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-brand p:first-of-type {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.15rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-instagram-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.87rem;
}

.footer-instagram-badge em {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.87rem;
}

.footer-avds-link {
  color: var(--pink-300) !important;
  font-weight: 800;
  transition: color 0.25s ease;
}

.footer-avds-link:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

/* Full-screen gallery */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  background: rgba(28, 5, 16, 0.96);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-stage {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 72px 72px 90px;
}

.lightbox-image {
  width: auto;
  max-width: 92vw;
  height: auto;
  max-height: 88vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 72px;
  border-radius: 16px;
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateX(-50%);
}

/* Scroll effects */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

.services-grid .reveal-on-scroll:nth-child(2),
.packages-grid .reveal-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid .reveal-on-scroll:nth-child(3),
.packages-grid .reveal-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.gallery-grid .reveal-on-scroll:nth-child(3n+2) {
  transition-delay: 0.08s;
}

.gallery-grid .reveal-on-scroll:nth-child(3n+3) {
  transition-delay: 0.16s;
}

/* Laptop */

@media (max-width: 1120px) {
  .gallery-grid {
    columns: 3;
  }
}

/* Tablet and mobile menu */

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .header-container {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    flex-shrink: 1;
  }

  .brand-logo {
    max-width: 110px;
    height: 58px;
    flex-shrink: 0;
  }

  .brand-name {
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher {
    order: 2;
    width: 108px;
    height: 46px;
    margin-left: auto;
  }

  .lang-btn {
    width: 48px;
    height: 38px;
    font-size: 0.74rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 1003;
    display: flex;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1002;
    display: flex;
    visibility: hidden;
    overflow-y: auto;
    width: 100%;
    max-height: calc(100vh - var(--header-height) - 12px);
    max-height: calc(100dvh - var(--header-height) - 12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border-top: 1px solid rgba(148, 32, 79, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 7% 22px;
    box-shadow: 0 18px 35px rgba(104, 22, 56, 0.12);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
      visibility 0.3s ease;
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    width: 100%;
    border-bottom: 1px solid rgba(148, 32, 79, 0.1);
    border-radius: 0;
    padding: 12px 0;
    color: var(--pink-800);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-align: left;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(16px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      background 0.2s ease,
      color 0.2s ease;
  }

  .nav-links.active > a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active > a:nth-child(1) { transition-delay: 0.04s; }
  .nav-links.active > a:nth-child(2) { transition-delay: 0.08s; }
  .nav-links.active > a:nth-child(3) { transition-delay: 0.12s; }
  .nav-links.active > a:nth-child(4) { transition-delay: 0.16s; }
  .nav-links.active > a:nth-child(5) { transition-delay: 0.2s; }
  .nav-links.active > a:nth-child(6) { transition-delay: 0.24s; }
  .nav-links.active > a:nth-child(7) { transition-delay: 0.28s; }
  .nav-links.active > a:nth-child(8) { transition-delay: 0.32s; }

  .nav-links > a:not(.nav-contact-button):hover,
  .nav-links > a:not(.nav-contact-button):focus-visible {
    color: var(--pink-600);
  }

  .nav-links > a:not(.nav-contact-button)::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--pink-500);
    content: "→";
    font-size: 1rem;
    letter-spacing: 0;
    transition: transform 0.25s ease;
  }

  .nav-links > a:not(.nav-contact-button):hover::after,
  .nav-links > a:not(.nav-contact-button):focus-visible::after {
    transform: translateX(5px);
  }

  .nav-links > a.nav-contact-button {
    justify-content: center;
    margin-top: 7px;
    padding: 13px 18px !important;
    border-bottom: none;
    text-align: center !important;
  }

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

  .intro-grid {
    gap: 40px;
  }

  .intro-copy {
    border-top: 1px solid var(--pink-200);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .service-card > p {
    min-height: auto;
  }

  .featured-package,
  .featured-package:hover {
    transform: none;
  }

  .about-grid {
    gap: 65px;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
  }

  .about-photo {
    height: 620px;
  }

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

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

  .booking-form {
    grid-template-columns: 1fr;
    padding: 30px;
  }

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

/* Small tablet */

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

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(38, 6, 22, 0.96) 0%,
        rgba(61, 13, 34, 0.82) 48%,
        rgba(61, 13, 34, 0.28) 100%
      );
  }

  .hero-content {
    padding-top: 180px;
    padding-bottom: 58px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-features {
    display: grid;
    gap: 12px;
  }

  .gallery-grid {
    columns: 2;
  }

  .about-photo {
    height: 520px;
    border-radius: 180px 180px 24px 24px;
  }

  .about-image-accent {
    right: 15px;
    bottom: 20px;
  }

  .about-points > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .testimonial-card {
    padding: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .lightbox-stage {
    padding: 65px 16px 100px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 64px);
  }

  .lightbox-next {
    right: calc(50% - 64px);
  }

  .lightbox-counter {
    bottom: 82px;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero h1,
  .hero-description,
  .hero-buttons,
  .hero-features {
    animation: none;
  }

  .reveal-on-scroll {
    transition: none;
  }

  .nav-links,
  .nav-links > a {
    transition: none;
  }
}

/* Phone */

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .demo-bar {
    padding: 8px 14px;
  }

  .demo-bar p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .header-container {
    gap: 8px;
  }

  .brand-logo {
    max-width: 82px;
    height: 50px;
  }

  .brand-name {
    font-size: 0.74rem;
  }

  .language-switcher {
    width: 96px;
    height: 42px;
    padding: 3px;
  }

  .lang-btn {
    width: 43px;
    height: 34px;
    font-size: 0.69rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .nav-links {
    right: 14px;
    width: min(290px, calc(100vw - 28px));
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 145px;
    padding-bottom: 45px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .service-card,
  .package-card {
    border-radius: 22px;
    padding: 29px 24px;
  }

  .about-photo {
    height: 450px;
  }

  .about-image-accent {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -35px 15px 0;
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-card {
    margin-bottom: 18px;
  }

  .testimonial-card blockquote {
    font-size: 1.05rem;
  }

  .faq-container details {
    padding: 0 18px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 96px;
    height: 96px;
  }

}