@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0806;
  --dark: #120e09;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6e30;
  --cream: #f5efe4;
  --red: #9b2416;
  --red-bright: #c42d1a;
  --white: #fdfaf5;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 42px;
  padding-bottom: 72px;
  line-height: 1.6;
}

/* ── TOP BAR ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.topbar-sep {
  color: rgba(201, 168, 76, 0.3);
}

@media (max-width: 620px) {
  .topbar-sep,
.topbar span:nth-child(3),
.topbar span:nth-child(5) {
    display: none;
  }
}
/* ── BUY BAR ── */
.buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(18, 14, 9, 0.97);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .buy-bar {
    backdrop-filter: none;
    background: rgba(18, 14, 9, 0.99);
  }
}
.buy-bar-price .amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.buy-bar-price .sub {
  font-size: 10px;
  color: #c0a888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.btn-primary {
  display: inline-block;
  background: var(--red-bright);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  -o-transition: background 0.2s, -o-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s, -o-transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #a8241a;
  -webkit-transform: translateY(-1px);
       -o-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-primary:active {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 100px 24px 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 8, 6, 0)), to(rgba(10, 8, 6, 0))), url(/wp-content/themes/iberico/dist/images/bg_13.jpeg);
  background-image: -webkit-linear-gradient(top, rgba(10, 8, 6, 0), rgba(10, 8, 6, 0)), url(/wp-content/themes/iberico/dist/images/bg_13.jpeg);
  background-image: -o-linear-gradient(top, rgba(10, 8, 6, 0), rgba(10, 8, 6, 0)), url(/wp-content/themes/iberico/dist/images/bg_13.jpeg);
  background-image: linear-gradient(to bottom, rgba(10, 8, 6, 0), rgba(10, 8, 6, 0)), url(/wp-content/themes/iberico/dist/images/bg_13.jpeg);
  background-size: cover;
  background-position: center;
  -webkit-animation: heroZoom 10s ease-out forwards;
       -o-animation: heroZoom 10s ease-out forwards;
          animation: heroZoom 10s ease-out forwards;
}

@-webkit-keyframes heroZoom {
  from {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-o-keyframes heroZoom {
  from {
    -o-transform: scale(1.07);
       transform: scale(1.07);
  }
  to {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes heroZoom {
  from {
    -webkit-transform: scale(1.07);
         -o-transform: scale(1.07);
            transform: scale(1.07);
  }
  to {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  -webkit-animation: fadeUp 0.8s ease both;
       -o-animation: fadeUp 0.8s ease both;
          animation: fadeUp 0.8s ease both;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  max-width: 1100px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeUp 0.9s 0.1s ease both;
       -o-animation: fadeUp 0.9s 0.1s ease both;
          animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #f0e0d0;
  margin-top: 24px;
  max-width: 680px;
  text-transform: uppercase;
  -webkit-animation: fadeUp 0.9s 0.2s ease both;
       -o-animation: fadeUp 0.9s 0.2s ease both;
          animation: fadeUp 0.9s 0.2s ease both;
}

.hero-sub span {
  color: var(--gold);
}

.hero-cta {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 36px;
  -webkit-animation: fadeUp 0.9s 0.35s ease both;
       -o-animation: fadeUp 0.9s 0.35s ease both;
          animation: fadeUp 0.9s 0.35s ease both;
}

.hero-price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}

.hero-price-main {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
}

.hero-price-note {
  font-size: 11px;
  color: #b0a090;
  letter-spacing: 0.08em;
}

.hero-guarantees {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  -webkit-animation: fadeUp 0.9s 0.45s ease both;
       -o-animation: fadeUp 0.9s 0.45s ease both;
          animation: fadeUp 0.9s 0.45s ease both;
}

.hero-guarantees span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c0a888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.hero-guarantees span::before {
  content: "\2713";
  color: var(--gold);
  font-size: 12px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-animation: fadeUp 1s 0.8s ease both;
       -o-animation: fadeUp 1s 0.8s ease both;
          animation: fadeUp 1s 0.8s ease both;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #b0a090;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 36px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--gold)), to(transparent));
  background: -webkit-linear-gradient(top, var(--gold), transparent);
  background: -o-linear-gradient(top, var(--gold), transparent);
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  -webkit-animation: arrowPulse 1.8s infinite;
       -o-animation: arrowPulse 1.8s infinite;
          animation: arrowPulse 1.8s infinite;
}

@-webkit-keyframes arrowPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@-o-keyframes arrowPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-o-keyframes fadeUp {
  from {
    opacity: 0;
    -o-transform: translateY(24px);
       transform: translateY(24px);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
         -o-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ── PRODUCT FEATURE ── */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.product-feature-img {
  position: relative;
  overflow: hidden;
  background: #080604;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.product-feature-text {
  background: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 72px 56px;
}

.product-feature-text .section-label {
  text-align: left;
  margin-bottom: 12px;
}

.product-feature-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.product-feature-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.product-feature-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #e0d0c0;
  margin-bottom: 28px;
}

.spec-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.spec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #e0d0c0;
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.spec-row:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.spec-row::before {
  content: "\25C6";
  color: var(--gold);
  font-size: 9px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 1;
}

.spec-row strong {
  color: var(--gold-light);
  margin-right: 6px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 80px;
}

@media (max-width: 880px) {
  .product-feature {
    grid-template-columns: 1fr;
  }

  .product-feature-img {
    min-height: 350px;
    height: 350px;
  }

  .product-feature-text {
    padding: 48px 24px;
  }
}
/* ── WHY ── */
.why {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  -webkit-transition: border-color 0.3s, background 0.3s;
  -o-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold-dim)), to(var(--gold)));
  background: -webkit-linear-gradient(left, var(--gold-dim), var(--gold));
  background: -o-linear-gradient(left, var(--gold-dim), var(--gold));
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  -webkit-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
       -o-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease, -o-transform 0.4s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.why-card:hover::before {
  -webkit-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.why-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
}

.why-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0d0c0;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ── LIFESTYLE FULL ── */
.lifestyle-full {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lifestyle-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.lifestyle-full-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(10, 8, 6, 0.9)), color-stop(55%, rgba(10, 8, 6, 0.45)), to(rgba(10, 8, 6, 0.1)));
  background: -webkit-linear-gradient(left, rgba(10, 8, 6, 0.9) 0%, rgba(10, 8, 6, 0.45) 55%, rgba(10, 8, 6, 0.1) 100%);
  background: -o-linear-gradient(left, rgba(10, 8, 6, 0.9) 0%, rgba(10, 8, 6, 0.45) 55%, rgba(10, 8, 6, 0.1) 100%);
  background: linear-gradient(to right, rgba(10, 8, 6, 0.9) 0%, rgba(10, 8, 6, 0.45) 55%, rgba(10, 8, 6, 0.1) 100%);
}

.lifestyle-full-content {
  position: relative;
  z-index: 2;
  padding: 72px 56px;
  max-width: 560px;
}

.lifestyle-full-content .section-label {
  text-align: left;
  margin-bottom: 14px;
}

.lifestyle-full-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.lifestyle-full-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.lifestyle-full-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f0e0d0;
  margin-bottom: 32px;
  max-width: 480px;
}

@media (max-width: 700px) {
  .lifestyle-full-content {
    padding: 48px 24px;
    max-width: 100%;
  }

  .lifestyle-full-overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 8, 6, 0.5)), to(rgba(10, 8, 6, 0.93)));
    background: -webkit-linear-gradient(top, rgba(10, 8, 6, 0.5), rgba(10, 8, 6, 0.93));
    background: -o-linear-gradient(top, rgba(10, 8, 6, 0.5), rgba(10, 8, 6, 0.93));
    background: linear-gradient(to bottom, rgba(10, 8, 6, 0.5), rgba(10, 8, 6, 0.93));
  }
}
/* ── VALUE SECTION ── */
.value-section {
  background: var(--dark);
  padding: 100px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.value-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

.value-math {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
}

.value-math-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
  text-align: center;
}

.math-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.math-row:last-child {
  border-bottom: none;
}

.math-row .label {
  color: #b0a090;
}

.math-row .val {
  color: var(--white);
  font-weight: 600;
}

.math-highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-top: 20px;
}

.math-highlight .label {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  font-style: italic;
}

.math-highlight .val {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold-light);
  font-weight: 400;
}

.value-context-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.value-context-title em {
  font-style: italic;
  color: var(--gold-light);
}

.value-context p {
  font-size: 14px;
  line-height: 1.85;
  color: #a09080;
}

.compare-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.compare-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(201, 168, 76, 0.3);
}

.compare-item .ci-label {
  color: #b0a090;
}

.compare-item .ci-price {
  color: var(--white);
  font-weight: 600;
}

.compare-item.hl {
  background: rgba(201, 168, 76, 0.08);
  border-left-color: var(--gold);
}

.compare-item.hl .ci-label {
  color: var(--gold-light);
}

.compare-item.hl .ci-price {
  color: var(--gold-light);
}

@media (max-width: 800px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}
/* ── WHAT YOU RECEIVE ── */
.wyr {
  padding: 100px 24px;
  background: var(--black);
}

.wyr-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wyr-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 60px;
}

.wyr-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.wyr-img-wrap img {
  width: 100%;
  max-width: 460px;
  display: block;
  padding: 30px;
}

.wyr-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.wyr-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wyr-item:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.wyr-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px;
}

.wyr-item-img img {
  width: 54px;
  height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.wyr-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 26px;
  width: 54px;
  height: 54px;
}

.wyr-item-body h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.wyr-item-body p {
  font-size: 15px;
  color: #e0d0c0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .wyr-layout {
    grid-template-columns: 1fr;
  }

  .wyr-img-wrap img {
    max-width: 100%;
    padding: 20px;
    height: 350px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }

  .wyr-img-wrap {
    max-height: 380px;
  }
}
/* ── SCARCITY ── */
.scarcity {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px 24px;
  text-align: center;
}

.scarcity-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  text-transform: uppercase;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  -webkit-animation: pulse 1.4s infinite;
       -o-animation: pulse 1.4s infinite;
          animation: pulse 1.4s infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0.5;
  }
}

@-o-keyframes pulse {
  0%, 100% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1;
  }
  50% {
    -o-transform: scale(1.6);
       transform: scale(1.6);
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.6);
         -o-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0.5;
  }
}
.scarcity h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.progress-wrap {
  max-width: 480px;
  margin: 0 auto 10px;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold-dim)), to(var(--gold)));
  background: -webkit-linear-gradient(left, var(--gold-dim), var(--gold));
  background: -o-linear-gradient(left, var(--gold-dim), var(--gold));
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  border-radius: 4px;
  -webkit-transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 11px;
  color: #b0a090;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.progress-labels strong {
  color: var(--gold);
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 12px 20px;
  min-width: 68px;
}

.countdown-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c0a888;
  margin-top: 4px;
  display: block;
}

.scarcity-note {
  font-size: 12px;
  color: #b0a090;
  margin-top: 16px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.scarcity-note strong {
  color: var(--gold);
}

/* ── TAPAS BAND ── */
.tapas-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.tapas-img {
  overflow: hidden;
  position: relative;
  background: #0a0806;
}

.tapas-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 360px;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: -o-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease, -o-transform 0.6s ease;
}

.tapas-img:hover img {
  -webkit-transform: scale(1.04);
       -o-transform: scale(1.04);
          transform: scale(1.04);
}

.tapas-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 18px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(10, 8, 6, 0.9)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(10, 8, 6, 0.9), transparent);
  background: -o-linear-gradient(bottom, rgba(10, 8, 6, 0.9), transparent);
  background: linear-gradient(to top, rgba(10, 8, 6, 0.9), transparent);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0;
  -webkit-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -o-transform 0.35s;
}

.tapas-img:hover .tapas-img-caption {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 600px) {
  .tapas-band {
    grid-template-columns: 1fr;
  }
}
/* ── CARVING KIT ── */
.kit-section {
  background: var(--dark);
  padding: 100px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.kit-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kit-img {
  text-align: center;
}

.kit-img img {
  width: 100%;
  max-width: 420px;
  display: inline-block;
}

.kit-text .section-label {
  text-align: left;
  margin-bottom: 12px;
}

.kit-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.kit-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.kit-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #a09080;
  margin-bottom: 28px;
}

.kit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.kit-detail {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 18px;
  text-align: center;
}

.kit-detail img {
  height: 52px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

.kit-detail-icon {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
}

.kit-detail h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.kit-detail p {
  font-size: 11px;
  color: #b0a090;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .kit-inner {
    grid-template-columns: 1fr;
  }

  .kit-img img {
    max-width: 100%;
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 4px;
  }
}
/* ── REVIEWS ── */
.reviews {
  background: var(--cream);
  color: var(--black);
  padding: 90px 24px;
}

.reviews .section-label {
  color: #8a6e30;
}

.reviews .section-title {
  color: var(--black);
}

.reviews .section-sub {
  color: #666;
}

.reviews-score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.score-num {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}

.stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 3px;
}

.score-count {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.reviews-grid .review-card:nth-child(n+4) {
  margin-top: 0;
}

.review-card {
  background: #fff;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
/* ── CARVING MADE EASY ── */
.carving {
  padding: 100px 24px;
  background: var(--black);
}

.carving-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carving-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.carving-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.carving-text .section-label {
  text-align: left;
  margin-bottom: 12px;
}

.carving-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.carving-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.carving-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #a09080;
  margin-bottom: 28px;
}

.carving-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.carving-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1px;
}

.step-text {
  font-size: 13px;
  color: #b0a090;
  line-height: 1.6;
}

.step-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .carving-inner {
    grid-template-columns: 1fr;
  }
}
/* ── FINAL CTA ── */
.final-cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 8, 6, 0.84)), to(rgba(10, 8, 6, 0.84))), url(/wp-content/themes/iberico/dist/images/bg_14.jpeg);
  background-image: -webkit-linear-gradient(rgba(10, 8, 6, 0.84), rgba(10, 8, 6, 0.84)), url(/wp-content/themes/iberico/dist/images/bg_14.jpeg);
  background-image: -o-linear-gradient(rgba(10, 8, 6, 0.84), rgba(10, 8, 6, 0.84)), url(/wp-content/themes/iberico/dist/images/bg_14.jpeg);
  background-image: linear-gradient(rgba(10, 8, 6, 0.84), rgba(10, 8, 6, 0.84)), url(/wp-content/themes/iberico/dist/images/bg_14.jpeg);
  background-size: cover;
  background-position: center;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.final-cta p {
  font-size: 14px;
  color: #a09080;
  line-height: 1.85;
  margin-bottom: 36px;
}

.final-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.final-price-main {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
}

.final-price-sub {
  font-size: 13px;
  color: var(--gold-dim);
}

.final-price-note {
  font-size: 11px;
  color: #b0a090;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.final-guarantees {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}

.final-guarantees span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a090;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.final-guarantees span::before {
  content: "\2713";
  color: var(--gold);
}

/* ── LEAD CAPTURE ── */
.lead-cap {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 90px 24px;
}

.lead-cap-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lead-cap h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead-cap h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.lead-cap p {
  font-size: 14px;
  line-height: 1.85;
  color: #a09080;
  margin-bottom: 36px;
}

.lead-perks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 36px;
}

.lead-perk {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0a090;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 8px 14px;
}

.lead-perk::before {
  content: "\2713";
  color: var(--gold);
}

.lead-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.lead-form input[type=text],
.lead-form input[type=email] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  padding: 14px 18px;
  outline: none;
  -webkit-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.lead-form input::-webkit-input-placeholder {
  color: #a09080;
}

.lead-form input::-moz-placeholder {
  color: #a09080;
}

.lead-form input:-ms-input-placeholder {
  color: #a09080;
}

.lead-form input::-ms-input-placeholder {
  color: #a09080;
}

.lead-form input::placeholder {
  color: #a09080;
}

.lead-form input:focus {
  border-color: var(--gold);
}

.lead-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.lead-form-row input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 140px;
}

.lead-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  -o-transition: background 0.2s, -o-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s, -o-transform 0.15s;
  margin-top: 4px;
}

.lead-submit:hover {
  background: var(--gold-light);
  -webkit-transform: translateY(-1px);
       -o-transform: translateY(-1px);
          transform: translateY(-1px);
}

.lead-note {
  font-size: 10px;
  color: #a09080;
  margin-top: 16px;
  letter-spacing: 0.06em;
}

.lead-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.lead-success .success-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.lead-success h4 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.lead-success p {
  font-size: 13px;
  color: #a09080;
}

/* ── SHARED ── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 18px;
  padding: 0 24px;
}

.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #e0d0c0;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  padding: 0 24px;
}

.divider {
  width: 60px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--gold)), to(transparent));
  background: -webkit-linear-gradient(left, transparent, var(--gold), transparent);
  background: -o-linear-gradient(left, transparent, var(--gold), transparent);
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(28px);
       -o-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
  transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
  -o-transition: opacity 0.75s ease, -o-transform 0.75s ease;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition: opacity 0.75s ease, transform 0.75s ease, -webkit-transform 0.75s ease, -o-transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.tc {
  text-align: center;
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 24px;
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0;
  text-align: left;
  gap: 20px;
}

.faq-q span:first-child {
  font-family: var(--serif);
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
  line-height: 1;
  font-weight: 300;
}

.faq-q.open .faq-icon {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-q.open span:first-child {
  color: var(--gold-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
  -o-transition: max-height 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.85;
  color: #b0a090;
}

.faq-a p strong {
  color: var(--white);
}

/* ── FOOTER UPDATED ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px 28px;
  text-align: center;
}

.footer-logo-img {
  margin-bottom: 20px;
}

.footer-logo-img img {
  height: 52px;
  width: auto;
  display: inline-block;
  opacity: 0.85;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 11px;
  color: #b0a090;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.footer-links a:hover {
  color: #c0a888;
}

.footer-sep {
  color: #908070;
  font-size: 11px;
}

.footer-copy {
  font-size: 11px;
  color: #a09080;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 100px;
  }

  .why,
.wyr,
.kit-section,
.carving,
.faq-section,
.lead-cap {
    padding: 64px 20px;
  }

  .value-section {
    padding: 64px 20px;
  }

  .final-cta {
    padding: 72px 20px;
  }

  .reviews {
    padding: 64px 20px;
  }

  .btn-primary {
    padding: 18px 32px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .footer-links a {
    padding: 10px 6px;
    display: inline-block;
    font-size: 13px;
    color: #c0a888;
  }

  .faq-a.open {
    max-height: 500px;
  }

  .scroll-hint span {
    font-size: 11px;
    color: #c0a888;
  }

  .countdown-label {
    font-size: 11px;
    color: #c0a888;
  }

  .hero-badge {
    font-size: 11px;
  }

  .hero-sub {
    font-size: 14px;
    color: #d0c4b0;
  }

  .hero-guarantees span {
    font-size: 13px;
    color: #d0c4b0;
  }

  .hero-price-note {
    color: #d0c4b0;
  }

  .section-label {
    font-size: 11px;
  }

  .section-title {
    font-size: clamp(26px, 5vw, 56px);
  }

  .section-sub {
    font-size: 17px;
    color: #b0a090;
  }

  .value-math-title {
    font-size: 11px;
  }

  .scarcity-label {
    font-size: 11px;
  }

  .lead-note {
    font-size: 12px;
    color: #b0a090;
  }

  .buy-bar-price .sub {
    font-size: 11px;
    color: #d0c4b0;
  }

  .product-feature-text p {
    font-size: 17px;
    color: #c0b0a0;
  }

  .spec-row {
    font-size: 16px;
    color: #c0b0a0;
  }

  .spec-row strong {
    font-size: 12px;
  }

  .why-card h4 {
    font-size: 22px;
  }

  .why-card p {
    font-size: 16px;
    color: #b0a090;
  }

  .lifestyle-full-content p {
    font-size: 17px;
    color: #c0b0a0;
  }

  .math-row {
    font-size: 15px;
  }

  .math-row .label {
    color: #c0b0a0;
  }

  .value-context p {
    color: #b0a090;
  }

  .compare-item .ci-label {
    color: #c0b0a0;
  }

  .wyr-item-body h5 {
    font-size: 15px;
    color: #e8d0a0;
  }

  .wyr-item-body p {
    font-size: 16px;
    color: #c0b0a0;
  }

  .step-text {
    font-size: 15px;
    color: #c0b0a0;
  }

  .step-text strong {
    font-size: 14px;
  }

  .kit-text p {
    font-size: 17px;
    color: #b0a090;
  }

  .kit-detail h5 {
    font-size: 14px;
  }

  .kit-detail p {
    font-size: 14px;
    color: #c0b0a0;
  }

  .carving-text p {
    font-size: 17px;
    color: #b0a090;
  }

  .review-text {
    font-size: 16px;
  }

  .score-count {
    font-size: 13px;
  }

  .review-author {
    font-size: 13px;
  }

  .scarcity-note {
    font-size: 15px;
    color: #c0b0a0;
  }

  .scarcity h3 {
    font-size: clamp(22px, 4vw, 36px);
  }

  .progress-labels {
    font-size: 14px;
    color: #c0b0a0;
  }

  .final-cta h2 {
    font-size: clamp(32px, 6vw, 70px);
  }

  .final-cta p {
    font-size: 17px;
    color: #b0a090;
  }

  .final-price-sub {
    font-size: 15px;
  }

  .final-price-note {
    font-size: 14px;
    color: #c0b0a0;
  }

  .final-guarantees span {
    font-size: 14px;
    color: #c0b0a0;
  }

  .lead-cap h2 {
    font-size: clamp(26px, 4vw, 48px);
  }

  .lead-cap p {
    font-size: 17px;
    color: #b0a090;
  }

  .lead-perk {
    font-size: 14px;
    color: #c0b0a0;
  }

  .lead-submit {
    font-size: 14px;
    padding: 18px 32px;
  }

  .lead-success p {
    font-size: 17px;
  }

  .faq-q span:first-child {
    font-size: 18px;
  }

  .faq-a p {
    font-size: 16px;
    color: #c0b0a0;
  }

  .footer-copy {
    font-size: 13px;
    color: #a09080;
  }

  .footer-sep {
    color: #908070;
  }

  .topbar {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  body {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .topbar {
    padding: 8px 12px;
    font-size: 10px;
    gap: 16px;
  }

  .buy-bar {
    padding: 10px 16px;
    gap: 8px;
  }

  .buy-bar-price .amount {
    font-size: 18px;
  }

  .buy-bar-price .sub {
    font-size: 9px;
  }

  .tapas-img img {
    height: 360px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero-bg {
    background-position: 60% center;
  }
}
@media (max-width: 500px) {
  .kit-details {
    grid-template-columns: 1fr;
  }

  .value-math {
    padding: 24px 20px;
  }

  .math-highlight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 16px;
  }

  .math-highlight .label {
    font-size: 16px;
  }

  .math-highlight .val {
    font-size: 28px;
  }

  .compare-item {
    padding: 10px 12px;
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .buy-bar {
    padding: 8px 12px;
  }

  .buy-bar-price .amount {
    font-size: 16px;
  }

  .buy-bar .btn-primary {
    padding: 12px 16px;
    font-size: 10px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-unit {
    padding: 10px 14px;
    min-width: 60px;
  }

  .countdown-num {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
         -o-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
         -o-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
.side-cart {
  display: none !important;
}
/*# sourceMappingURL=landing-whole-jamon.css.map*/