:root {
  --paper: #f3efe8;
  --paper-deep: #e7dfd2;
  --ink: #171717;
  --muted: #5f5a53;
  --stone: #d2c5b1;
  --bronze: #9f7c4f;
  --bronze-soft: #c2a27c;
  --charcoal: #121212;
  --charcoal-soft: #1a1a1a;
  --line: rgba(23, 23, 23, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(12, 12, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #f7f4ee;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 232, 0.92);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 10px 30px rgba(20, 16, 10, 0.06);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-mark img {
  max-height: 77px;
  object-fit: scale-down;
  height: 70px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-left: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-links {
  justify-content: flex-end;
  gap: 21px;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-actions {
  gap: 10px;
  flex-shrink: 0;
}

.nav-products {
  position: static;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.78);
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-products-trigger {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(23, 23, 23, 0.78);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta):not(.nav-whatsapp)::after,
.nav-products-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-products-arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-products:hover .nav-products-trigger,
.nav-products.is-active .nav-products-trigger,
.nav-products.is-open .nav-products-trigger {
  color: var(--ink);
}

.site-nav a:hover:not(.nav-cta):not(.nav-whatsapp)::after,
.site-nav a.is-active:not(.nav-cta):not(.nav-whatsapp)::after,
.nav-products:hover .nav-products-trigger::after,
.nav-products.is-active .nav-products-trigger::after,
.nav-products.is-open .nav-products-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-products.is-open .nav-products-arrow {
  transform: translateY(1px) rotate(-135deg);
}

.site-nav a.nav-cta,
.nav-cta {
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #e81011 0%, #e81011 100%);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 16, 10, 0.08);
}

.site-nav a.nav-cta:hover,
.nav-cta:hover,
.nav-cta.is-active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #c50d0e 0%, #c50d0e 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 16, 10, 0.12);
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.48);
  color: #1e1e1e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 8px 18px rgba(20, 16, 10, 0.05);
}

.nav-whatsapp svg {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-whatsapp:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 23, 23, 0.22);
  background: rgba(255, 255, 255, 0.8);
}

.nav-products-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-products.is-open .nav-products-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-products-backdrop {
  display: none;
}

.nav-products-shell {
  width: 100%;
  margin: 0;
  padding: 26px 0 32px;
  min-height: calc(100vh - 112px);
  background:
    linear-gradient(180deg, rgba(243, 239, 232, 0.98), rgba(243, 239, 232, 0.98)),
    var(--paper);
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 18px 38px rgba(20, 16, 10, 0.08);
  overflow-y: auto;
}

.nav-products-top {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.nav-products-intro {
  max-width: 720px;
}

.nav-products-intro .eyebrow {
  color: var(--bronze);
}

.nav-products-intro h2 {
  color: var(--ink);
  max-width: none;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.nav-products-intro p:last-of-type {
  margin-top: 12px;
  max-width: 62ch;
  color: rgba(23, 23, 23, 0.68);
}

.nav-products-link-primary {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.14);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-products-close {
  padding: 11px 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-products-grid {
  width: min(1180px, calc(100vw - 48px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.nav-products-column {
  padding-right: 18px;
  border-right: 1px solid rgba(23, 23, 23, 0.08);
  display: grid;
  align-content: start;
  gap: 12px;
}

.nav-products-item-group {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
}

.nav-products-item-title {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.nav-products-column:last-child {
  border-right: 0;
}

.nav-products-column-cta {
  gap: 14px;
  align-content: start;
}

.nav-products-cta-title {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 700;
}

.nav-products-cta-copy {
  margin: 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.nav-products-heading {
  margin: 0 0 2px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.nav-products-column a {
  position: static;
  color: rgba(23, 23, 23, 0.8);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
}

.nav-products-column a::after {
  display: none;
}

.nav-products-column a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.nav-products-column .nav-products-cta-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(232, 16, 17, 0.26);
  padding-bottom: 6px;
}

.nav-products-column .nav-products-cta-link:hover {
  transform: none;
  border-bottom-color: rgba(232, 16, 17, 0.7);
}

.nav-products-subitem {
  padding-left: 0;
  font-size: 0.9rem;
  color: rgba(23, 23, 23, 0.66);
  font-weight: 500;
}

.nav-products-link-primary:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--bronze);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  max-width: 15ch;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.lead {
  font-size: 1.04rem;
  color: rgba(243, 239, 232, 0.86);
}

.section {
  padding: 92px 0;
}

.section-paper {
  background:
    radial-gradient(circle at top left, rgba(194, 162, 124, 0.08), transparent 35%),
    linear-gradient(180deg, #f7f4ee 0%, #f1ece4 100%);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.98)),
    #121212;
  color: #f0ece4;
}

.section-dark p {
  color: rgba(243, 239, 232, 0.72);
}

.section-stone {
  background: linear-gradient(180deg, #e4dbcf 0%, #d6cab8 100%);
}

.section-head-centered {
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 34px;
}

.section-head-centered h2 {
  max-width: none;
}

.section-head-right {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  margin-bottom: 34px;
}

.section-head-right .eyebrow,
.section-head-right h2,
.section-head-right p {
  width: 100%;
  text-align: left;
}

.section-head-right h2 {
  max-width: none;
}

.reasons-summary {
  max-width: 64ch;
  color: rgba(23, 23, 23, 0.72);
}

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

.reasons-page-shell {
  display: grid;
  gap: 34px;
}

.reasons-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.reasons-page-copy {
  max-width: 720px;
}

.reasons-page-lead {
  margin-top: 18px;
  max-width: 60ch;
  color: rgba(23, 23, 23, 0.74);
}

.reasons-page-aside {
  display: grid;
  gap: 14px;
}

.reasons-metric-card {
  padding: 20px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 32px rgba(18, 15, 10, 0.05);
}

.reasons-metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  line-height: 1;
}

.reasons-metric-card span {
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.96rem;
  line-height: 1.6;
}

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

.reasons-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 18px;
}

.reasons-photo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.reasons-photo-card-large {
  grid-row: span 2;
}

.reasons-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.reasons-photo-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.74);
  color: #f3efe8;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.reason-page-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 18px 34px rgba(18, 15, 10, 0.06);
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.reason-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 16, 17, 0.18);
  box-shadow: 0 24px 40px rgba(18, 15, 10, 0.08);
}

.reason-page-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(232, 16, 17, 0.08);
  color: #b21d1f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.reason-page-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.reason-page-card p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.reasons-editorial-grid {
  align-items: center;
}

.reason-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 4px;
}

.reason-proof-list span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 232, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 239, 232, 0.84);
  font-size: 0.9rem;
  line-height: 1.3;
}

.reasons-spotlight {
  display: grid;
  gap: 18px;
}

.reasons-spotlight-card {
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(243, 239, 232, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reasons-spotlight-card .eyebrow {
  margin-bottom: 10px;
}

.reasons-spotlight-card strong {
  display: block;
  color: #f3efe8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.reasons-spotlight-card p:last-child {
  margin-top: 12px;
  color: rgba(243, 239, 232, 0.72);
}

.reason-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 14px 32px rgba(18, 15, 10, 0.05);
  display: grid;
  align-content: start;
  gap: 14px;
}

.reason-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reason-card strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.02;
}

.reason-card p {
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.97rem;
  line-height: 1.6;
}

.hero-home,
.page-hero {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background: var(--charcoal);
}

.page-hero {
  min-height: 78vh;
}

.page-hero-short {
  min-height: 68vh;
}

.hero-media,
.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.02);
  transition: opacity 700ms ease, transform 2200ms ease;
}

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

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.58) 44%, rgba(12, 12, 12, 0.4) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.14), rgba(14, 14, 14, 0.58));
}

.hero-grid,
.page-hero-inner {
  position: relative;
  z-index: 2;
}

.hero-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 28px;
  padding: 118px 0 64px;
  grid-template-areas:
    "copy panel"
    "nav panel";
}

.page-hero-inner {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 122px 0 68px;
}

.page-hero-short .page-hero-inner {
  min-height: 68vh;
}

.hero-copy,
.page-hero-inner {
  color: #f3efe8;
}

.hero-copy {
  max-width: 760px;
  grid-area: copy;
}

.hero-copy p,
.page-hero-inner p {
  max-width: 620px;
}

.page-hero-inner-wide .eyebrow,
.page-hero-inner-wide .lead,
.page-hero-inner-wide h1 {
  max-width: none;
}

.hero-copy .eyebrow,
.page-hero-inner .eyebrow,
.section-dark .eyebrow {
  color: var(--bronze-soft);
}

.hero-home h1 {
  max-width: 38ch;
  font-size: 56px;
  line-height: 54px;
}

.hero-subeyebrow {
  margin-bottom: 10px;
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .lead {
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-summary {
  max-width: 48ch;
  color: rgba(243, 239, 232, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-solid {
  background: linear-gradient(135deg, #e81011 0%, #e81011 100%);
  color: #fff;
  border: 1px solid transparent;
  width: 228px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f3efe8;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(23, 23, 23, 0.18);
}

.button-full {
  width: 100%;
}

.hero-panel {
  align-self: end;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(243, 239, 232, 0.12), rgba(243, 239, 232, 0.06));
  color: #f3efe8;
  border: 1px solid rgba(243, 239, 232, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.18);
  backdrop-filter: blur(16px);
  grid-area: panel;
  max-width: 280px;
}

.panel-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--bronze-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-panel-title {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
}

.detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slider-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.hero-dot {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(243, 239, 232, 0.28);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dot.is-active {
  background: var(--bronze-soft);
}

.hero-dot:hover {
  transform: scaleX(1.06);
}

.detail-list li {
  border-bottom-color: rgba(23, 23, 23, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.intro-grid,
.editorial-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.intro-block,
.editorial-copy,
.text-panel,
.contact-copy {
  max-width: 560px;
}

.intro-block {
  display: grid;
  gap: 0;
  max-width: 500px;
}

.intro-lead {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.55;
}

.intro-body {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.intro-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  max-width: 560px;
}

.intro-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 32px rgba(18, 15, 10, 0.05);
}

.intro-card strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.intro-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.text-panel {
  display: grid;
  gap: 18px;
}

.portrait-frame,
.stacked-images img,
.image-strip img,
.gallery-grid img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.portrait-frame {
  padding: 18px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.home-intro-grid {
  align-items: stretch;
}

.home-intro-grid .portrait-frame {
  height: 100%;
}

.home-about-frame {
  padding: 0;
  background: transparent;
  border: 0;
}

.portrait-frame-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.home-about-frame img {
  height: 100%;
  aspect-ratio: auto;
}

.stacked-images {
  display: grid;
  gap: 18px;
}

.stacked-images img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.editorial-copy {
  display: grid;
  gap: 0;
}

.editorial-copy h2 {
  line-height: 1.04;
}

.editorial-body {
  margin-top: 12px;
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.7;
}

.editorial-body-primary {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.08rem;
}

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  max-width: 560px;
}

.medida-grid {
  align-items: center;
}

.medida-visual {
  display: grid;
  gap: 18px;
}

.medida-note-card {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 34px rgba(18, 15, 10, 0.05);
}

.medida-note-card .eyebrow {
  margin-bottom: 10px;
}

.medida-note-card strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.02;
}

.medida-note-card p:last-child {
  margin-top: 12px;
  color: rgba(23, 23, 23, 0.72);
}

.medida-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

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

.medida-proof-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35)),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 14px 28px rgba(18, 15, 10, 0.04);
  display: grid;
  align-content: start;
  gap: 10px;
}

.medida-proof-card strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.15;
}

.medida-proof-card span {
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.editorial-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 14px 30px rgba(18, 15, 10, 0.04);
}

.editorial-card strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  line-height: 1;
}

.editorial-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section-head {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 10px;
  margin-bottom: 24px;
}

.section-head-showcase {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-head-copy {
  max-width: 760px;
}

.showcase-intro {
  margin-top: 18px;
  max-width: 58ch;
  color: rgba(243, 239, 232, 0.68);
}

.showcase-link {
  margin-top: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(243, 239, 232, 0.18);
}

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

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

.feature-card,
.reason-item,
.client-card {
  min-height: 124px;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  align-items: end;
  font-size: 1rem;
  line-height: 1.45;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f3efe8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 16, 17, 0.8), transparent);
  opacity: 0.7;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 16, 17, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.feature-grid-light {
  margin-top: 14px;
}

.products-catalog-shell {
  display: grid;
  gap: 30px;
}

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

.products-family-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 18px 36px rgba(18, 15, 10, 0.05);
  display: grid;
  align-content: start;
  gap: 16px;
}

.products-family-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(232, 16, 17, 0.08);
  color: #b21d1f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.products-family-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 0.98;
}

.products-family-list,
.products-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-family-list {
  display: grid;
  gap: 12px;
}

.products-family-list > li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.products-family-list > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.products-sublist {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 16px;
}

.products-sublist li {
  position: relative;
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.94rem;
  font-weight: 500;
}

.products-sublist li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: rgba(232, 16, 17, 0.48);
}

.urban-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
  justify-content: center;
  align-items: center;
}

.urban-anchor-nav a {
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(18, 15, 10, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.urban-anchor-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 23, 23, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.urban-section-shell {
  display: grid;
  gap: 30px;
}

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

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

.urban-product-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.urban-product-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 18px 40px rgba(18, 15, 10, 0.05);
  display: grid;
  align-content: start;
}

.urban-product-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.urban-product-card-fit img {
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

#papeleras .urban-product-card-fit img {
  margin-top: 80px;
}

.urban-product-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(231, 223, 210, 0.72)),
    rgba(255, 255, 255, 0.64);
  color: rgba(23, 23, 23, 0.48);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.urban-product-copy {
  padding: 24px;
  display: grid;
  gap: 18px;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.urban-product-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2.3vw, 2.3rem);
  line-height: 1;
}

.urban-measure-table {
  display: grid;
  gap: 8px;
  align-content: start;
}

.urban-product-grid-three .urban-measure-table {
  min-height: 80px;
}

.urban-measure-row {
  display: grid;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: rgba(23, 23, 23, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.urban-measure-row.is-hidden {
  display: none;
}

.urban-measure-table-four .urban-measure-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.urban-measure-table-three .urban-measure-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.urban-measure-table-two .urban-measure-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.urban-measure-row span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.urban-more-button {
  justify-self: start;
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bronze);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.urban-product-note {
  margin: -4px 0 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.urban-product-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.urban-product-description {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  line-height: 1.6;
}

.pergola-product-image {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 4px;
}

.technical-table-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 18px 40px rgba(18, 15, 10, 0.05);
}

.technical-table-wrap {
  overflow-x: auto;
}

.technical-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.technical-table th,
.technical-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--ink);
  text-align: left;
}

.technical-table th {
  background: rgba(23, 23, 23, 0.04);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technical-table td {
  font-size: 0.95rem;
  font-weight: 600;
}

.technical-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.44);
}

.technical-table tbody tr:last-child td {
  border-bottom: 0;
}

.feature-card-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(18, 15, 10, 0.04);
}

.feature-card-light::after {
  background: linear-gradient(90deg, transparent, rgba(232, 16, 17, 0.55), transparent);
}

.feature-card-light:hover {
  border-color: rgba(232, 16, 17, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.7);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card span {
  max-width: 16ch;
}

.feature-card > span:last-child {
  max-width: 15ch;
  font-size: 1.05rem;
  line-height: 1.4;
}

.reason-item,
.client-card {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--ink);
}

.client-strip {
  display: grid;
  gap: 28px;
}

.client-strip .section-head-right {
  margin-bottom: 22px;
}

.client-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.client-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.11);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 0.95rem;
  color: #2a313f;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.client-pill.is-active,
.client-pill:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 23, 23, 0.18);
  transform: translateY(-1px);
}

.client-carousel {
  position: relative;
  min-height: 360px;
}

.client-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.client-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.client-slide img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.client-slide-copy {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 34px rgba(18, 15, 10, 0.05);
  display: grid;
  align-content: end;
  gap: 10px;
}

.client-slide-kicker {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-slide-copy strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.02;
}

.client-slide-copy p {
  color: rgba(23, 23, 23, 0.72);
}

.gallery-shell {
  display: grid;
  gap: 28px;
}

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

.gallery-grid img {
  aspect-ratio: 1;
  object-fit: cover;
}

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

.image-strip img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cta-band {
  padding: 0;
  background: #121212;
}

.cta-band-shell {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 56px 0;
}

.cta-band h2,
.cta-band p {
  color: #f3efe8;
}

.cta-copy {
  max-width: 900px;
}

.cta-copy h2 {
  max-width: 24ch;
}

.cta-description {
  margin-top: 16px;
  max-width: 64ch;
  color: rgba(243, 239, 232, 0.7);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-button {
  min-height: 56px;
  padding: 0 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.text-link.light {
  color: #f3efe8;
}

.about-hero .page-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0) 0%,
    rgba(14, 14, 14, 0) 45%,
    rgba(12, 12, 12, 0.4) 78%,
    rgba(12, 12, 12, 0.7) 100%
  );
}

.about-intro-section {
  padding-top: 86px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.about-facility-section {
  padding-top: 54px;
}

.about-facility-grid {
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1fr);
}

.about-facility-grid .about-copy-panel {
  justify-self: end;
}

.about-facility-grid .about-copy-panel h2 {
  max-width: none;
}

.about-copy-panel {
  max-width: 720px;
}

.about-copy-panel h2 {
  max-width: none;
}

.about-lead {
  margin-top: 20px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.62;
}

.about-copy-panel p:not(.eyebrow):not(.about-lead) {
  margin-top: 14px;
  max-width: 66ch;
}

.about-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-proof-row article {
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 30px rgba(18, 15, 10, 0.05);
}

.about-proof-row strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  line-height: 0.95;
}

.about-proof-row span {
  display: block;
  margin-top: 12px;
  color: rgba(23, 23, 23, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--charcoal);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow);
}

.about-image-card img {
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.about-image-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.about-image-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--bronze-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-image-note strong {
  display: block;
  color: #f3efe8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
}

.about-method-shell {
  display: grid;
  gap: 6px;
}

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

.about-method-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  align-content: start;
  gap: 16px;
}

.about-method-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--bronze-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.about-method-card strong {
  color: #f3efe8;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.03;
}

.about-method-card p {
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-closing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.about-closing h2 {
  max-width: 12ch;
}

.about-closing p {
  max-width: 62ch;
}

.legal-page-shell {
  display: grid;
  gap: 24px;
}

.legal-document,
.legal-block {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 32px rgba(18, 15, 10, 0.05);
}

.legal-document section + section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.legal-document h2,
.legal-block h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

.legal-document h2,
.legal-block h2 {
  font-size: clamp(1.6rem, 2.1vw, 2.05rem);
}

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

.legal-data-list li {
  color: rgba(23, 23, 23, 0.74);
  line-height: 1.6;
}

.legal-data-list strong {
  color: var(--ink);
}

.legal-document p + p,
.legal-block p + p {
  margin-top: 12px;
}

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

.contact-points {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-points li {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.contact-points strong {
  color: var(--ink);
}

.contact-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

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

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  background: #faf8f3;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.site-footer {
  padding: 28px 0 34px;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 120px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 10px;
}

.footer-copy {
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.65;
}

.footer-links-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 280px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  max-width: 500px;
}

.footer-links a {
  color: rgba(243, 239, 232, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .editorial-grid,
  .about-intro-grid,
  .contact-layout,
  .cta-band-shell {
    grid-template-columns: 1fr;
  }

  .nav-products-shell {
    padding: 34px;
    min-height: calc(100vh - 112px);
  }

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

  .urban-product-grid,
  .urban-product-grid-three {
    grid-template-columns: 1fr;
  }

  .medida-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 110px;
    grid-template-areas:
      "copy"
      "nav"
      "panel";
  }

  .hero-panel {
    max-width: 360px;
  }

  .feature-grid,
  .feature-grid-large,
  .reasons-grid,
  .about-method-grid,
  .client-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons-page-intro,
  .reasons-page-grid,
  .reasons-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reasons-photo-card-large {
    grid-row: auto;
  }

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

  .client-carousel {
    min-height: 560px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .about-image-card img {
    min-height: 430px;
  }

  .about-closing {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-nav {
    gap: 12px;
  }

  .nav-links {
    gap: 8px;
  }

  .site-nav a,
  .nav-products-trigger {
    font-size: 0.68rem;
  }

  .nav-products-shell {
    width: min(1240px, calc(100vw - 28px));
    padding: 28px 22px;
    min-height: auto;
  }

  .nav-products-top,
  .nav-products-grid,
  .products-family-grid {
    grid-template-columns: 1fr;
  }

  .urban-anchor-nav {
    gap: 10px;
  }

  .urban-measure-table-four .urban-measure-row,
  .urban-measure-table-three .urban-measure-row,
  .urban-measure-table-two .urban-measure-row {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1180px, calc(100vw - 28px));
  }

  .hero-home,
  .page-hero,
  .page-hero-short {
    min-height: auto;
  }

  .hero-grid,
  .page-hero-inner {
    min-height: auto;
    padding: 108px 0 58px;
  }

  .hero-home h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 8vw, 3.8rem);
  }

  .hero-slider-nav {
    gap: 8px;
  }

  .hero-dot {
    width: 28px;
  }

  .section {
    padding: 74px 0;
  }

  .feature-grid,
  .feature-grid-large,
  .reasons-grid,
  .about-proof-row,
  .about-method-grid,
  .client-grid,
  .gallery-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .reasons-page-intro,
  .reasons-page-grid,
  .reasons-photo-grid {
    grid-template-columns: 1fr;
  }

  .reasons-photo-card {
    min-height: 220px;
  }

  .medida-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-cards {
    grid-template-columns: 1fr;
  }

  .section-head-showcase,
  .footer-shell {
    flex-direction: column;
    align-items: start;
  }

  .section-head-right {
    align-items: start;
    text-align: left;
  }

  .showcase-link {
    margin-top: 0;
  }

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

  .footer-links-shell {
    justify-content: flex-start;
    min-width: auto;
    width: 100%;
  }

  .client-pills {
    justify-content: flex-start;
    gap: 10px;
  }

  .client-pill {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .client-carousel {
    min-height: auto;
    position: static;
  }

  .client-slide {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-slide.is-active {
    display: grid;
  }

  .client-slide img {
    min-height: 240px;
    max-height: 300px;
  }

  .client-slide-copy {
    padding: 20px;
  }

  .client-slide-copy strong {
    font-size: 1.6rem;
  }

  .about-intro-section {
    padding-top: 70px;
  }

  .about-copy-panel h2,
  .about-closing h2 {
    max-width: none;
  }

  .about-image-card img {
    min-height: 360px;
  }

  .legal-document,
  .legal-block {
    padding: 20px;
  }

  .hero-panel {
    max-width: 100%;
    padding: 18px;
  }

  .detail-list li {
    padding: 12px 0;
    font-size: 0.92rem;
  }

  .feature-card {
    min-height: 130px;
    padding: 18px;
  }

  .reason-card {
    min-height: 160px;
    padding: 20px;
  }

  .reason-card strong {
    font-size: 1.35rem;
  }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background 200ms ease;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, top 200ms ease;
}

.mobile-menu-toggle span::before {
  top: -6px;
}

.mobile-menu-toggle span::after {
  top: 6px;
}

.mobile-menu-toggle.is-active span {
  background: transparent;
}

.mobile-menu-toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(243, 239, 232, 0.98);
  backdrop-filter: blur(20px);
  padding: 100px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 23, 23, 0.08);
  text-decoration: none;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

.mobile-nav-products-title {
  margin: 24px 0 12px;
  padding: 0 20px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav-products {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.mobile-nav-products a {
  display: block;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(23, 23, 23, 0.06);
  text-decoration: none;
  color: rgba(23, 23, 23, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 180ms ease;
}

.mobile-nav-products a:hover,
.mobile-nav-products a:active {
  background: rgba(255, 255, 255, 0.8);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.98));
  margin-top: auto;
}

.mobile-nav-cta-title {
  margin: 0;
  color: #f3efe8;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.mobile-nav-cta-copy {
  margin: 0;
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mobile-nav-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e81011 0%, #c50d0e 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 23, 23, 0.08);
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-nav-phone svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 560px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .nav-shell {
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }

  .brand-mark {
    width: 90px;
  }

  .brand-mark img {
    height: 56px;
    max-height: 56px;
  }

  .site-nav {
    display: none;
  }

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

  .mobile-nav {
    display: block;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-home h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.6rem);
  }

  .hero-grid,
  .page-hero-inner {
    padding-top: 110px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .button-solid {
    width: 100%;
  }

  .about-image-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .contact-card {
    padding: 22px;
  }

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

  .about-facility-grid {
    gap: 28px;
  }

  .portrait-frame {
    padding: 12px;
  }

  .portrait-frame img {
    aspect-ratio: 16 / 12;
  }

  .intro-block,
  .editorial-copy,
  .text-panel,
  .contact-copy {
    max-width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .cta-band-shell {
    padding: 40px 0;
    gap: 24px;
  }

  .cta-copy h2 {
    max-width: 100%;
  }

  .urban-anchor-nav a {
    padding: 11px 16px;
    font-size: 0.82rem;
  }

  .urban-product-copy {
    padding: 20px;
  }

  .urban-product-copy h3 {
    font-size: 1.5rem;
  }

  .technical-table {
    min-width: 100%;
  }

  .technical-table th,
  .technical-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .pergola-product-image {
    height: 240px;
  }

  .footer-shell {
    min-height: auto;
    padding: 10px 0;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-copy {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}
