/* ============================================================
   MATSATO KNIFE — css/style.css
   Domain: matsato-en.com
   Theme: Deep Burgundy #7C2D3F + Champagne Gold #C9A96E + Cream
   Navbar:   Cream/ivory bg + burgundy bottom border (unique)
   Hero:     Centred cream hero — NO image/text split (unique vs all)
   Headings: Bold 900 + champagne gold italic tag label above h2
   Buttons:  Burgundy fill → champagne hover
   Cards:    Craft journey timeline — numbered horizontal steps
   Font: Jost (Google Fonts)
   ============================================================ */

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

:root {
  --burgundy:       #7C2D3F;
  --burgundy-dark:  #5A1F2D;
  --burgundy-mid:   #9B3A50;
  --burgundy-light: #F5E8EB;
  --burgundy-pale:  #FDF5F6;
  --gold:           #C9A96E;
  --gold-dark:      #A68B52;
  --gold-mid:       #D9BC88;
  --gold-light:     #F5EDD8;
  --gold-pale:      #FAF5EC;
  --cream:          #FBF8F2;
  --warm-white:     #FFFFFF;
  --stone:          #F2EDE4;
  --charcoal:       #2A1F1A;
  --text:           #2A1F1A;
  --muted:          #6B5B4E;
  --muted-light:    #8C7B6E;
  --border:         #E8D8C8;
  --border-light:   #F0E5D8;
  --radius:         6px;
  --radius-card:    10px;
  --radius-btn:     4px;
  --shadow:         0 4px 24px rgba(42,31,26,0.09);
  --shadow-h:       0 14px 44px rgba(124,45,63,0.20);
  --shadow-card:    0 2px 16px rgba(42,31,26,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif; font-size: 18px;
  color: var(--text); background: var(--cream);
  overflow-x: hidden; line-height: 1.75;
}

/* ── NAVBAR — Cream bg + burgundy bottom border (unique) ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--cream);
  padding: 0 24px; height: 72px;
  box-shadow: 0 2px 20px rgba(42,31,26,0.10);
  border-bottom: 3px solid var(--burgundy);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Jost', sans-serif; font-size: 1.7rem; font-weight: 900;
  color: var(--burgundy); text-decoration: none;
  letter-spacing: 3px; text-transform: uppercase;
  flex-shrink: 0; line-height: 1;
}
.nav-logo span { color: var(--gold-dark); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 0.93rem;
  font-weight: 500; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--burgundy); }
.btn-nav-order {
  background: var(--burgundy) !important; color: var(--cream) !important;
  font-weight: 800 !important; font-size: 0.87rem !important;
  padding: 9px 22px !important; border-radius: var(--radius-btn) !important;
  border: none !important; transition: all 0.22s !important;
  text-decoration: none; line-height: 1;
  box-shadow: 0 2px 12px rgba(124,45,63,0.35) !important;
}
.btn-nav-order:hover {
  background: var(--burgundy-dark) !important;
  box-shadow: 0 4px 18px rgba(124,45,63,0.50) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--burgundy); display: block; border-radius: 2px; }
.mobile-menu {
  display: none; flex-direction: column; background: var(--cream);
  position: absolute; top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-bottom: 3px solid var(--burgundy);
  box-shadow: 0 8px 24px rgba(42,31,26,0.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 500; }
.mobile-menu .btn-mob-order {
  background: var(--burgundy); color: var(--cream); text-align: center;
  padding: 12px; border-radius: var(--radius-btn); font-weight: 800; margin-top: 6px;
}

/* ── BUTTONS — Burgundy fill + champagne hover ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--burgundy); color: var(--cream);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 15px 36px; border-radius: var(--radius-btn); border: none;
  text-decoration: none; transition: all 0.22s;
  box-shadow: 0 4px 18px rgba(124,45,63,0.38); line-height: 1.2;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 6px 24px rgba(124,45,63,0.50);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--burgundy);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 13px 28px; border-radius: var(--radius-btn);
  border: 2px solid var(--burgundy); text-decoration: none; transition: all 0.22s;
}
.btn-outline:hover {
  background: var(--burgundy); color: var(--cream);
  box-shadow: 0 4px 18px rgba(124,45,63,0.38);
  transform: translateY(-2px);
}

/* ── HERO — Centred cream hero (NO left/right split — UNIQUE) ── */
.hero {
  background: var(--cream); padding: 90px 48px 70px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  background-image: radial-gradient(ellipse at 50% 100%, rgba(124,45,63,0.05) 0%, transparent 65%);
}
.hero-inner { max-width: 1160px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: var(--gold-light); color: var(--gold-dark);
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  padding: 6px 20px; border-radius: 2px;
  border: 1px solid rgba(201,169,110,0.40); margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Jost', sans-serif; font-size: 3.4rem; font-weight: 900;
  line-height: 1.04; color: var(--burgundy); letter-spacing: -1px;
  max-width: 860px; margin: 0 auto 14px;
}
.hero h1 .h1-gold { color: var(--gold-dark); }
.hero h1 .h1-charcoal { color: var(--charcoal); }
.hero-sub {
  font-size: 1.15rem; color: var(--muted); line-height: 1.78;
  max-width: 680px; margin: 0 auto 36px;
}
.hero-sub strong { color: var(--text); }

/* Centred spec pills */
.hero-pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 10px; margin-bottom: 36px;
}
.hero-pill {
  background: var(--warm-white); color: var(--charcoal);
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 700;
  padding: 6px 16px; border-radius: 2px;
  border: 1px solid var(--border); letter-spacing: 0.4px;
  text-transform: uppercase;
}
.hero-pill.gold-pill { background: var(--gold-light); border-color: var(--gold); color: var(--gold-dark); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 52px; }

/* Hero image centred */
.hero-img-centred {
  max-width: 700px; margin: 0 auto;
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 20px 60px rgba(124,45,63,0.18);
  border: 1px solid var(--border);
}
.hero-img-centred a img {
  width: 100%; height: auto; max-height: 440px;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.5s ease;
}
.hero-img-centred a:hover img { transform: scale(1.03); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--burgundy); padding: 14px 48px;
  display: flex; flex-wrap: wrap; justify-content: center;
  border-bottom: 3px solid var(--gold);
}
.sstat { display: flex; flex-direction: column; align-items: center; padding: 6px 28px; border-right: 1px solid rgba(255,255,255,0.12); }
.sstat:last-child { border-right: none; }
.sstat-num { font-family: 'Jost', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--gold-mid); line-height: 1; }
.sstat-label { font-size: 0.67rem; font-weight: 700; color: rgba(255,255,255,0.60); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

/* ── SECTION BANDS — Burgundy bg + gold accent label above h2 ── */
.sec-title-band { background: var(--burgundy); padding: 52px 40px 44px; text-align: center; }
.sec-tag {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold-mid);
  margin-bottom: 12px; font-style: italic;
}
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--cream); line-height: 1.22; display: inline-block;
  letter-spacing: -0.3px;
}
.sec-title-band h2 span.hl { color: var(--gold-mid); }
.sec-title-band p.sec-sub { font-size: 1rem; color: rgba(255,255,255,0.62); max-width: 620px; margin: 14px auto 0; line-height: 1.75; }

/* ── REVIEWS ── */
.reviews-section { background: var(--stone); padding: 70px 48px; }
.reviews-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.review-card {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  border-bottom: 4px solid var(--gold);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.reviewer-photo { width: 100%; height: 100%; object-fit: contain; background: var(--gold-pale); transition: transform 0.4s ease; }
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after { content: "🍴"; font-size: 3.5rem; opacity: 0.18; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.review-card-body { padding: 22px 20px 26px; flex: 1; display: flex; flex-direction: column; }
.review-stars { height: 22px; margin: 0 auto 10px; display: block; object-fit: contain; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--burgundy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--charcoal); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border-light); }

/* ── PROSE SECTIONS ── */
.what-is-section { background: var(--warm-white); padding: 70px 48px; }
.what-is-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: 64px; }
.what-is-img-wrap img { width: 100%; max-width: 400px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 34px rgba(124,45,63,0.16)); display: block; border-radius: var(--radius); }
.what-is-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.what-is-text p strong { color: var(--text); }

.why-section { background: var(--cream); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.section-prose p strong { color: var(--text); }

/* ── CRAFT JOURNEY TIMELINE — UNIQUE SECTION ── */
.journey-section { background: var(--warm-white); padding: 70px 48px; }
.journey-steps { max-width: 1000px; margin: 0 auto; position: relative; }
/* Vertical connector line */
.journey-steps::before {
  content: ''; position: absolute; left: 44px; top: 0; bottom: 0;
  width: 2px; background: var(--border); z-index: 0;
}
.journey-step {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 0 32px; align-items: flex-start;
  margin-bottom: 36px; position: relative;
}
.journey-step:last-child { margin-bottom: 0; }
.js-num-wrap { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.js-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--burgundy); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif; font-size: 1.1rem; font-weight: 900;
  box-shadow: 0 4px 14px rgba(124,45,63,0.30);
  flex-shrink: 0; margin-left: 18px;
}
.js-content {
  background: var(--stone); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); padding: 22px 26px;
  box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.25s;
  border-left: 4px solid var(--gold);
}
.js-content:hover { box-shadow: var(--shadow-h); transform: translateX(5px); }
.js-content h3 {
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 900;
  color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px;
}
.js-steps-badge {
  display: inline-block; background: var(--gold-light); color: var(--gold-dark);
  font-size: 0.72rem; font-weight: 800; padding: 2px 10px;
  border-radius: 2px; border: 1px solid var(--gold); margin-bottom: 10px; letter-spacing: 0.5px;
}
.js-content p { font-size: 0.97rem; line-height: 1.76; color: var(--muted); margin: 0; }

/* ── PRICING BAND ── */
.pricing-band { background: var(--burgundy); padding: 44px 40px 14px; text-align: center; border-top: 3px solid var(--gold); }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--cream); margin-bottom: 8px; }
.pricing-band h3 span.hl { color: var(--gold-mid); }
.pricing-band h4 { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.62); }

/* ── PRICE IMAGE ── */
.price-img-section { background: var(--stone); padding: 48px; text-align: center; }
.price-img-section a { display: block; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); border: 1px solid var(--border); }
.price-img-section a:hover img { transform: scale(1.01); }

/* ── FEATURE GRID — 2×3 card grid ── */
.features-section { background: var(--cream); padding: 70px 48px; }
.features-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.feature-card {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.25s;
  border-top: 4px solid var(--burgundy);
}
.feature-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.fc-icon { font-size: 2rem; line-height: 1; }
.feature-card h3 { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 900; color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.feature-card p { font-size: 0.95rem; line-height: 1.74; color: var(--muted); margin: 0; flex: 1; }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--warm-white); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap { display: flex; justify-content: center; }
.guarantee-img-wrap img { width: 100%; max-width: 260px; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 8px 20px rgba(124,45,63,0.14)); }
.guarantee-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.guarantee-text p strong { color: var(--text); }

/* ── FAQs ── */
.faq-section { background: var(--stone); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--warm-white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-family: 'Jost', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--burgundy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; line-height: 1.4; }
.faq-question:hover { background: var(--burgundy-pale); }
.faq-arrow { font-size: 0.9rem; transition: transform 0.3s; color: var(--gold-dark); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border-light); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── ORDER SECTION ── */
.order-how-section { background: var(--cream); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-how-inner p strong { color: var(--text); }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); border: 1px solid var(--border); }
.order-img-wrap a:hover img { transform: scale(1.01); }

/* ── INFO BLOCKS ── */
.pricing-details { background: var(--warm-white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--stone); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--burgundy); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 800; color: var(--burgundy); margin-bottom: 10px; }
.info-block p, .info-block li { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "✔ "; color: var(--burgundy); font-weight: 700; }

/* ── FINAL CTA ── */
.cta-final { background: var(--burgundy-dark); padding: 80px 48px; text-align: center; border-top: 3px solid var(--gold); background-image: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.12) 0%, transparent 60%); }
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--cream); margin-bottom: 36px; line-height: 1.18; letter-spacing: -0.3px; }
.cta-final h2 span.hl { color: var(--gold-mid); }
.cta-product-img { max-width: 420px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; filter: drop-shadow(0 14px 44px rgba(201,169,110,0.25)); transition: transform 0.4s; border-radius: var(--radius); }
.cta-product-img a:hover img { transform: scale(1.04); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.35); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--gold-mid); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: var(--burgundy-dark); padding: 48px 48px 30px; border-top: 3px solid var(--gold); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; }
.footer-cols a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--gold-mid); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.28); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.20); margin-top: 14px; }
.footer-copy a { color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-copy a:hover { color: var(--gold-mid); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.7rem; }
  .what-is-inner { grid-template-columns: 1fr 1.2fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
  .journey-step { grid-template-columns: 1fr; }
  .js-num-wrap { flex-direction: row; margin-bottom: 14px; }
  .js-num { margin-left: 0; margin-right: 12px; }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-strip { flex-direction: column; align-items: center; padding: 14px 20px; }
  .sstat { border-right: none; }
  .hero { padding: 60px 20px 44px; }
  .hero h1 { font-size: 2rem; }
  .hero-img-centred { max-width: 100%; }
  .sec-title-band { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.55rem; }
  .reviews-grid, .features-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .journey-section,
  .features-section, .guarantee-section, .faq-section, .order-how-section { padding: 44px 20px; }
  .price-img-section, .pricing-details { padding: 28px 16px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.6rem; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}