:root {
  --accent: #a6543a;
  --accent-hover: #8f452f;
  --olive: #2f351c;
  --olive-2: #3c4424;
  --paper: #fbfaf7;
  --text: #111;
  --muted: #5b5b5b;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  color: var(--accent);
}

.container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 3vw, 3.2rem);
  line-height: 1.03;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.topbar {
  background: linear-gradient(180deg, var(--olive), var(--olive-2));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  text-align: center;
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand img {
  display: block;
  height: auto;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: #222;
}

.nav-link.is-active {
  color: var(--accent);
  position: relative;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-header {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
}

.whatsapp-header i {
  font-size: 1.65rem;
  color: #3c421f;
}

.icon-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn i {
  font-size: 1.05rem;
}

.lang-toggle {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-menu {
  position: relative;
  display: inline-flex;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 150px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 80;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(44, 42, 37, 0.92);
}

.lang-option:hover {
  background: rgba(0, 0, 0, 0.04);
}

.lang-option[aria-current="true"]::after {
  content: "✓";
  font-weight: 800;
  color: rgba(60, 66, 31, 0.92);
}

.header-cta {
  padding: 10px 14px;
  border-radius: 10px;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.menu-btn i {
  font-size: 1.5rem;
}

.mobile-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: transparent;
  border-top: 0;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.mobile-nav-inner {
  display: grid;
  gap: 12px;
  padding: 14px 0 18px;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-title {
  font-weight: 800;
  color: #222;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
}

.mobile-nav-links .nav-link {
  display: inline-block;
  padding: 6px 0 10px;
}

.mobile-nav-links .nav-link.is-active::after {
  bottom: 4px;
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.hero-split {
  background: var(--paper);
  padding: 0;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.hero-left {
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  padding-right: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  min-height: clamp(420px, 64vh, 640px);
}

.hero-h1 {
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #3c421f;
}

.hero-lead {
  margin: 0 0 18px;
  color: #4a453e;
  line-height: 1.6;
  font-size: 1.04rem;
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 14px;
  border-top: 0;
}

.hero-feature {
  border-right: 2px solid rgba(43, 42, 39, 0.22);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  color: #2b2a27;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 10px 0;
}

.hero-feature:last-child {
  border-right: 0;
}

.hero-feature i {
  display: inline-block;
  font-size: 1.9rem;
  color: #2b2a27;
}

.hero-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100%;
  background: #eee;
  border-radius: 0;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-media-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, filter 120ms ease, background 120ms ease, border-color 120ms ease;
  will-change: transform;
}

.btn-label {
  display: inline-block;
}

.btn-icon {
  font-size: 1.15rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(166, 84, 58, 0.5);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(166, 84, 58, 0.06);
  border-color: rgba(166, 84, 58, 0.65);
  color: var(--accent);
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
  z-index: 2;
}

.hero-progress-item {
  width: min(130px, 28vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hero-progress-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

.hero-progress-item {
  --p: 0;
}

.hero-progress-item:focus-visible {
  outline: 3px solid rgba(229, 46, 85, 0.9);
  outline-offset: 6px;
}

.section {
  padding: 54px 0;
}

.page-hotels .wh-main.section {
  padding-bottom: 28px;
}

.ht-form.section {
  padding-top: 18px;
}

.section-muted {
  background: #fff;
}

.section-title {
  margin: 0 0 18px;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #2c2a25;
}

.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin: 10px auto 0;
  opacity: 0.75;
}

.body-title {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.14;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
}

.solution-media {
  position: relative;
}

.solution-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #3c421f;
  display: grid;
  place-items: center;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  box-shadow: none;
  border: 0;
}

.solution-icon i {
  font-size: 1.35rem;
}

.solution-body {
  padding: 36px 16px 14px;
  text-align: center;
}

.solution-body h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: #3c421f;
}

.solution-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 0;
  padding-top: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon head"
    "body body";
  column-gap: 12px;
  padding: 16px 14px 12px;
  text-align: left;
  border-right: 0;
  align-items: center;
  position: relative;
}

.why-item:last-child {
  border-right: 0;
}

.why-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: rgba(43, 42, 39, 0.14);
}

.why-item:last-child::after {
  display: none;
}

.why-icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: #3c421f;
  margin: 0;
}

.why-head {
  grid-area: head;
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #2b2a27;
}

.why-body {
  grid-area: body;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 10px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

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

.featured-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.featured-img {
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f4f1eb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.featured-img--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}

.featured-body {
  padding: 12px 12px 12px;
}

.featured-name {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #3c421f;
}

.featured-meta {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.featured-colors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
}

.featured-label {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

.dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--c, #111);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-small {
  width: 100%;
  padding: 10px 12px;
  font-weight: 700;
  text-transform: lowercase;
}

.collection-modal[hidden] {
  display: none;
}

.collection-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.collection-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0.55);
}

.collection-modal__dialog {
  position: relative;
  width: min(1320px, calc(100% - 32px));
  margin: 0;
  height: min(92vh, 860px);
  max-height: calc(100vh - 32px);
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.collection-modal__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2c2a25;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}

.collection-modal__close:focus-visible {
  outline: 3px solid rgba(60, 66, 31, 0.55);
  outline-offset: 2px;
}

.collection-modal__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 0;
  height: 100%;
}

.collection-modal__left {
  background: radial-gradient(circle at 40% 25%, rgba(255, 255, 255, 0.96), #f3eee6);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 10px 8px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.collection-modal__leftTop {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 38px;
}

.collection-modal__stage {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 6px;
  position: relative;
  overflow: hidden;
}

.collection-modal__img {
  justify-self: center;
  max-width: 100%;
  max-height: min(32vh, 320px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 120ms ease-out;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transform: scale(1.12);
}

.collection-modal__stage.is-zoomable {
  cursor: zoom-in;
}

.collection-modal__stage.is-zoomable.is-zoomed {
  cursor: zoom-out;
}

.collection-modal__stage.is-zoomable.is-zoomed .collection-modal__img {
  transform: scale(2.6);
}

.collection-modal__nav {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #2b2a27;
}

.collection-modal__nav i {
  font-size: 1.1rem;
}

.collection-modal__nav:focus-visible {
  outline: 3px solid rgba(60, 66, 31, 0.55);
  outline-offset: 2px;
}

.collection-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.collection-modal__thumb {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  padding: 6px;
  display: grid;
  gap: 6px;
  justify-items: center;
  cursor: pointer;
}

.collection-modal__thumb.is-active {
  border-color: rgba(156, 80, 51, 0.5);
  box-shadow: 0 0 0 3px rgba(156, 80, 51, 0.12) inset;
}

.collection-modal__thumbImg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
}

.collection-modal__thumb span {
  font-size: 0.68rem;
  color: #2b2a27;
  line-height: 1.2;
  text-align: center;
}

.collection-modal__right {
  padding: 14px 14px 14px;
  overflow: auto;
}

.collection-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.collection-modal__heart {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  color: #2b2a27;
  cursor: pointer;
}

.collection-modal__heart i {
  font-size: 1.1rem;
}

.collection-modal__name {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.6vw, 1.8rem);
  color: #3c421f;
}

.collection-modal__subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.collection-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  color: #2b2a27;
}

.chip i {
  font-size: 1rem;
  color: #3c421f;
}

.collection-modal__h {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2b2a27;
}

.collection-modal__tableWrap {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: auto;
  background: #fff;
  margin: 0 0 18px;
}

.collection-modal__footnote {
  margin: -10px 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.collection-modal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.collection-modal__table th,
.collection-modal__table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}

.collection-modal__table th:not(:last-child),
.collection-modal__table td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.collection-modal__table th:nth-child(2),
.collection-modal__table td:nth-child(2) {
  text-align: center;
}

.collection-modal__table th:nth-child(3),
.collection-modal__table td:nth-child(3) {
  text-align: center;
}

.collection-modal__table th {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2b2a27;
  background: #f7f4ee;
}

.collection-modal__table tbody tr:last-child td {
  border-bottom: 0;
}

.collection-modal__perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.perk {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  color: #2b2a27;
}

.perk i {
  font-size: 1.08rem;
  color: #3c421f;
}

.perk span {
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--muted);
}

.collection-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 8px;
}

.collection-modal__actions .btn {
  justify-content: center;
  gap: 10px;
}

.collection-modal__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-bottom: 6px;
}

.collection-modal__note i {
  color: #3c421f;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .collection-modal {
    padding: 0;
    place-items: stretch;
  }

  .collection-modal__dialog {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .collection-modal__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .collection-modal__left {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .collection-modal__right {
    overflow: visible;
  }

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

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

  .collection-modal__actions {
    grid-template-columns: 1fr;
  }
}

.featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.featured-cta .btn {
  width: min(520px, 100%);
  justify-content: center;
}

/* Products hub */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-line {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.product-line__img {
  aspect-ratio: 4 / 3;
  display: block;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-line__img--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}

.product-line__img--bags-logo,
.product-line__img--pompones-logo,
.product-line__img--dermar-logo {
  background-position: center;
}

.product-line__img--bags-logo {
  background-size: 72%;
}

.product-line__img--pompones-logo {
  background-size: 64%;
}

.product-line__img--dermar-logo {
  background-size: 58%;
}

.product-line__body {
  padding: 14px 14px 14px;
}

.product-line__title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #3c421f;
}

.product-line__meta {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Pompon modal (image-only) */
.pompon-modal[hidden] {
  display: none;
}

.pompon-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.pompon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0.55);
}

.pompon-modal__dialog {
  position: relative;
  width: min(980px, calc(100% - 32px));
  height: min(86vh, 860px);
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.dermar-modal {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

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

.dermar-modal__productBtn {
  width: 34px;
  height: 34px;
}

.pompon-modal__top {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.pompon-modal__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2c2a25;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pompon-modal__title {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #3c421f;
}

.pompon-modal__stage {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  padding: 18px;
  background: radial-gradient(circle at 40% 25%, rgba(255, 255, 255, 0.96), #f3eee6);
  overflow: hidden;
}

.pompon-modal__stage > * {
  min-height: 0;
  min-width: 0;
}

.pompon-modal__img {
  justify-self: center;
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 120ms ease-out;
  transform: scale(1);
}

.pompon-modal__stage.is-zoomable {
  cursor: zoom-in;
}

.pompon-modal__stage.is-zoomable.is-zoomed {
  cursor: zoom-out;
}

.pompon-modal__stage.is-zoomable.is-zoomed .pompon-modal__img {
  transform: scale(2.4);
}

.dermar-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 92px);
  justify-content: center;
  gap: 6px;
  padding: 10px 12px 12px;
  margin-top: 8px;
  background: #fff;
  overflow: auto;
}

.dermar-thumb {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  text-align: center;
  cursor: pointer;
  display: grid;
  gap: 4px;
  overflow: hidden;
}

.dermar-thumb.is-active {
  border-color: rgba(60, 66, 31, 0.45);
  box-shadow: 0 0 0 1px rgba(60, 66, 31, 0.15) inset;
}

.dermar-thumb__img {
  display: block;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.dermar-thumb__label {
  font-size: 0.66rem;
  color: var(--text);
  line-height: 1.2;
}

.pompon-modal__nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #2b2a27;
}

.pompon-modal__nav i {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .pompon-modal {
    padding: 0;
    place-items: stretch;
  }

  .pompon-modal__dialog {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .pompon-modal__stage {
    grid-template-columns: 44px 1fr 44px;
  }

  .dermar-modal__thumbs {
    grid-template-columns: repeat(2, 92px);
    justify-content: center;
    padding: 10px 10px 10px;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .page-dermar .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1200px) {
  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.amenities {
  background: #fff;
  overflow-x: clip;
}

.amenities-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 0;
}

.amenities-left {
  position: relative;
  z-index: 0;
  background: var(--paper);
  padding: 34px 0;
}

.amenities-content {
  max-width: 680px;
  padding-right: 26px;
}

.amenities-left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: 0;
  background: var(--paper);
  z-index: -1;
}

.amenities-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  line-height: 1.12;
  color: #3c421f;
}

.amenities-body {
  margin: 0 0 18px;
  color: #4a453e;
  line-height: 1.65;
  max-width: 62ch;
}

.amenities-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
}

.amenity {
  padding: 12px 10px 0;
  text-align: center;
  border-right: 2px solid rgba(43, 42, 39, 0.14);
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
}

.amenity:last-child {
  border-right: 0;
}

.amenity-icon {
  font-size: 1.85rem;
  color: #3c421f;
}

.amenity-label {
  font-size: 0.84rem;
  color: #2b2a27;
  line-height: 1.25;
}

.amenities-right {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
}

.amenities-right-wrap {
  position: relative;
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

.amenities-right {
  height: 100%;
  min-height: 320px;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 22px;
  margin-top: 38px;
}

.page-export .process-grid {
  grid-template-columns: minmax(0, 260px) auto minmax(0, 260px) auto minmax(0, 260px);
  justify-content: center;
}

.process-step {
  text-align: center;
  max-width: 260px;
  justify-self: center;
}

.process-top {
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.process-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(44, 42, 37, 0.16);
  background: #f3f1ec;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  color: #2c2a25;
  line-height: 1;
}

.process-icon {
  font-size: 2.15rem;
  color: var(--accent);
}

.process-title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2c2a25;
}

.process-body {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #4a453e;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 42, 37, 0.55);
  font-size: 1.5rem;
  padding-top: 6px;
}

.wh-hero {
  background: var(--paper);
  padding: 46px 0 28px;
  position: relative;
  overflow: hidden;
}

.wh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/slide_0.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-wholesale .wh-hero::before {
  background-image: url("../img/slide_mayoreo.webp");
}

.page-hotels .wh-hero::before {
  background-image: url("../img/hoteles-hero.webp");
}

.wh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 250, 247, 0.94) 0%,
    rgba(251, 250, 247, 0.9) 42%,
    rgba(251, 250, 247, 0) 72%
  );
  z-index: 0;
}

.page-wholesale .wh-hero::after {
  display: none;
}

.page-hotels .wh-hero::after {
  display: none;
}

.wh-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.wh-hero-left {
  max-width: 720px;
  padding: 0;
}

.page-wholesale .wh-hero-left {
  max-width: 500px;
}

.wh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(60, 66, 31, 0.9);
  margin-bottom: 10px;
}

.wh-kicker-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(60, 66, 31, 0.22);
  display: grid;
  place-items: center;
  color: rgba(60, 66, 31, 0.75);
}

.wh-title {
  margin: 0 0 10px;
  color: #3c421f;
}

.wh-lead {
  margin: 0 0 18px;
  color: #4a453e;
  line-height: 1.6;
  max-width: 70ch;
}

.wh-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wh-hero-media {
  display: none;
}

.wh-strip {
  background: #fff;
  padding: 16px 0;
}

.wh-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(251, 250, 247, 0.65);
  overflow: hidden;
}

.wh-strip-item {
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
}

.wh-strip-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(43, 42, 39, 0.14);
}

.wh-strip-item:last-child::after {
  display: none;
}

.wh-strip-icon {
  font-size: 2.05rem;
  color: #3c421f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wh-strip-title {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #2b2a27;
}

.wh-strip-body {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.35;
}

.wh-main {
  padding-top: 22px;
}

.wh-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-hotels .wh-main-inner {
  grid-template-columns: 1fr;
  align-items: start;
}

.hotel-solutions {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.hotel-title {
  margin-bottom: 20px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hotel-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  text-align: center;
  padding-bottom: 12px;
  box-shadow: none;
}

.hotel-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hotel-card-title {
  margin: 12px 10px 6px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: #3c421f;
}

.hotel-card-body {
  margin: 0 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.collections-hero {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.collections-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/slide_0.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-export .collections-hero::before {
  background-image: url("../img/solutions/compradores-internacionales.webp");
}

.page-about .collections-hero::before {
  background-image: url("../img/slide_2.webp");
}

.page-contact .collections-hero::before {
  background-image: url("../img/slide_3.webp");
}

.collections-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 247, 0.86);
  z-index: 0;
}

.collections-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--paper);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-hero-left {
  display: grid;
  align-items: center;
  padding: 34px 0;
}

.contact-hero-inner {
  width: min(660px, 100%);
  margin-left: max(16px, calc((100vw - 1320px) / 2));
  margin-right: 0;
  padding-right: 40px;
}

.contact-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(44, 42, 37, 0.7);
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.contact-breadcrumbs .crumb {
  color: inherit;
  text-decoration: none;
}

.contact-breadcrumbs .crumb:hover {
  text-decoration: underline;
}

.contact-hero-title {
  margin: 0 0 10px;
  color: #3c421f;
}

.contact-hero-lead {
  margin: 0 0 16px;
  color: #4a453e;
  line-height: 1.65;
  max-width: 68ch;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 16px;
  margin-top: 10px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}

.contact-info-item--wide {
  grid-column: 1 / -1;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  color: #3c421f;
}

.contact-info-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(44, 42, 37, 0.82);
}

.contact-info-value {
  margin-top: 2px;
  color: rgba(44, 42, 37, 0.7);
  text-decoration: none;
}

a.contact-info-value:hover {
  text-decoration: underline;
}

.contact-hero-right {
  background-image: url("../img/amenidades-hospitalidad.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-split {
  background: #fff;
}

.contact-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-split-left {
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding: 26px 0 30px;
}

.contact-split-right {
  background: var(--paper);
  padding: 26px 0 30px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-split-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/sections/sombra-formulario.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.contact-split-left .container,
.contact-split-right .container {
  width: auto;
  margin: 0;
}

.contact-split-left .container {
  padding-left: max(16px, calc((100vw - 1320px) / 2));
  padding-right: 40px;
}

.contact-split-right .container {
  padding-left: 40px;
  padding-right: max(16px, calc((100vw - 1320px) / 2));
  position: relative;
  z-index: 1;
}

.contact-form-box .contact-h2 {
  margin-bottom: 12px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form-actions {
  margin-top: 12px;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  height: 46px;
  gap: 10px;
}

.textarea--lg {
  min-height: 110px;
}

.contact-right-inner {
  display: grid;
  gap: 14px;
}

.contact-why-title {
  text-align: center;
  margin-bottom: 44px !important;
}

.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center;
  align-items: start;
  padding-top: 6px;
}

.contact-why-icon {
  font-size: 1.8rem;
  color: #3c421f;
}

.contact-why-text {
  margin-top: 8px;
  color: rgba(44, 42, 37, 0.78);
  font-size: 0.92rem;
  line-height: 1.3;
}

.contact-social-block {
  margin-top: 28px;
  text-align: center;
}

.contact-social-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: rgba(44, 42, 37, 0.9);
  margin-bottom: 10px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.contact-social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  color: rgba(44, 42, 37, 0.7);
  text-decoration: none;
}

.contact-social:hover {
  border-color: rgba(166, 84, 58, 0.55);
  color: rgba(44, 42, 37, 0.95);
}

.contact-features {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.contact-feature {
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
}

.contact-feature + .contact-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(60, 66, 31, 0.25);
}

.contact-feature-icon {
  font-size: 1.7rem;
  color: #3c421f;
}

.contact-feature-title {
  font-weight: 800;
  color: rgba(44, 42, 37, 0.9);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-feature-body {
  margin-top: 4px;
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .contact-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-hero-right {
    min-height: 260px;
  }
  .contact-hero-inner {
    width: min(720px, calc(100% - 32px));
    margin: 0 auto;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-split-inner {
    grid-template-columns: 1fr;
  }
  .contact-split-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .contact-split-left .container,
  .contact-split-right .container {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-feature-grid {
    grid-template-columns: 1fr;
  }
  .contact-feature + .contact-feature::before {
    display: none;
  }
}

.export-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ex-form .wh-quote {
  margin-top: 0;
}

.ex-quote-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  align-items: start;
}

.ex-quote-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ex-quote-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  align-content: start;
}

.ex-quote-message .textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 1100px) {
  .ex-quote-layout {
    grid-template-columns: 1fr;
  }
  .ex-quote-left {
    grid-template-columns: 1fr;
  }
}

.export-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.export-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 16px 14px;
}

.export-icon {
  font-size: 2rem;
  color: #3c421f;
}

.export-card-title {
  margin: 10px 0 6px;
  font-weight: 800;
  font-size: 0.98rem;
  color: #2b2a27;
}

.export-card-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.export-steps {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.export-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px;
}

.export-step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(60, 66, 31, 0.08);
  border: 1px solid rgba(60, 66, 31, 0.18);
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  color: #3c421f;
}

.export-step-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: #2b2a27;
}

.export-step-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .export-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collections-title {
  margin: 0 0 8px;
  color: #3c421f;
}

.collections-lead {
  margin: 0;
  max-width: 70ch;
  color: #4a453e;
  line-height: 1.6;
}

.collections-grid {
  margin-top: 8px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.about-h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #2c2a25;
}

.about-p {
  margin: 0 0 12px;
  color: #4a453e;
  line-height: 1.65;
  max-width: 68ch;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metric {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: var(--paper);
  padding: 12px 12px;
}

.metric-value {
  font-weight: 800;
  color: #2b2a27;
}

.metric-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}

.tile {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tile--a {
  grid-column: 1 / 3;
  grid-row: 1;
}

.tile--b {
  grid-column: 1;
  grid-row: 2;
}

.tile--c {
  grid-column: 2;
  grid-row: 2;
}

.tile--d {
  display: none;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 16px 14px;
}

.value-icon {
  font-size: 2rem;
  color: #3c421f;
}

.value-title {
  margin: 10px 0 6px;
  font-weight: 800;
  font-size: 0.98rem;
  color: #2b2a27;
}

.value-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.about-process-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.about-process-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-process-title {
  margin: 12px 14px 6px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: #3c421f;
}

.about-process-body {
  margin: 0 14px 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.about-cta {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.about-cta-title {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #3c421f;
}

.about-cta-body {
  margin: 0;
  color: #4a453e;
  line-height: 1.6;
  max-width: 70ch;
}

.about-cta-actions {
  display: flex;
  justify-content: flex-end;
}

.about2-underline {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(166, 84, 58, 0.9);
  margin: 10px 0 16px;
}

.about2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--paper);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about2-hero-left {
  display: grid;
  align-items: center;
  padding: 34px 0;
}

.about2-hero-inner {
  width: min(680px, 100%);
  margin-left: max(16px, calc((100vw - 1320px) / 2));
  padding-left: 0;
  padding-right: 150px;
}

.about2-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(44, 42, 37, 0.7);
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.about2-breadcrumbs .crumb {
  color: inherit;
  text-decoration: none;
}

.about2-breadcrumbs .crumb:hover {
  text-decoration: underline;
}

.about2-title {
  margin: 0;
  color: #3c421f;
}

.about2-lead {
  margin: 0 0 18px;
  color: #4a453e;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 70ch;
}

.about2-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 46px;
  padding: 0 18px;
}

.about2-hero-right {
  background-image: url("../img/sections/hero-nosotros.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about2-strip {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 16px 0;
}

.about2-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.about2-strip-item {
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
}

.about2-strip-item + .about2-strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.about2-strip-icon {
  font-size: 1.8rem;
  color: #3c421f;
}

.about2-strip-title {
  font-weight: 800;
  color: rgba(44, 42, 37, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.76rem;
}

.about2-strip-body {
  margin-top: 5px;
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about2-story {
  background: #fff;
  border-bottom: none;
}

.about2-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.about2-story-media {
  background-image: url("../img/sections/nosotros-tejido.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about2-story-right {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.about2-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  padding-right: 26px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.about2-story-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  color: rgba(44, 42, 37, 0.95);
}

.about2-story-p {
  margin: 0 0 12px;
  color: rgba(44, 42, 37, 0.72);
  line-height: 1.65;
  font-size: 0.84rem;
  max-width: 62ch;
}

.about2-sign {
  margin-top: 14px;
  font-family: "Herr Von Muellerhoff", "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  color: rgba(166, 84, 58, 0.92);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.about2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about2-stat {
  padding: 22px 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about2-stat:nth-child(2n) {
  border-right: none;
}

.about2-stat-value {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: rgba(44, 42, 37, 0.95);
}

.about2-stat-label {
  font-size: 0.82rem;
  color: rgba(44, 42, 37, 0.7);
}

.about2-band {
  background: linear-gradient(180deg, rgba(47, 53, 28, 0.92), rgba(47, 53, 28, 0.92)),
    url("../img/slide_2.webp");
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.92);
  padding: 22px 0;
  margin-top: -1px;
}

.about2-band-inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: center;
}

.about2-band-left {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.about2-band-icon {
  font-size: 1.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.about2-band-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 4px;
}

.about2-band-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.about2-band-mid {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 18px;
}

.about2-band-q {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.about2-band-qsub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.about2-band-btn {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
  height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about2-band-btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

/* Exportación (v2) */
.btn-olive {
  background: #3c421f;
  border-color: #3c421f;
  color: #fff;
}

.btn-olive:hover {
  background: #2f351c;
  border-color: #2f351c;
  color: #fff;
}

.export2-underline {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(166, 84, 58, 0.9);
  margin: 12px 0 16px;
}

.export2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--paper);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.export2-hero-left {
  display: grid;
  align-items: center;
  padding: 34px 0;
  padding-left: max(16px, calc((100vw - 1320px) / 2));
  padding-right: 16px;
}

.export2-hero-inner {
  padding-right: 44px;
  width: min(680px, 100%);
  margin: 0;
}

.export2-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 42, 37, 0.62);
  margin-bottom: 10px;
}

.export2-title {
  margin: 0;
  color: rgba(44, 42, 37, 0.95);
}

.export2-lead {
  margin: 0 0 18px;
  color: rgba(44, 42, 37, 0.72);
  line-height: 1.65;
  max-width: 68ch;
}

.export2-icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 18px 0 18px;
}

.export2-icon-item {
  padding: 0 14px;
  text-align: center;
  position: relative;
}

.export2-icon-item + .export2-icon-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.export2-icon {
  font-size: 1.8rem;
  color: #3c421f;
}

.export2-icon-text {
  margin-top: 10px;
  color: rgba(44, 42, 37, 0.72);
  line-height: 1.35;
  font-size: 0.92rem;
}

.export2-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.export2-ctas .btn {
  justify-content: center;
  height: 46px;
  gap: 12px;
}

.export2-hero-right {
  background-image: url("../img/sections/hero-exportacion.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.export2-mid {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.export2-mid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.export2-ideal {
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding: 26px 0 30px;
  display: grid;
  align-items: center;
}

.export2-ideal-inner {
  width: auto;
  margin: 0;
  padding-left: max(16px, calc((100vw - 1320px) / 2));
  padding-right: 16px;
}

.export2-ideal-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 4px 0 18px;
}

.export2-ideal-title .line {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.export2-ideal-title .text {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(44, 42, 37, 0.9);
}

.export2-ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

.export2-ideal-item {
  padding: 18px 16px;
  text-align: center;
  position: relative;
}

.export2-ideal-item:nth-child(2n) {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.export2-ideal-item:nth-child(n + 3) {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.export2-ideal-icon {
  font-size: 1.75rem;
  color: #3c421f;
}

.export2-ideal-head {
  margin: 10px 0 8px;
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(44, 42, 37, 0.92);
  line-height: 1.2;
}

.export2-ideal-body {
  margin: 0;
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.export2-form {
  background: var(--paper);
  position: relative;
  padding: 26px 0 30px;
  display: grid;
  align-items: center;
}

.export2-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/sections/sombra-formulario.webp");
  background-size: cover;
  background-position: right center;
  opacity: 1;
  pointer-events: none;
}

.export2-form-inner {
  position: relative;
  width: auto;
  margin: 0;
  padding-left: 40px;
  padding-right: max(16px, calc((100vw - 1320px) / 2));
}

.export2-form-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  color: rgba(44, 42, 37, 0.95);
}

.export2-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.export2-submit {
  width: 100%;
  justify-content: center;
  height: 46px;
  gap: 12px;
}

.export2-form-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.86rem;
}

.export2-steps {
  background: rgba(47, 53, 28, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 26px 0 24px;
}

.export2-steps-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  color: rgba(44, 42, 37, 0.95);
}

.export2-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}

.export2-step {
  text-align: center;
  position: relative;
}

.export2-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 26px);
  right: -9px;
  border-top: 2px dotted rgba(60, 66, 31, 0.35);
}

.export2-step-top {
  display: grid;
  justify-items: center;
  margin-bottom: 10px;
}

.export2-step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #3c421f;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.export2-step-head {
  font-weight: 800;
  color: rgba(44, 42, 37, 0.92);
  margin-bottom: 6px;
}

.export2-step-body {
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.export2-bottom {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.export2-bottom-inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.export2-bottom-item {
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
  position: relative;
}

.export2-bottom-item + .export2-bottom-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.export2-bottom-icon {
  font-size: 1.75rem;
  color: #3c421f;
  grid-row: 1 / span 2;
  align-self: center;
}

.export2-bottom-title {
  grid-column: 2;
  grid-row: 1;
  font-weight: 800;
  color: rgba(44, 42, 37, 0.92);
  font-size: 0.92rem;
}

.export2-bottom-body {
  grid-column: 2;
  grid-row: 2;
  margin-top: 3px;
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .about2-hero {
    grid-template-columns: 1fr;
  }
  .about2-hero-right {
    min-height: 320px;
  }
  .about2-hero-inner {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .about2-strip-inner {
    grid-template-columns: 1fr;
  }
  .about2-strip-item + .about2-strip-item::before {
    display: none;
  }
  .about2-story-inner {
    grid-template-columns: 1fr;
  }
  .about2-story-media {
    min-height: 280px;
  }
  .about2-story-right {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .about2-story-copy {
    padding: 26px 16px;
  }
  .about2-stats {
    border-left: none;
  }
  .about2-band-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about2-band-mid {
    border-left: none;
    padding-left: 0;
  }
  .about2-band-right .btn {
    width: 100%;
    justify-content: center;
  }

  .export2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .export2-hero-right {
    min-height: 320px;
  }
  .export2-hero-inner {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding-right: 0;
  }
  .export2-hero-left {
    padding-left: 0;
  }
  .export2-icon-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .export2-icon-item + .export2-icon-item::before {
    display: none;
  }
  .export2-ctas {
    grid-template-columns: 1fr;
  }
  .export2-mid-inner {
    grid-template-columns: 1fr;
  }
  .export2-ideal {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .export2-ideal-inner,
  .export2-form-inner {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .export2-ideal-grid {
    grid-template-columns: 1fr;
  }
  .export2-ideal-item + .export2-ideal-item::before {
    display: none;
  }
  .export2-form-grid {
    grid-template-columns: 1fr;
  }
  .export2-step-grid {
    grid-template-columns: 1fr;
  }
  .export2-step::after {
    display: none;
  }
  .export2-bottom-inner {
    grid-template-columns: 1fr;
  }
  .export2-bottom-item + .export2-bottom-item::before {
    display: none;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.contact-h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  color: #2c2a25;
}

.contact-p {
  margin: 0 0 14px;
  color: #4a453e;
  line-height: 1.65;
  max-width: 65ch;
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.contact-icon {
  font-size: 1.5rem;
  color: #3c421f;
  display: grid;
  place-items: center;
}

.contact-card-title {
  font-weight: 800;
  color: #2b2a27;
  line-height: 1.2;
}

.contact-card-body {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-quote .lead-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-quote .lead-msg {
  grid-column: 1 / 3;
}

.contact-actions {
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-quote .lead-grid {
    grid-template-columns: 1fr;
  }
  .contact-quote .lead-msg {
    grid-column: auto;
  }
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-size: cover;
  background-position: center;
}

@media (max-width: 1100px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-metrics {
    grid-template-columns: 1fr;
  }
  .about-mosaic {
    grid-template-rows: 180px 160px;
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-process {
    grid-template-columns: 1fr;
  }
  .about-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .about-cta-actions {
    width: 100%;
  }
  .about-cta-actions .btn {
    width: min(420px, 100%);
  }
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wh-next {
  margin-top: 14px;
}

.wh-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.wh-next-grid > * {
  height: 100%;
}

.wh-next-grid .wh-process {
  margin-top: 0;
}

.wh-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tier-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.tier-top {
  padding: 0 16px 8px;
  text-align: center;
}

.tier-pill {
  width: min(220px, 82%);
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 0 0 18px 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 1.62rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  background: #3c421f;
  box-shadow: none;
}

.tier-pill--olive {
  background: #3c421f;
}

.tier-pill--accent {
  background: var(--accent);
}

.tier-tag {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(60, 66, 31, 0.82);
  margin-top: 14px;
}

.tier-list {
  list-style: none;
  margin: 0;
  padding: 12px 20px 8px;
  display: grid;
  gap: 12px;
  color: rgba(44, 42, 37, 0.78);
  font-size: 0.84rem;
  flex: 1 1 auto;
}

.tier-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 4px;
  align-items: start;
  line-height: 1.35;
}

.tier-check {
  color: rgba(60, 66, 31, 0.7);
  font-size: 1.15rem;
  margin-top: 2px;
}

.tier-bottom {
  display: grid;
  place-items: center;
  margin-top: 10px;
  margin-top: auto;
}

.tier-bottom-icon {
  font-size: 2.4rem;
  color: rgba(60, 66, 31, 0.48);
}

.wh-process {
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: var(--paper);
  padding: 16px 16px 14px;
}

.wh-subtitle {
  margin: 0 0 12px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  color: rgba(44, 42, 37, 0.7);
}

.wh-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wh-process-step {
  text-align: center;
  padding: 10px 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.wh-process-icon {
  font-size: 2rem;
  color: var(--accent);
}

.wh-process-head {
  margin: 8px 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
}

.wh-process-body {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.35;
}

.wh-custom {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: var(--paper);
  padding: 14px 14px 16px;
}

.wh-custom-kicker {
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(44, 42, 37, 0.7);
}

.wh-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.custom-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.custom-title {
  text-align: center;
  padding: 10px 10px 8px;
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(44, 42, 37, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.custom-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(60, 66, 31, 0.08), rgba(166, 84, 58, 0.08));
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.custom-media--colors {
  background-image: url("../img/sections/colores.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-media--handles {
  background-image: url("../img/sections/asas.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-media--labels {
  background-image: url("../img/sections/tu-marca.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-media--pack {
  background-image: url("../img/sections/empaque.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wh-quote {
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.wh-quote-title {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  color: #2c2a25;
}

.wh-quote-sub {
  margin: 0 0 14px;
  color: rgba(44, 42, 37, 0.75);
  font-size: 0.9rem;
}

.wh-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.page-hotels .ht-form .ht-quote-grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "name hotel message"
    "email country message"
    "type volume submit";
  align-items: start;
  row-gap: 8px;
  column-gap: 12px;
}

.page-hotels .ht-form .ht-field--name {
  grid-area: name;
}
.page-hotels .ht-form .ht-field--hotel {
  grid-area: hotel;
}
.page-hotels .ht-form .ht-field--message {
  grid-area: message;
}
.page-hotels .ht-form .ht-field--email {
  grid-area: email;
}
.page-hotels .ht-form .ht-field--country {
  grid-area: country;
}
.page-hotels .ht-form .ht-field--type {
  grid-area: type;
}
.page-hotels .ht-form .ht-field--volume {
  grid-area: volume;
}
.page-hotels .ht-form .ht-field--submit {
  grid-area: submit;
  width: 100%;
  align-self: end;
}

.page-hotels .ht-form .ht-field--message .textarea {
  min-height: 120px;
  height: 100%;
  resize: none;
}

.wh-quote-submit {
  justify-content: center;
  height: 44px;
}

.wh-quote-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 12px;
  padding-top: 10px;
  color: rgba(44, 42, 37, 0.72);
  font-size: 0.82rem;
}

.wh-quote-foot i {
  margin-right: 8px;
}

@media (max-width: 1100px) {
  .wh-hero-inner {
    grid-template-columns: 1fr;
  }
  .wh-hero {
    padding: 34px 0 22px;
  }
  .wh-hero::after {
    background: rgba(251, 250, 247, 0.92);
  }
  .wh-hero-left {
    max-width: none;
    padding: 22px 16px 16px;
  }
  .wh-strip-inner {
    grid-template-columns: 1fr;
  }
  .wh-strip-item::after {
    display: none;
  }
  .wh-main-inner {
    grid-template-columns: 1fr;
  }
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wh-tiers {
    grid-template-columns: 1fr;
  }
  .wh-custom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wh-next-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wh-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wh-quote-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .page-hotels .ht-form .ht-quote-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    row-gap: 12px;
    column-gap: 12px;
  }
  .page-hotels .ht-form .ht-quote-grid > * {
    grid-area: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .page-hotels .ht-form .ht-field--submit {
    align-self: stretch;
    justify-self: stretch;
  }
  .wh-quote-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}


.lead-card {
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 280px;
  align-items: stretch;
}

.lead-media {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.lead-main {
  padding: 26px 26px 22px;
}

.lead-title {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #2c2a25;
}

.lead-subtitle {
  margin: 0 0 16px;
  color: #4a453e;
  font-size: 0.9rem;
}

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

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

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

.field--tall {
  grid-row: span 2;
  grid-template-rows: auto 1fr;
}

.field--tall .textarea {
  align-self: stretch;
  height: 100%;
  min-height: 96px;
}

.field-label {
  font-size: 0.8rem;
  color: rgba(44, 42, 37, 0.75);
}

.input {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  outline: none;
}

.select {
  width: 100%;
  padding: 10px 38px 10px 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background-color: #fff;
  font: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232c2a25' d='M3.2 5.8a.8.8 0 0 1 1.1 0L8 9.5l3.7-3.7a.8.8 0 1 1 1.1 1.1l-4.3 4.3a.8.8 0 0 1-1.1 0L3.2 6.9a.8.8 0 0 1 0-1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

.input:focus {
  border-color: rgba(166, 84, 58, 0.55);
  box-shadow: 0 0 0 3px rgba(166, 84, 58, 0.15);
}

.textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  outline: none;
  resize: vertical;
  min-height: 44px;
}

.select:focus,
.textarea:focus {
  border-color: rgba(166, 84, 58, 0.55);
  box-shadow: 0 0 0 3px rgba(166, 84, 58, 0.15);
}

.lead-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.lead-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(44, 42, 37, 0.7);
}

.lead-trust {
  padding: 26px 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  align-content: center;
  gap: 12px;
  justify-items: center;
  text-align: center;
  height: 100%;
}

.lead-trust-title {
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(44, 42, 37, 0.78);
  max-width: 18ch;
}

.lead-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  justify-items: center;
}

.badge {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(44, 42, 37, 0.22);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  color: rgba(44, 42, 37, 0.7);
  font-size: 1.35rem;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card-title {
  margin: 0 0 8px;
}

.card-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  background: #3c421f;
  color: rgba(255, 255, 255, 0.88);
  padding: 38px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.8fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: min(150px, 100%);
  height: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  margin: 0 0 14px;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  font-size: 0.86rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.social-link:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

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

.footer-list--two {
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  column-gap: 28px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.footer-list a:hover {
  color: #fff;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.footer-contact-list i {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding: 14px 0;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-list--two {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
  }
}

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

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #3c421f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  z-index: 999;
}

.whatsapp-fab i {
  font-size: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}

.whatsapp-tooltip.is-visible,
.whatsapp-fab:hover .whatsapp-tooltip,
.whatsapp-fab:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-left {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 26px;
    padding-bottom: 22px;
    background: var(--paper);
    text-align: center;
  }
  .hero-right {
    min-height: clamp(260px, 34vh, 360px);
    order: -1;
  }
  .hero-media {
    height: 100%;
    min-height: 100%;
  }
  .hero-progress {
    bottom: 12px;
  }
  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 18px;
    margin-top: 12px;
  }
  .hero-feature:nth-child(3) {
    display: none;
  }
  .hero-feature {
    border-right: 2px solid rgba(43, 42, 39, 0.22);
    padding: 10px 10px 0;
  }
  .hero-feature:last-child {
    border-right: 0;
  }
  .hero-h1 {
    color: #3c421f;
  }
  .hero-lead {
    color: #4a453e;
  }
  .hero-split {
    background: var(--paper);
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-ctas .btn {
    width: min(520px, 100%);
    justify-content: center;
    position: relative;
  }
  .hero-ctas .btn-icon {
    position: absolute;
    right: 16px;
    opacity: 0.85;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
    padding-top: 0;
    gap: 14px;
  }
  .why-item {
    border-right: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 14px 12px;
    background: #fff;
  }
  .why-item::after {
    display: none;
  }
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-step {
    max-width: 520px;
    text-align: center;
    justify-self: center;
  }
  .process-top {
    justify-content: center;
  }
  .process-arrow {
    display: flex;
    padding: 2px 0;
  }
  .process-arrow .bi {
    transform: rotate(90deg);
  }
  .lead-card {
    grid-template-columns: 1fr;
  }
  .lead-media {
    min-height: 210px;
    order: -1;
  }
  .lead-main {
    padding: 22px 16px 16px;
  }
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .lead-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lead-trust {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 16px 20px;
  }
  .lead-badges {
    grid-template-columns: repeat(4, 1fr);
  }
  .amenities-inner.container {
    width: 100%;
    margin: 0;
  }
  .amenities-inner {
    grid-template-columns: 1fr;
  }
  .amenities-right {
    min-height: 240px;
    order: -1;
  }
  .amenities-left {
    padding: 24px 0;
  }
  .amenities-content {
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }
  .amenities-left::before {
    left: 0;
    right: 0;
  }
  .amenities-right-wrap {
    margin-right: 0;
  }
  .amenities-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .amenity {
    border-right: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 12px 10px;
    background: #fff;
  }
  .header-cta,
  .icon-btn {
    display: none;
  }
  .lang-toggle {
    display: none;
  }
  .whatsapp-header {
    display: inline-flex;
  }
  .whatsapp-fab {
    display: none;
  }
  .brand {
    justify-self: center;
  }
  .header-actions {
    justify-self: end;
  }
  .menu-btn {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
