:root {
  --red: #da291c;
  --red-dark: #b52117;
  --red-soft: #faeae8;
  --red-border: #e8c4bf;
  --green: #528f6a;
  --green-dark: #45785a;
  --blue: #4a7694;
  --black: #1a1a1a;
  --gray-900: #2a2a2a;
  --gray-700: #5c5c5c;
  --gray-500: #8a8a8a;
  --gray-200: #e5e5e5;
  --gray-100: #f3f3f3;
  --white: #fafafa;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 3px 12px rgba(0, 0, 0, 0.07);
  --radius: 12px;
  --radius-lg: 18px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 0.75rem);
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1200px, 94vw);
  margin-inline: auto;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: none;
    padding-inline: 1.15rem;
  }
}

.text-red {
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  opacity: 0.92;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding-top: env(safe-area-inset-top, 0px);
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--nav-height);
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 1.1rem;
  list-style: none;
}

.nav__links-cta {
  display: none;
}

.nav__links a:not(.btn) {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-900);
  transition: color var(--transition);
}

.nav__links a:not(.btn):hover {
  color: var(--red);
}

.nav__links a.is-active:not(.btn) {
  color: var(--red);
  font-weight: 700;
}

.nav__cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Language picker */
.lang-picker {
  position: relative;
}

.lang-picker__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition);
}

.lang-picker__toggle:hover,
.lang-picker__toggle[aria-expanded="true"] {
  border-color: var(--red);
}

.lang-picker__toggle[aria-expanded="true"] .lang-picker__chevron {
  transform: rotate(180deg);
}

.lang-picker__globe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}

.lang-picker__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.lang-picker__short {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red);
}

.lang-picker__label {
  font-size: 0.75rem;
  font-weight: 600;
}

.lang-picker__chevron {
  display: flex;
  color: var(--gray-500);
  transition: transform var(--transition);
}

.lang-picker__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 170px;
  list-style: none;
  padding: 0.35rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

.lang-picker__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  text-align: left;
}

.lang-picker__option:hover {
  background: var(--gray-100);
}

.lang-picker__option.is-active {
  background: var(--red-soft);
  color: var(--red);
  font-weight: 700;
}

.lang-picker__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  background: var(--gray-100);
  font-size: 0.65rem;
  font-weight: 800;
}

.lang-picker__option.is-active .lang-picker__code {
  background: var(--red);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: var(--gray-100);
  overflow: hidden;
}

.hero__bg {
  display: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: none;
  justify-self: stretch;
}

.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
}

.hero__logo {
  width: min(100%, 400px);
  height: auto;
  object-fit: contain;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__stat--mobile {
  display: none;
}

.hero__stats strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero__stats span {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat--price span {
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.35;
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--gray-700);
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: var(--gray-100);
}

.page-hero__inner {
  max-width: 720px;
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* Chapter cards (home) */
.chapters {
  padding: 4.5rem 0;
  background: var(--white);
}

.chapters__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.chapter-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.chapter-card:hover {
  border-color: var(--red-border);
}

.chapter-card__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red);
}

.chapter-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.chapter-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* Services */
.services {
  padding: 4.5rem 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color var(--transition);
}

.service-card:hover {
  border-color: var(--gray-500);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  flex: 1;
}

.service-card__price {
  font-size: 1.25rem;
  font-weight: 800;
}

.service-card__price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

.service-card__btn {
  margin-top: 0.25rem;
  padding: 0.6rem 1rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--transition);
}

.service-card__btn:hover {
  background: var(--red);
}

/* Showcase */
.showcase {
  padding: 4.5rem 0;
  background: var(--gray-100);
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.showcase__empty {
  text-align: center;
  color: var(--gray-500);
  padding: 2rem;
}

.showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.showcase-card__media {
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.showcase-card__media iframe,
.showcase-card__media video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.showcase-card__body {
  padding: 1.15rem 1.25rem;
}

.showcase-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.showcase-card__body p {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Photos */
.photos {
  padding: 4.5rem 0;
  background: var(--white);
}

.photos__empty {
  text-align: center;
  color: var(--gray-500);
  padding: 2rem;
}

.photos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
}

.photos-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.photos-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photos-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.photo--normal { grid-column: span 1; grid-row: span 1; }
.photo--wide { grid-column: span 2; }
.photo--tall { grid-row: span 2; }
.photo--large { grid-column: span 2; grid-row: span 2; }

/* Equipment */
.equipment {
  padding: 4.5rem 0;
  background: var(--gray-100);
}

.equipment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.equipment-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.equipment-card:hover {
  border-color: var(--gray-500);
}

.equipment-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 1.5rem;
  background: var(--gray-100);
}

.equipment-card__media img {
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
}

.equipment-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.equipment-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.equipment-card__body p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.equipment__note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
}

/* About */
.about {
  padding: 4.5rem 0;
  background: var(--white);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.about__content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.about__lead {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0.85rem;
}

.about__content p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.about__tags li {
  padding: 0.4rem 0.85rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.about__card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 3px solid var(--red);
}

.about__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.about__card-quote {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Process */
.process {
  padding: 4.5rem 0;
  background: var(--gray-100);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  position: relative;
}

.process-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.process-card__step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
}

.process-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.process-card p {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.55;
}

/* Booking */
.booking {
  padding: 4.5rem 0;
  background: var(--white);
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.booking__layout > * {
  min-width: 0;
}

.booking__info h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.booking__info > p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.booking__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking__steps li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

.booking__step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking__summary {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}

.booking__summary h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.booking__summary-service {
  font-weight: 700;
}

.booking__summary-price {
  color: var(--red);
  font-weight: 800;
  font-size: 1.15rem;
}

.booking__form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.booking__form fieldset {
  border: none;
  margin-bottom: 1.25rem;
  min-width: 0;
}

.booking__form legend {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  min-width: 0;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-soft);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--red);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  cursor: pointer;
}

.checkbox input {
  margin-top: 0.15rem;
  accent-color: var(--red);
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.65rem;
}

/* Support */
.support {
  margin-top: 1.5rem;
}

.support__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  max-width: 280px;
}

.support__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.support__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.support__title {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0.25rem 0;
}

.support__text {
  font-size: 0.8rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.support__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.support__note {
  font-size: 0.7rem;
  color: var(--gray-500);
}

.tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--white);
}

.tip-btn--paypal { background: var(--blue); }
.tip-btn--sumup { background: var(--red); }
.tip-btn--twint { background: var(--gray-900); }

/* Contact */
.contact {
  padding: 4rem 0;
  background: var(--gray-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.contact p {
  color: var(--gray-700);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: right;
}

.contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

.contact__icon {
  display: inline-flex;
  color: var(--red);
}

.contact__icon svg {
  width: 18px;
  height: 18px;
}

.contact__details a:hover {
  color: var(--red);
}

.contact__icon--whatsapp {
  color: var(--green);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer__copy {
  font-size: 0.875rem;
  font-weight: 700;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.875rem;
}

.whatsapp-float:hover {
  color: var(--white);
  background: var(--green-dark);
}

.whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
}

/* Modal */
.modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 400px;
  width: 92vw;
  box-shadow: var(--shadow-lg);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.modal__content {
  padding: 2rem 1.5rem;
  text-align: center;
}

.modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal__icon--error {
  background: var(--red-soft);
}

.modal h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.modal p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

@media (min-width: 901px) {
  .hero__brand {
    justify-content: flex-end;
    padding-left: 1rem;
  }

  .hero__content {
    padding-right: 0.5rem;
  }

  .equipment-card {
    flex-direction: row;
    align-items: stretch;
  }

  .equipment-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .equipment-card__media {
    flex: 0 0 44%;
    min-height: 240px;
  }

  .equipment-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem 2rem;
  }

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

  .about__card {
    width: 100%;
  }

  .booking__form {
    width: 100%;
  }

  .contact__details {
    justify-self: end;
  }
}

/* Responsive nav */
@media (max-width: 1024px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    min-height: 64px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__links-cta {
    display: list-item;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - var(--nav-height));
    overflow-y: auto;
    padding: 0.75rem 1.15rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a:not(.btn) {
    display: block;
    padding: 0.85rem 0.85rem;
    border-radius: 10px;
    font-size: 1rem;
  }

  .nav__links a:not(.btn):hover {
    background: var(--gray-100);
  }

  .nav__links .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
  }

  .hero__content {
    max-width: none;
    margin-inline: 0;
  }

  .hero__lead {
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__brand {
    order: 0;
    justify-content: flex-start;
  }

  .hero__logo {
    width: min(100%, 200px);
    margin-inline: 0;
  }

  .hero__stat--desktop {
    display: none;
  }

  .hero__stat--mobile {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .hero__stats {
    justify-content: flex-start;
  }

  .page-hero__inner {
    max-width: none;
  }

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

  .about__layout,
  .booking__layout {
    grid-template-columns: 1fr;
  }

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

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

  .photo--wide,
  .photo--large {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    font-size: 1rem;
  }

  .nav {
    min-height: 64px;
  }

  .nav__logo {
    height: 46px;
    max-width: 150px;
  }

  .nav__toggle {
    width: 44px;
    height: 44px;
  }

  .lang-picker__toggle {
    height: 44px;
    min-width: 44px;
    padding: 0 0.65rem;
  }

  .lang-picker__label {
    display: none;
  }

  .lang-picker__text {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .lang-picker__short {
    font-size: 0.75rem;
  }

  .hero {
    padding: 1.75rem 0 2.25rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.85rem);
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1.25rem;
  }

  .hero__logo {
    width: min(100%, 180px);
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .hero__stat {
    padding: 0.75rem 0.85rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
  }

  .hero__stat--mobile {
    grid-column: 1 / -1;
    order: -1;
  }

  .hero__stats strong {
    font-size: 1.1rem;
  }

  .page-hero {
    padding: 1.75rem 0 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  .page-hero__lead {
    font-size: 1rem;
  }

  .chapters {
    padding: 2.25rem 0 2.75rem;
  }

  .chapter-card {
    padding: 1.25rem 1.15rem;
    min-height: 5.5rem;
  }

  .chapter-card h3 {
    font-size: 1.2rem;
  }

  .services,
  .showcase,
  .photos,
  .equipment,
  .about,
  .process,
  .booking,
  .contact {
    padding: 2.5rem 0;
  }

  .section-head {
    text-align: left;
    max-width: none;
    margin-inline: 0;
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.55rem);
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .section-head--center {
    text-align: left;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.35rem;
  }

  .service-card__btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.35rem;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .process-card {
    padding: 1.25rem;
  }

  .equipment-card__media {
    min-height: 180px;
    padding: 1.25rem;
  }

  .equipment-card__media img {
    width: min(100%, 200px);
  }

  .equipment-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
  }

  .booking__form {
    padding: 1.25rem;
  }

  .booking__info h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.6rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .btn--full {
    min-height: 48px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .contact__details {
    text-align: left;
    width: 100%;
  }

  .contact__item {
    padding: 0.35rem 0;
    min-height: 44px;
  }

  .support__card {
    max-width: none;
    width: 100%;
  }

  .footer__inner {
    gap: 0.85rem;
    padding-inline: 0.25rem;
  }

  .footer__links {
    gap: 0.75rem 1.25rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
  }

  .whatsapp-float__text {
    display: none;
  }

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

  .photos__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .photos__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .photo--wide,
  .photo--large,
  .photo--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .process-card:hover,
  .equipment-card:hover,
  .btn:hover,
  .whatsapp-float:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
