:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #080808;
  --ink-2: #191919;
  --muted: #686868;
  --line: #eadfca;
  --gold: #ffc400;
  --gold-dark: #a87500;
  --gold-soft: #fff4d9;
  --sand: #fbf7ee;
  --green: #25d366;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --soft-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(211, 166, 78, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #fbf7ee 100%);
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  top: 118px;
  right: 0;
  left: 0;
  z-index: -1;
  height: 52vh;
  min-height: 420px;
  content: "";
  background:
    linear-gradient(135deg, rgba(211, 166, 78, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(37, 211, 102, 0.07), transparent 62%);
  clip-path: ellipse(82% 48% at 50% 0%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  border: 0;
}

.contact-topbar {
  color: #ffffff;
  background: var(--ink);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1.28fr 0.92fr 0.98fr 1fr 1.14fr;
  gap: 12px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 10px 0;
}

.contact-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 48px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-topbar a:hover {
  background: rgba(255, 196, 0, 0.12);
  transform: translateY(-1px);
}

.contact-topbar a > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-topbar small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.topbar-icon,
.footer-icon,
.contact-card-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(255, 196, 0, 0.22);
}

.topbar-icon i,
.footer-icon i,
.contact-card-icon i {
  font-size: 18px;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  border-bottom: 1px solid rgba(211, 166, 78, 0.25);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(520px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 36px));
  min-height: 154px;
  margin: 0 auto;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  width: 184px;
  height: 130px;
  flex: 0 0 184px;
  place-items: center;
  padding: 4px;
  border: 2px solid rgba(255, 196, 0, 0.48);
  border-radius: 14px;
  background: #000000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.brand small {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-modern,
.hero-slider,
.booking-panel,
.feature-row,
.promo-section,
.stats-band,
.testimonial-section,
.final-cta,
.inner-hero,
.about-modern,
.why-modern,
.catalog-grid,
.accessory-modern,
.process-modern,
.contact-modern {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 780px;
  height: calc(100svh - 96px);
  max-height: 980px;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.hero-slider::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 9%;
  content: "";
  background: #171302;
  clip-path: ellipse(86% 58% at 50% 100%);
  pointer-events: none;
}

.hero-slider::after {
  position: absolute;
  right: 0;
  bottom: 6%;
  left: 0;
  z-index: 4;
  height: 44px;
  content: "";
  background: var(--gold);
  clip-path: ellipse(86% 54% at 50% 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  min-height: 100%;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease, transform 900ms ease;
  transform: scale(1.02);
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.46) 36%, rgba(0, 0, 0, 0.1) 68%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.hero-slide::after {
  display: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide.is-active::before {
  transform: scale(1);
}

.slide-copy {
  position: absolute;
  top: 36%;
  left: max(28px, calc((100vw - var(--max)) / 2));
  z-index: 7;
  align-self: start;
  width: min(720px, 50vw);
  max-width: 720px;
  padding-top: 0;
  padding-bottom: 0;
  animation: slideTextIn 760ms ease both;
  transform: translateY(-50%);
}

.slide-copy::before {
  display: block;
  width: 116px;
  height: 12px;
  margin-bottom: 18px;
  content: "";
  background: linear-gradient(90deg, var(--gold), #ffffff 54%, transparent);
  border-radius: 999px;
}

.slide-copy h1,
.slide-copy p {
  color: #ffffff;
}

.slide-copy h1 {
  font-size: clamp(42px, 4.2vw, 66px);
  font-style: italic;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.62);
}

.slide-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.45;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.52);
}

.slide-copy .eyebrow {
  color: var(--gold);
}

.slide-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  margin: 0;
  filter: none;
}

.slide-visual::before {
  display: none;
}

.slide-visual img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  margin-left: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  animation: heroImageZoom 9s ease-in-out infinite alternate;
}

.slide-visual.accessories img {
  object-position: 64% center;
}

.hero-socials {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  z-index: 8;
  display: flex;
  gap: 18px;
}

.hero-socials a {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #ffffff;
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.slider-dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  z-index: 8;
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.slider-dots button {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.slider-dots button.is-active {
  width: 58px;
  background: var(--gold);
}

@keyframes slideTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes productFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(16px) scale(1.018);
  }
}

@keyframes heroImageZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

.hero-modern {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 40px;
  align-items: center;
  padding: 50px 0 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(43px, 5.7vw, 82px);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.9vw, 55px);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p:not(.eyebrow),
.inner-hero p,
.contact-info p {
  max-width: 630px;
  font-size: 17px;
}

.hero-actions,
.contact-buttons {
  position: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 9px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  border: 1px solid var(--gold);
  color: var(--ink);
  background: #ffffff;
}

.button-whatsapp {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.25);
}

.button svg,
.button i,
.whatsapp-float svg,
.whatsapp-float i {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  fill: currentColor;
  font-size: 21px;
}

.hero-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.15), transparent 45%);
}

.hero-shape {
  position: absolute;
  top: 36px;
  left: 34px;
  z-index: 2;
  width: 128px;
  height: 255px;
  background: linear-gradient(160deg, #f7d983, var(--gold-dark));
  clip-path: polygon(0 0, 100% 22%, 40% 100%);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.28));
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-logo {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(211, 166, 78, 0.8);
  background: #000000;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.booking-panel {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 34px 34px 34px 112px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  box-shadow: 0 28px 70px rgba(211, 166, 78, 0.34);
}

.booking-panel::before {
  position: absolute;
  top: 50%;
  left: 34px;
  width: 56px;
  height: 42px;
  content: "";
  border: 8px solid var(--ink);
  border-radius: 12px;
  transform: translateY(-50%);
}

.booking-panel::after {
  position: absolute;
  top: 50%;
  left: 48px;
  width: 34px;
  height: 22px;
  content: "";
  border-right: 7px solid var(--ink);
  border-bottom: 7px solid var(--ink);
  transform: translateY(-66%) rotate(45deg);
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.quick-form label,
.quote-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

label span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dfd3be;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 138px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(211, 166, 78, 0.16);
}

.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding: 96px 0 76px;
}

.feature-row::before {
  position: absolute;
  top: 214px;
  right: 12%;
  left: 12%;
  height: 6px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
}

.feature-row article,
.promo-cards article,
.testimonial-grid article,
.catalog-card,
.process-modern article,
.why-modern article,
.quote-form,
.about-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.feature-row article {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-row article:hover,
.catalog-card:hover,
.promo-cards article:hover,
.testimonial-grid article:hover,
.why-modern article:hover,
.process-modern article:hover {
  border-color: rgba(211, 166, 78, 0.68);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-icon {
  position: relative;
  display: block;
  width: min(235px, 100%);
  height: 235px;
  margin: 0 auto 70px;
  border: 0;
  border-radius: 50%;
  background-color: var(--gold-soft);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.14);
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.suit-icon::before {
  inset: 12px 18px 10px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 50% 72%, 30% 100%);
}

.hanger-icon::before {
  top: 13px;
  left: 16px;
  width: 24px;
  height: 24px;
  border: 4px solid var(--gold-dark);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.hanger-icon::after {
  right: 11px;
  bottom: 14px;
  left: 11px;
  height: 4px;
  background: var(--ink);
  transform: rotate(-12deg);
}

.bow-icon::before {
  top: 20px;
  left: 10px;
  width: 36px;
  height: 18px;
  background: var(--ink);
  clip-path: polygon(0 0, 44% 50%, 0 100%, 0 0, 100% 0, 56% 50%, 100% 100%, 0 100%);
}

.gold-icon::before {
  inset: 15px;
  border: 4px solid var(--gold-dark);
  transform: rotate(45deg);
}

.feature-row .feature-icon::before {
  display: none;
}

.feature-row .feature-icon::after {
  display: none;
}

.feature-icon i {
  position: absolute;
  right: 50%;
  bottom: -42px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 8px solid #ffffff;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 34px;
  transform: translateX(50%);
  box-shadow: 0 22px 40px rgba(211, 166, 78, 0.34);
}

.suit-icon {
  background-image: url("assets/slide-primer-ano.png");
}

.hanger-icon {
  background-image: url("assets/header-accesorios.png");
}

.bow-icon {
  background-image: url("assets/slide-graduacion.png");
}

.gold-icon {
  background-image: url("assets/logo-gianmarco-ternos.jpeg");
  background-color: #000000;
}

.feature-row h2,
.catalog-card h2,
.why-modern h2 {
  margin-bottom: 10px;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.feature-row p,
.catalog-card p,
.process-modern p,
.why-modern p {
  margin-bottom: 0;
  font-size: 14px;
}

.promo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 70px 0;
}

.promo-copy {
  padding: 34px;
  border-radius: 22px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(211, 166, 78, 0.18), transparent 40%),
    var(--ink);
  box-shadow: var(--shadow);
}

.promo-copy p {
  color: #dddddd;
}

.promo-copy .eyebrow {
  color: #f1c96d;
}

.promo-copy .button-secondary {
  background: transparent;
  color: #ffffff;
}

.promo-cards {
  display: grid;
  gap: 16px;
}

.promo-cards article {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.promo-cards article::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
}

.promo-cards span,
.catalog-card span,
.why-modern span {
  color: var(--gold-dark);
  font-weight: 900;
}

.promo-cards strong {
  display: block;
  margin: 8px 0;
  font-size: 26px;
}

.promo-cards small {
  color: var(--muted);
  font-weight: 700;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--gold);
  box-shadow: var(--shadow);
}

.stats-band div {
  display: grid;
  gap: 4px;
  min-height: 138px;
  align-content: center;
  justify-items: center;
  padding: 22px;
  color: #ffffff;
  background: var(--ink);
}

.stats-band strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.stats-band span {
  color: #d7d7d7;
  font-weight: 700;
  text-align: center;
}

.testimonial-section {
  padding: 74px 0 52px;
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid article {
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-grid strong {
  display: block;
  color: var(--gold-dark);
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 64px;
  padding: 26px;
  border-radius: 22px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(211, 166, 78, 0.2), transparent 38%),
    var(--ink);
  box-shadow: var(--shadow);
}

.final-cta img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 14px;
  background: #000000;
}

.final-cta .eyebrow {
  color: #f1c96d;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta .button-primary {
  color: var(--ink);
  background: #ffffff;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 58px 0 40px;
}

.image-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: 32px;
  align-items: center;
  width: 100%;
  min-height: 690px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 54px;
  padding: 104px max(28px, calc((100vw - var(--max)) / 2)) 168px;
  border-radius: 0;
  color: #ffffff;
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.72) 100%),
    var(--header-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-header::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 18%;
  content: "";
  background: #171302;
  clip-path: ellipse(86% 58% at 50% 100%);
  animation: none;
}

.image-header::after {
  position: absolute;
  right: 0;
  bottom: 14%;
  left: 0;
  z-index: 2;
  height: 58px;
  content: "";
  background: var(--gold);
  clip-path: ellipse(86% 54% at 50% 100%);
}

.image-header .button {
  align-self: center;
  margin-bottom: 0;
}

.image-header > * {
  position: relative;
  z-index: 3;
}

.image-header > div {
  max-width: 760px;
}

.image-header h1 {
  max-width: 820px;
  font-size: clamp(46px, 4.7vw, 76px);
}

.image-header h1,
.image-header p {
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.52);
}

.image-header p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.image-header .eyebrow {
  color: #f6cd72;
}

@keyframes headerDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.07) translateX(-18px);
  }
}

.inner-hero img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.inner-hero h1 {
  max-width: 860px;
}

.about-modern,
.contact-modern {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 48px 0 66px;
}

.about-card.dark {
  display: grid;
  align-content: center;
  min-height: 410px;
  padding: 36px;
  color: #ffffff;
  background: var(--ink);
}

.about-card.dark span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: 18px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
}

.about-card.dark p {
  color: #d7d7d7;
}

.about-text {
  padding: 34px;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.why-modern,
.process-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 70px;
}

.why-modern article,
.process-modern article {
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 64px;
}

.catalog-card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  padding: 16px 16px 70px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-photo {
  position: relative;
  z-index: 1;
  height: 190px;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--sand);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.catalog-card:hover .service-photo img {
  transform: scale(1.06);
}

.catalog-card span,
.catalog-card h2,
.catalog-card p {
  position: relative;
  z-index: 2;
}

.catalog-card::after {
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 140px;
  height: 170px;
  content: "";
  background: rgba(211, 166, 78, 0.16);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.catalog-card.main,
.catalog-card.accent {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(211, 166, 78, 0.18), transparent 46%),
    var(--ink);
}

.catalog-card.main p,
.catalog-card.accent p {
  color: #dcdcdc;
}

.catalog-card.main span,
.catalog-card.accent span {
  color: #f1c96d;
}

.catalog-card a {
  position: absolute;
  bottom: 26px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-weight: 900;
  text-decoration: none;
}

.catalog-card.main a,
.catalog-card.accent a {
  color: var(--ink);
  background: var(--gold);
}

.accessory-modern {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 62px;
  padding: 34px;
  border-radius: 22px;
  background: var(--sand);
  box-shadow: var(--soft-shadow);
}

.accessory-modern ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accessory-modern li {
  position: relative;
  min-height: 52px;
  padding: 15px 14px 15px 44px;
  border-radius: 12px;
  background: #ffffff;
  font-weight: 800;
}

.accessory-modern li::before {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 13px;
  height: 13px;
  content: "";
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.process-modern span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

.process-modern strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-modern {
  align-items: start;
}

.contact-info {
  min-width: 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
}

.contact-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.contact-cards div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.contact-cards div:last-child {
  grid-column: 1 / -1;
}

.contact-cards .contact-card-icon {
  grid-row: span 2;
}

.contact-list dt {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 66px;
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.18), transparent 44%),
    var(--ink);
  box-shadow: var(--shadow);
}

.contact-map-panel h2,
.contact-map-panel p {
  color: #ffffff;
}

.contact-map-panel .eyebrow {
  color: var(--gold);
}

.contact-map-panel iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 18px;
  filter: grayscale(1) contrast(1.08);
}

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

.quote-form .form-wide,
.quote-form .form-button {
  grid-column: 1 / -1;
}

.quote-form .honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-button {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
  text-decoration: none;
}

.site-footer {
  width: 100%;
  margin: 56px 0 0;
  padding: 0 0 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.12), transparent 34%),
    var(--ink);
  border-top: 8px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.14);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 0.58fr 1fr 1.08fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 30px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-map {
  min-width: 0;
}

.footer-about img {
  width: 240px;
  height: 178px;
  object-fit: contain;
  border: 2px solid rgba(255, 196, 0, 0.55);
  border-radius: 16px;
  background: #000000;
  padding: 6px;
}

.footer-about strong {
  display: block;
  margin: 16px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.footer-about p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.22);
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  font-style: normal;
}

.footer-main h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-icon {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.footer-contact a:last-child {
  align-items: flex-start;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  filter: grayscale(1) contrast(1.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.footer-map .map-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  margin-top: 12px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.mail-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.mail-card {
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mail-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
}

.mail-card h1 {
  font-size: clamp(34px, 6vw, 56px);
}

@media (max-width: 1180px) {
  .topbar-inner {
    display: flex;
    grid-template-columns: none;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
  }

  .contact-topbar a {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .contact-topbar a > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .topbar-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }

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

  .footer-about,
  .footer-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    justify-content: end;
  }

  .hero-modern,
  .promo-section,
  .about-modern,
  .contact-modern,
  .contact-map-panel,
  .accessory-modern {
    grid-template-columns: 1fr;
  }

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

  .quick-form .button {
    grid-column: 1 / -1;
  }

  .feature-row,
  .stats-band,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .slide-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
  }

  .slide-visual img {
    width: 100%;
    height: 100%;
    min-height: 780px;
    object-fit: cover;
    border-radius: 0;
  }

  .slide-copy {
    width: min(680px, 58vw);
    max-width: 620px;
  }

  .hero-socials {
    right: 22px;
    bottom: 112px;
  }

  .hero-socials a {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .slider-dots {
    bottom: 184px;
  }

  .topbar-inner {
    display: flex;
    grid-template-columns: none;
    justify-content: center;
  }

  .topbar-inner a:last-child {
    grid-column: auto;
  }

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

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

@media (max-width: 780px) {
  .contact-topbar {
    padding: 0;
  }

  .topbar-inner {
    width: min(100% - 24px, var(--max));
    display: flex;
    grid-template-columns: none;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
  }

  .topbar-inner a:last-child {
    grid-column: auto;
  }

  .contact-topbar a {
    width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    font-size: 11px;
  }

  .contact-topbar a > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .topbar-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .topbar-icon i {
    font-size: 17px;
  }

  .header-inner {
    width: min(100% - 28px, var(--max));
    min-height: 88px;
    grid-template-columns: auto auto;
    padding: 8px 0;
  }

  .brand-logo {
    width: 112px;
    height: 82px;
    flex-basis: 112px;
    padding: 3px;
  }

  .brand strong {
    font-size: 26px;
  }

  .brand small {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero-modern {
    padding-top: 34px;
  }

  .hero-slider,
  .hero-slide {
    min-height: 640px;
  }

  .hero-slider {
    width: 100%;
    border-radius: 0;
  }

  .hero-slider::before {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 9%;
    opacity: 1;
  }

  .hero-slider::after {
    bottom: 6%;
    height: 38px;
  }

  .hero-slide {
    padding: 0;
    align-items: stretch;
  }

  .slide-visual {
    inset: 0;
    width: 100%;
    min-height: 100%;
  }

  .slide-visual img {
    margin-left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 640px;
    object-position: 62% center;
    border-radius: 0;
  }

  .slide-copy {
    position: absolute;
    top: 38%;
    left: 18px;
    width: calc(100% - 36px);
    align-self: auto;
    padding-bottom: 0;
  }

  .slide-copy h1 {
    max-width: 96%;
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.04;
  }

  .slide-copy .hero-actions {
    display: none;
  }

  .slide-copy p:not(.eyebrow) {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.42;
  }

  .hero-socials {
    display: none;
  }

  .slider-dots {
    bottom: 32px;
    left: 50%;
  }

  .booking-panel {
    margin-top: -24px;
    padding: 22px;
  }

  .booking-panel::before,
  .booking-panel::after {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 11vw, 55px);
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-photo {
    min-height: 420px;
  }

  .hero-logo {
    width: 116px;
    height: 116px;
  }

  .hero-shape {
    width: 96px;
    height: 190px;
  }

  .feature-row,
  .stats-band,
  .testimonial-grid,
  .why-modern,
  .catalog-grid,
  .process-modern,
  .quick-form,
  .quote-form,
  .contact-cards,
  .accessory-modern ul {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .image-header {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 620px;
    margin-top: 0;
    margin-bottom: 36px;
    padding: 72px 18px 132px;
    background-position: center;
    background-size: cover;
  }

  .image-header::before {
    right: 0;
    left: 0;
    height: 16%;
  }

  .image-header::after {
    bottom: 12%;
    height: 44px;
  }

  .image-header .button {
    width: 100%;
    margin-bottom: 0;
  }

  .image-header h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.05;
  }

  .image-header p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.45;
  }

  .feature-row::before {
    display: none;
  }

  .inner-hero img {
    width: 142px;
    height: 142px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .quote-form .form-wide,
  .quote-form .form-button {
    grid-column: auto;
  }

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

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 34px;
  }

  .footer-about,
  .footer-map {
    grid-column: 1 / -1;
  }

  .footer-links,
  .footer-contact {
    min-width: 0;
  }

  .footer-contact a {
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .footer-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .footer-map iframe,
  .contact-map-panel iframe {
    min-height: 260px;
  }

  .contact-cards div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .hero-modern,
  .booking-panel,
  .feature-row,
  .promo-section,
  .stats-band,
  .testimonial-section,
  .final-cta,
  .inner-hero,
  .about-modern,
  .why-modern,
  .catalog-grid,
  .accessory-modern,
  .process-modern,
  .contact-modern,
  .contact-map-panel {
    width: min(100% - 24px, var(--max));
  }

  .image-header {
    width: 100%;
  }

  .button,
  .contact-buttons a,
  .hero-actions a {
    width: 100%;
  }

  .hero-actions,
  .contact-buttons {
    display: grid;
  }

  .booking-panel,
  .promo-copy,
  .accessory-modern,
  .quote-form,
  .final-cta,
  .mail-card {
    padding: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
