:root {
  --black: #050505;
  --green: #12331c;
  --lime: #c8e600;
  --white: #ffffff;
  --gray: #d8d8d8;
  --dark: #111111;
  --line: rgba(255, 255, 255, 0.12);
  --muted: rgba(216, 216, 216, 0.76);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 6%, rgba(200, 230, 0, 0.11), transparent 28rem),
    linear-gradient(145deg, var(--black) 0%, #071108 48%, var(--black) 100%);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

main {
  overflow: hidden;
}

.site-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.header-nav,
.hero-actions,
.button-row,
.form-row {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: min(220px, 34vw);
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.brand:not(.has-logo) .brand-logo {
  display: none;
}

.brand.has-logo .brand-fallback {
  display: none;
}

.brand-fallback {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-fallback::before {
  display: inline-block;
  width: 34px;
  height: 20px;
  margin-right: 10px;
  vertical-align: -5px;
  background:
    radial-gradient(circle at 32% 50%, transparent 7px, var(--lime) 8px, var(--lime) 9px, transparent 10px),
    radial-gradient(circle at 68% 50%, transparent 7px, var(--lime) 8px, var(--lime) 9px, transparent 10px);
  content: "";
}

.brand-fallback strong {
  color: var(--lime);
  font-weight: 700;
  text-transform: lowercase;
}

.header-nav {
  justify-self: end;
  gap: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.header-nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding: 160px max(24px, calc((100vw - var(--max-width)) / 2)) 82px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.46) 44%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.24) 46%, rgba(5, 5, 5, 0.36) 100%),
    url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?auto=format&fit=crop&w=2200&q=86") center / cover;
}

.hero-content {
  width: min(760px, 100%);
}

.hero-caption {
  position: absolute;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  bottom: 34px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0;
}

.section > *:not(.wave-field) {
  position: relative;
  z-index: 1;
}

.about-section,
.upcoming-section {
  overflow: hidden;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--lime);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-top: 0;
  font-size: clamp(2.4rem, 4.7vw, 4.95rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-content p,
.section-heading p {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.04rem;
}

.hero-content p {
  max-width: 630px;
}

.hero-actions,
.button-row {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 800 0.9rem/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

.btn-primary {
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 12px 34px rgba(200, 230, 0, 0.16);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.wave-field {
  position: absolute;
  pointer-events: none;
}

.wave-field span {
  position: absolute;
  display: block;
  width: 920px;
  height: 300px;
  border-top: 1px solid rgba(200, 230, 0, 0.2);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.wave-field span:nth-child(2) { translate: 0 18px; opacity: 0.86; }
.wave-field span:nth-child(3) { translate: 0 36px; opacity: 0.74; }
.wave-field span:nth-child(4) { translate: 0 54px; opacity: 0.62; }
.wave-field span:nth-child(5) { translate: 0 72px; opacity: 0.5; }
.wave-field span:nth-child(6) { translate: 0 90px; opacity: 0.38; }
.wave-field span:nth-child(7) { translate: 0 108px; opacity: 0.3; }
.wave-field span:nth-child(8) { translate: 0 126px; opacity: 0.22; }

.hero-wave {
  right: -270px;
  bottom: 62px;
  z-index: -1;
  width: 760px;
  height: 270px;
  opacity: 0.68;
}

.section-wave {
  z-index: 0;
  width: 780px;
  height: 260px;
  opacity: 0.3;
}

.section-wave span {
  width: 860px;
  height: 280px;
  border-color: rgba(200, 230, 0, 0.18);
}

.about-wave {
  top: 26px;
  left: -440px;
}

.upcoming-wave {
  right: -390px;
  top: 72px;
  opacity: 0.36;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading .eyebrow::after {
  width: 34px;
  height: 1px;
  background: var(--lime);
  content: "";
}

.centered-heading p {
  margin-right: auto;
  margin-left: auto;
}

.subsection {
  margin-top: 112px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 78px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.copy-stack p,
.copy-columns p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.team-section {
  padding-top: 0;
}

.team-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 51, 28, 0.72), rgba(17, 17, 17, 0.94)),
    var(--dark);
}

.team-panel > *:not(.wave-field) {
  position: relative;
  z-index: 1;
}

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

.team-copy {
  max-width: 920px;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.member-card {
  min-height: 260px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.member-photo {
  display: block;
  width: 100%;
  height: 170px;
  min-height: 150px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
}

.member-card h3 {
  font-size: 1rem;
}

.member-card p {
  margin-top: 7px;
  font-size: 0.86rem;
}

.color-grid,
.component-grid,
.pillars-grid,
.events-grid,
.realized-grid {
  display: grid;
  gap: 22px;
}

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

.color-card,
.pillar-card,
.highlight-block,
.newsletter-card,
.type-specimen,
.experience-card,
.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.72);
}

.color-card {
  padding: 16px;
}

.swatch {
  display: block;
  height: 110px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.swatch-black { background: #050505; }
.swatch-green { background: #12331c; }
.swatch-lime { background: #c8e600; }
.swatch-white { background: #ffffff; }
.swatch-gray { background: #d8d8d8; }
.swatch-dark { background: #111111; }

.color-card p {
  margin-top: 7px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.86rem;
}

.typography-panel {
  align-items: start;
}

.type-specimen {
  padding: 34px;
}

.type-specimen h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.type-specimen h2,
.type-specimen h3,
.type-specimen p,
.type-specimen small {
  display: block;
  margin-top: 20px;
}

.component-grid {
  grid-template-columns: 1.06fr 0.94fr;
}

.experience-card {
  overflow: hidden;
  grid-row: span 2;
}

.card-media {
  height: 370px;
}

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

.card-content,
.pillar-card,
.highlight-block,
.newsletter-card {
  padding: 30px;
}

.card-content h3,
.pillar-card h3,
.highlight-block h3,
.newsletter-card h3 {
  margin-top: 16px;
}

.card-content p,
.pillar-card p,
.highlight-block p,
.newsletter-card p {
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-lime {
  color: var(--black);
  border-color: transparent;
  background: var(--lime);
}

.pillar-card svg {
  width: 24px;
  height: 24px;
  color: var(--lime);
}

.highlight-block {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  background:
    linear-gradient(135deg, rgba(18, 51, 28, 0.88), rgba(17, 17, 17, 0.9)),
    var(--dark);
}

.highlight-block > *:not(.wave-field) {
  position: relative;
  z-index: 1;
}

.card-wave {
  right: -420px;
  bottom: -72px;
  width: 620px;
  height: 190px;
  opacity: 0.42;
}

.card-wave span {
  width: 640px;
  height: 210px;
}

.form-row {
  gap: 12px;
  margin-top: 24px;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.58);
  font: 500 0.95rem "Inter", system-ui, sans-serif;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(200, 230, 0, 0.66);
}

.form-message {
  min-height: 22px;
  color: var(--lime);
  font-weight: 700;
}

.pillars-section {
  padding-top: 0;
}

.deliveries-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pillars-section .section-heading {
  max-width: none;
}

.pillars-section h2 {
  max-width: none;
  white-space: nowrap;
}

.deliveries-image {
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 51, 28, 0.72), rgba(17, 17, 17, 0.94)),
    var(--dark);
  box-shadow: var(--shadow);
}

.deliveries-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deliveries-list {
  display: grid;
  gap: 14px;
}

.delivery-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.delivery-item svg {
  width: 24px;
  height: 24px;
  color: var(--lime);
}

.delivery-item h3 {
  font-size: 1.06rem;
}

.delivery-item p {
  margin-top: 8px;
  font-size: 0.94rem;
}

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

.pillars-grid-expanded {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pillars-grid-expanded .pillar-card {
  grid-column: span 2;
  min-height: 310px;
}

.pillars-grid-expanded .pillar-card-wide {
  grid-column: span 3;
  min-height: 280px;
}

small {
  color: var(--muted);
  font-size: 0.82rem;
}

.realized-section {
  padding-top: 118px;
}

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

.realized-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.realized-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.realized-content {
  padding: 20px;
}

.realized-content h3 {
  color: #161616;
  font-size: 1.08rem;
}

.realized-content span {
  display: block;
  margin-top: 8px;
  color: #12331c;
  font-size: 0.82rem;
  font-weight: 900;
}

.realized-content p {
  margin-top: 10px;
  color: rgba(20, 20, 20, 0.68);
  font-size: 0.95rem;
}

.upcoming-section {
  padding-top: 118px;
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 230, 0, 0.48);
  background: rgba(200, 230, 0, 0.1);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.upcoming-carousel {
  display: grid;
  grid-auto-columns: minmax(310px, 380px);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(200, 230, 0, 0.55) rgba(255, 255, 255, 0.08);
}

.upcoming-carousel::-webkit-scrollbar {
  height: 9px;
}

.upcoming-carousel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.upcoming-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(200, 230, 0, 0.52);
}

.upcoming-card {
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.96), rgba(5, 5, 5, 0.96)),
    var(--dark);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.upcoming-photo {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.upcoming-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.42), transparent 58%);
  content: "";
}

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

.upcoming-card:hover .upcoming-photo img {
  transform: scale(1.05);
}

.year-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 34px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #101010;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.year-tag-2026 {
  color: #061007;
  background: var(--lime);
}

.year-tag-2027 {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(18, 51, 28, 0.9);
  backdrop-filter: blur(12px);
}

.soon-tag {
  color: #101010;
  background: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}

.consult-tag {
  color: var(--lime);
  border: 1px solid rgba(200, 230, 0, 0.46);
  background: rgba(5, 5, 5, 0.72);
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.upcoming-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.upcoming-content h3 {
  min-height: 56px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.event-place {
  margin-top: 18px;
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-date {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.event-description {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.event-price {
  margin-top: auto;
  padding-top: 26px;
  color: var(--white);
  font-size: 0.9rem;
}

.event-price strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.upcoming-content .btn {
  width: 100%;
  margin-top: auto;
  text-transform: uppercase;
}

.newsletter-section {
  padding-top: 118px;
}

.privacy-section {
  min-height: 100vh;
  padding-top: 180px;
}

.privacy-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 51, 28, 0.74), rgba(17, 17, 17, 0.96)),
    var(--dark);
  box-shadow: var(--shadow);
}

.privacy-panel h1 {
  max-width: 860px;
  margin-top: 16px;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
}

.privacy-content {
  display: grid;
  gap: 30px;
  max-width: 920px;
  margin-top: 34px;
}

.policy-intro,
.policy-section {
  display: grid;
  gap: 14px;
}

.policy-section {
  padding-top: 26px;
  border-top: 1px solid rgba(200, 230, 0, 0.16);
}

.policy-section h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.privacy-content p,
.privacy-content li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-content ul {
  margin: 0;
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.privacy-content li::marker {
  color: var(--lime);
}

.privacy-date {
  color: var(--lime) !important;
  font-weight: 800;
}

.privacy-panel .btn {
  margin-top: 34px;
}

.newsletter-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(340px, 1fr);
  grid-template-rows: auto 1fr;
  gap: 30px;
  align-items: stretch;
  min-height: 260px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(18, 51, 28, 0.82), rgba(5, 5, 5, 0.92)),
    var(--dark);
  box-shadow: var(--shadow);
}

.newsletter-feature > *:not(.wave-field):not(.newsletter-image) {
  position: relative;
  z-index: 1;
}

.newsletter-copy,
.newsletter-form {
  grid-column: 2;
}

.newsletter-copy {
  align-self: end;
}

.newsletter-feature h2 {
  max-width: 620px;
  margin-top: 12px;
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
}

.newsletter-feature p {
  max-width: 650px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 10px;
  margin-top: 18px;
}

.newsletter-form .btn {
  min-width: 148px;
}

.rd-form-wrapper,
.rd-consent-text,
.rd-privacy-link {
  grid-column: 1 / -1;
}

.rd-form-wrapper {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.42);
  overflow: hidden;
}

.rd-form-wrapper *,
.rd-form-wrapper *::before,
.rd-form-wrapper *::after {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.rd-form-wrapper [id^="formulario-site-eventos"],
.rd-form-wrapper [id^="formulario-site-eventos"] > div,
.rd-form-wrapper .bricks--section,
.rd-form-wrapper .bricks--row,
.rd-form-wrapper .bricks--column,
.rd-form-wrapper .bricks--component,
.rd-form-wrapper .bricks--component-form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.rd-form-wrapper .bricks--row,
.rd-form-wrapper .bricks--column {
  display: block !important;
}

.rd-form-wrapper img,
.rd-form-wrapper picture,
.rd-form-wrapper .bricks--component-image,
.rd-form-wrapper .bricks--component-heading,
.rd-form-wrapper .bricks--component-subheading,
.rd-form-wrapper .bricks--component-text,
.rd-form-wrapper .bricks--component-paragraph {
  display: none !important;
}

.rd-form-wrapper form,
.rd-form-wrapper .bricks-form,
.rd-form-wrapper .bricks-form__fieldset {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.rd-form-wrapper .bricks-form__fieldset {
  display: grid !important;
  gap: 10px !important;
}

.rd-form-wrapper .bricks-form__field,
.rd-form-wrapper .bricks-form__submit {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.rd-form-wrapper label,
.rd-form-wrapper .bricks-form__label,
.rd-form-wrapper .bricks-form__field__option .bricks-form__label {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.rd-form-wrapper input,
.rd-form-wrapper select,
.rd-form-wrapper textarea,
.rd-form-wrapper .bricks-form__input {
  width: 100% !important;
  min-height: 50px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  color: var(--white) !important;
  background: rgba(5, 5, 5, 0.66) !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  outline: none !important;
  box-shadow: none !important;
}

.rd-form-wrapper input:not([type="checkbox"]):not([type="radio"]),
.rd-form-wrapper select,
.rd-form-wrapper textarea,
.rd-form-wrapper .bricks-form__input,
.rd-form-wrapper .bricks-form__input.filled,
.rd-form-wrapper .bricks-form__input.valid,
.rd-form-wrapper .bricks-form__input:valid {
  color: var(--white) !important;
  background: rgba(5, 5, 5, 0.74) !important;
  -webkit-text-fill-color: var(--white) !important;
}

.rd-form-wrapper input:-webkit-autofill,
.rd-form-wrapper input:-webkit-autofill:hover,
.rd-form-wrapper input:-webkit-autofill:focus,
.rd-form-wrapper textarea:-webkit-autofill,
.rd-form-wrapper select:-webkit-autofill {
  border-color: rgba(200, 230, 0, 0.4) !important;
  box-shadow: 0 0 0 1000px rgba(5, 5, 5, 0.9) inset !important;
  -webkit-text-fill-color: var(--white) !important;
  caret-color: var(--white) !important;
}

.rd-form-wrapper .iti,
.rd-form-wrapper .intl-tel-input,
.rd-form-wrapper .phone-input,
.rd-form-wrapper .bricks-form__phone {
  display: block !important;
  width: 100% !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: rgba(5, 5, 5, 0.74) !important;
}

.rd-form-wrapper .iti input,
.rd-form-wrapper .intl-tel-input input,
.rd-form-wrapper input[type="tel"] {
  padding-left: 16px !important;
}

.rd-form-wrapper .iti__flag-container,
.rd-form-wrapper .iti__selected-flag,
.rd-form-wrapper .selected-flag,
.rd-form-wrapper .country-list-trigger,
.rd-form-wrapper select[id*="country"],
.rd-form-wrapper select[name*="country"] {
  display: none !important;
}

.rd-form-wrapper .iti__arrow,
.rd-form-wrapper .selected-flag .arrow {
  border-top-color: var(--lime) !important;
}

.rd-form-wrapper textarea {
  min-height: 110px !important;
  padding-top: 14px !important;
  border-radius: var(--radius) !important;
}

.rd-form-wrapper input::placeholder,
.rd-form-wrapper textarea::placeholder {
  color: rgba(216, 216, 216, 0.58) !important;
}

.rd-form-wrapper input:focus,
.rd-form-wrapper select:focus,
.rd-form-wrapper textarea:focus {
  border-color: rgba(200, 230, 0, 0.72) !important;
}

.rd-form-wrapper input[type="checkbox"],
.rd-form-wrapper input[type="radio"] {
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  accent-color: var(--lime);
}

.rd-form-wrapper .bricks-form__field__option,
.rd-form-wrapper .bricks-form__field__option label {
  display: flex !important;
  gap: 10px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.25 !important;
}

.rd-form-wrapper .bricks-form__field__option label {
  margin: 0 !important;
}

.rd-form-wrapper .bricks-form__field__option span,
.rd-form-wrapper .bricks-form__field__option p,
.rd-form-wrapper .bricks-form__field__option .bricks-form__label {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  white-space: normal !important;
}

.rd-form-wrapper button,
.rd-form-wrapper input[type="submit"],
.rd-form-wrapper .bricks-form__submit button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 50px !important;
  padding: 14px 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--black) !important;
  background: var(--lime) !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
  text-transform: none !important;
  cursor: pointer !important;
  box-shadow: 0 12px 34px rgba(200, 230, 0, 0.16) !important;
}

.rd-form-wrapper a,
.rd-consent-text a,
.rd-privacy-link {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rd-privacy-link {
  justify-self: start;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 800;
}

.rd-consent-text {
  margin-top: 2px;
  color: rgba(216, 216, 216, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.rd-form-wrapper .bricks-form__field > label,
.rd-form-wrapper .bricks-form__field > .bricks-form__label {
  display: block !important;
  width: 100% !important;
  margin: 0 0 8px !important;
}

.rd-form-wrapper .bricks-form__field__option {
  margin-top: 8px !important;
}

.rd-form-wrapper .bricks-form__field__option input[type="checkbox"],
.rd-form-wrapper .bricks-form__field__option input[type="radio"] {
  margin-top: 2px !important;
}

.rd-form-wrapper .bricks-form__field__option label,
.rd-form-wrapper .bricks-form__field__option .bricks-form__label {
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  text-align: left !important;
}

.newsletter-form select,
.checkbox-field,
.newsletter-form .btn,
.newsletter-form .form-message {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(216, 216, 216, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.checkbox-field input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--lime);
}

.checkbox-field a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-image {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: calc((100% - 30px) * 0.45);
  min-height: 0;
  overflow: hidden;
  margin: 0;
}

.newsletter-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.5) 36%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.18));
  content: "";
}

.newsletter-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-wave {
  top: 10px;
  right: -220px;
  z-index: 0;
  width: 680px;
  height: 220px;
  opacity: 0.34;
}

.newsletter-wave span {
  width: 720px;
  height: 230px;
}

.site-footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 74px max(24px, calc((100vw - var(--max-width)) / 2)) 34px;
  background: #202122;
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.7fr) minmax(160px, 0.7fr) minmax(240px, 0.9fr);
  gap: 54px;
  align-items: start;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.footer-brand p {
  max-width: 270px;
  margin-top: 22px;
  color: rgba(216, 216, 216, 0.76);
}

.footer-logo {
  width: 230px;
  max-width: 100%;
}

.footer-logo-fallback {
  display: inline-block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.footer-logo-fallback strong {
  color: var(--lime);
}

.footer-brand:not(.has-logo) .footer-logo {
  display: none;
}

.footer-brand.has-logo .footer-logo-fallback {
  display: none;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  margin-top: 12px;
  color: rgba(200, 230, 0, 0.78);
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--black);
  background: var(--lime);
  font-weight: 900;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max-width), 100%);
  margin: 54px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a,
.cookie-preferences-link {
  color: rgba(216, 216, 216, 0.66);
  font-size: 0.9rem;
}

.cookie-preferences-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.cookie-preferences-link:hover {
  color: var(--lime);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: min(690px, calc(100% - 48px));
}

.cookie-consent[hidden],
.cookie-preferences[hidden],
.cookie-actions[hidden] {
  display: none;
}

.cookie-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 51, 28, 0.94), rgba(5, 5, 5, 0.96)),
    var(--dark);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.cookie-card::after {
  position: absolute;
  right: -170px;
  bottom: -130px;
  width: 460px;
  height: 220px;
  border-top: 1px solid rgba(200, 230, 0, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

.cookie-card > * {
  position: relative;
  z-index: 1;
}

.cookie-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.cookie-copy p {
  max-width: 600px;
  margin-top: 12px;
  color: rgba(216, 216, 216, 0.82);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-preferences {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.cookie-option h3 {
  font-size: 1rem;
}

.cookie-option p {
  margin-top: 6px;
  color: rgba(216, 216, 216, 0.72);
  font-size: 0.86rem;
}

.cookie-option span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-option input {
  width: 22px;
  min-height: 22px;
  accent-color: var(--lime);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .header-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 72px;
  }

  .section-grid,
  .component-grid,
  .editorial-grid,
  .deliveries-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-feature {
    grid-template-columns: 1fr;
  }

  .newsletter-copy,
  .newsletter-form,
  .newsletter-image {
    grid-column: 1;
  }

  .newsletter-image {
    position: relative;
    inset: auto;
    width: auto;
    grid-row: auto;
    min-height: 330px;
    margin: 20px -58px -58px;
  }

  .newsletter-image::before {
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.08));
  }

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

  .realized-card img {
    height: 330px;
  }

  .carousel-heading {
    align-items: start;
    flex-direction: column;
  }

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

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

  .color-grid,
  .pillars-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars-grid-expanded .pillar-card,
  .pillars-grid-expanded .pillar-card-wide {
    grid-column: span 1;
    min-height: 280px;
  }

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

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

  .hero-caption {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    top: 14px;
    grid-template-columns: 1fr;
  }

  .header-nav {
    grid-column: auto;
    gap: 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 94vh;
    padding: 138px 14px 52px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .hero-content p,
  .section-heading p {
    font-size: 1rem;
  }

  .pillars-section h2 {
    white-space: normal;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .team-panel,
  .newsletter-feature {
    padding: 34px 24px;
  }

  .deliveries-image {
    min-height: 420px;
  }

  .delivery-item {
    grid-template-columns: 1fr;
  }

  .hero-wave {
    right: -500px;
    bottom: 10px;
    opacity: 0.4;
  }

  .color-grid,
  .pillars-grid,
  .events-grid,
  .team-grid,
  .realized-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid-expanded .pillar-card,
  .pillars-grid-expanded .pillar-card-wide {
    min-height: auto;
  }

  .newsletter-image {
    min-height: 260px;
    margin: 18px -24px -34px;
  }

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

  .realized-card img {
    height: 240px;
  }

  .upcoming-carousel {
    grid-auto-columns: minmax(282px, 86vw);
  }

  .upcoming-card {
    min-height: 530px;
  }

  .upcoming-photo {
    height: 220px;
  }

  .card-media {
    height: 280px;
  }

  .form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-card {
    padding: 22px;
  }

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

  .cookie-actions .btn {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

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