/*
Theme Name: Woodking Dynasty
Theme URI: https://woodkingdynastyinteriors.com
Author: GoDigital
Description: Premium luxury interior design theme for Woodking Dynasty Interiors
Version: 1.0.0
Text Domain: woodking
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --gold:    #B8922A;
  --gold-lt: #F5E6C0;
  --dark:    #1A1A1A;
  --ivory:   #F9F5EC;
  --midgray: #5A5A5A;
  --lgray:   #D8D3C8;
  --white:   #FFFFFF;
  --font-h:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-b:  'Jost', Calibri, 'Segoe UI', Arial, sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max:     1200px;
  --nav-h:   80px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.3rem; }
p { font-size: 1rem; color: var(--midgray); line-height: 1.8; margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark p { color: var(--lgray); }
.section--ivory { background: var(--ivory); }
.section--gold-line { border-top: 2px solid var(--gold); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   GOLD RULE DIVIDER
═══════════════════════════════════════════════════════════ */
.gold-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 24px 0 32px;
}
.gold-rule--center { margin: 24px auto 32px; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn--outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn--outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 146, 42, 0.2);
  transition: all 0.3s var(--ease);
}
#site-header.scrolled {
  height: 64px;
  background: rgba(26, 26, 26, 0.99);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 40px;
}
.site-logo {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.site-logo span { display: block; font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--font-b); font-weight: 500; margin-top: 2px; }
.nav-menu { display: flex; gap: 36px; align-items: center; }
.nav-menu a {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-size: 0.68rem !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover { background: transparent !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--dark); padding: 32px 40px 40px;
  border-top: 1px solid rgba(184,146,42,0.2);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-family: var(--font-b); font-size: 1rem; color: var(--white); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); letter-spacing: 0.08em; }
.mobile-menu a:last-child { border: none; color: var(--gold); margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  /* Replace with your hero image ↓ */
  /* background-image: url('images/hero.jpg'); */
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.7) 60%, rgba(184,146,42,0.08) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 44px; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-family: var(--font-b);
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--dark);
  /* Replace with your page banner ↓ */
  /* background-image: url('images/about-hero.jpg'); */
  background-size: cover; background-position: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.95) 50%, rgba(26,26,26,0.6) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 600px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 520px; margin-top: 20px; font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════════
   HOME: BRAND INTRO SECTION
═══════════════════════════════════════════════════════════ */
.brand-intro {}
.brand-intro__quote {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.3;
  position: relative;
  padding-left: 28px;
}
.brand-intro__quote::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 3px; height: 80%;
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES CARDS
═══════════════════════════════════════════════════════════ */
.service-card {
  padding: 48px 40px;
  border: 1px solid rgba(184,146,42,0.15);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { border-color: rgba(184,146,42,0.4); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .number {
  font-family: var(--font-h);
  font-size: 3.5rem;
  color: rgba(184,146,42,0.12);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--dark); }
.service-card p { font-size: 0.95rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: var(--font-b); font-weight: 500; color: var(--gold);
  margin-top: 24px;
  transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 14px; }
.service-card .card-link::after { content: '→'; }

/* Services full page */
.service-block { padding: 80px 0; border-bottom: 1px solid var(--lgray); }
.service-block:last-child { border: none; }
.service-block__num {
  font-family: var(--font-h);
  font-size: 6rem; font-weight: 700;
  color: rgba(184,146,42,0.08);
  line-height: 1; margin-bottom: -20px;
}
.service-block h2 { margin-bottom: 8px; }
.service-block__lead { font-size: 1.2rem; color: var(--dark); font-weight: 400; margin-bottom: 24px; }
.service-block .features {
  margin: 28px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.service-block .features li {
  font-size: 0.9rem; color: var(--midgray);
  padding-left: 20px; position: relative;
}
.service-block .features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO GRID
═══════════════════════════════════════════════════════════ */
.portfolio-filters { display: flex; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.portfolio-filters button {
  font-family: var(--font-b); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: none; border: none; color: var(--midgray);
  cursor: pointer; padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.portfolio-filters button.active,
.portfolio-filters button:hover { color: var(--gold); border-color: var(--gold); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  aspect-ratio: 4/3;
  overflow: hidden; position: relative;
  /* Replace with project images ↓ */
  background: var(--dark);
  cursor: pointer;
}
.portfolio-item:nth-child(4n+1) { grid-column: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay h4 { color: var(--white); margin-bottom: 4px; }
.portfolio-item__overlay span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-b); }
/* Placeholder cards */
.portfolio-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-b); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(184,146,42,0.1);
}
.portfolio-placeholder::before {
  content: '+';
  font-size: 2rem; font-weight: 300; color: rgba(184,146,42,0.3);
}

/* ═══════════════════════════════════════════════════════════
   VALUES GRID (About)
═══════════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.value-item {
  padding: 56px 48px;
  border: 1px solid rgba(184,146,42,0.12);
  margin: -1px 0 0 -1px;
  transition: background 0.3s;
}
.value-item:hover { background: rgba(184,146,42,0.03); }
.value-item .val-num {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 600;
  color: var(--gold); margin-bottom: 16px;
}
.value-item h3 { font-size: 1.6rem; margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials { }
.testimonial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--lgray);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 5rem; color: var(--gold-lt);
  position: absolute; top: 12px; left: 28px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-h); font-size: 1.05rem; font-style: italic;
  color: var(--dark); line-height: 1.6; margin-bottom: 24px; padding-top: 32px;
}
.testimonial-card cite {
  font-family: var(--font-b); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner { background: var(--dark); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: var(--gold);
}
.cta-banner h2 { color: var(--white); max-width: 600px; margin: 0 auto 20px; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 44px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info h3 { margin-bottom: 12px; font-size: 1.8rem; }
.contact-detail { padding: 28px 0; border-bottom: 1px solid var(--lgray); }
.contact-detail:last-child { border: none; }
.contact-detail .detail-label {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-b); font-weight: 500;
  margin-bottom: 6px;
}
.contact-detail .detail-val { font-size: 1.05rem; color: var(--dark); font-weight: 400; }
/* Contact form styles */
.wk-form .form-row { margin-bottom: 24px; }
.wk-form label {
  display: block; font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--midgray); font-family: var(--font-b);
  font-weight: 500; margin-bottom: 10px;
}
.wk-form input,
.wk-form select,
.wk-form textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--lgray);
  background: var(--white); color: var(--dark);
  font-family: var(--font-b); font-size: 0.95rem;
  transition: border-color 0.2s;
  appearance: none;
  outline: none;
}
.wk-form input:focus,
.wk-form select:focus,
.wk-form textarea:focus { border-color: var(--gold); }
.wk-form textarea { height: 160px; resize: vertical; }
.wk-form .form-note { font-size: 0.8rem; color: var(--midgray); margin-top: 16px; font-style: italic; }
.wk-form .form-success {
  display: none; padding: 24px; background: rgba(184,146,42,0.08);
  border: 1px solid rgba(184,146,42,0.3); margin-top: 20px;
  font-size: 0.95rem; color: var(--dark);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — WHY SECTION
═══════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 64px; }
.why-item { padding-left: 24px; border-left: 2px solid var(--gold); }
.why-item h4 { margin-bottom: 12px; font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════════
   MISSION / VISION BLOCKS
═══════════════════════════════════════════════════════════ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mv-block { padding: 60px 56px; }
.mv-block:first-child { background: var(--dark); }
.mv-block:last-child { background: rgba(184,146,42,0.06); border: 1px solid rgba(184,146,42,0.15); }
.mv-block .mv-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-b); font-weight: 500; margin-bottom: 20px;
}
.mv-block p { font-size: 1.15rem; line-height: 1.65; }
.mv-block:first-child p { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#site-footer {
  background: #111111;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .site-logo { font-size: 1.2rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-b); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FADE-IN ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   WORDPRESS CONTENT AREA
═══════════════════════════════════════════════════════════ */
.entry-content { max-width: 720px; margin: 0 auto; padding: 80px 40px; }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-bottom: 20px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul { padding-left: 24px; margin-bottom: 20px; list-style: disc; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:nth-child(4n+1) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 24px; }
  .section { padding: 70px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-block .features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-content { text-align: left; }
  .brand-intro__quote { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .btn { padding: 14px 28px; font-size: 0.7rem; }
  .value-item { padding: 40px 28px; }
  .mv-block { padding: 48px 28px; }
}
