/* ============================================================
   CHERISHED & CO. — styles.css
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #fdf6f0;
  --blush:      #f9e8e0;
  --petal:      #f2c4b4;
  --rose-mist:  #f0d8cc;
  --sand-rose:  #dbb89e;
  --terracotta: #c4917a;
  --clay:       #b07a68;
  --deep-rose:  #5c3327;
  --white:      #ffffff;
  --muted:      #a08070;
  --font-display: 'Playfair Display', serif;
  --font-sub:     'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 300; color: var(--deep-rose); background: var(--cream); overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
img { display: block; max-width: 100%; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover  { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(92,51,39,0.18); }
.btn:active { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(92,51,39,0.14); }

.btn-primary { background: var(--deep-rose); color: var(--cream); border-color: var(--deep-rose); }
.btn-primary:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: var(--white); color: var(--deep-rose); border-color: var(--white); }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--rose-mist);
  z-index: 1000;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(253,246,240,0.98); box-shadow: 0 4px 24px rgba(92,51,39,0.07); }
.navbar-inner { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--deep-rose); white-space: nowrap; }
.logo-text em { font-style: italic; color: var(--terracotta); }
.navbar-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.lang-btn { background: none; border: none; font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 1.5px; color: var(--muted); cursor: pointer; padding: 5px 9px; border-radius: 5px; transition: background 0.2s, color 0.2s; }
.lang-btn:hover, .lang-btn.active { color: var(--deep-rose); background: var(--blush); }
.lang-btn.active { font-weight: 500; }
.lang-sep { color: var(--rose-mist); font-size: 11px; }
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; border-radius: 8px; flex-shrink: 0; transition: background 0.2s; }
.hamburger:hover { background: var(--blush); }
.hamburger span { display: block; height: 1.5px; background: var(--deep-rose); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================ SLIDE MENU */
.menu-overlay { position: fixed; inset: 0; background: rgba(92,51,39,0.28); backdrop-filter: blur(4px); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.menu-overlay.visible { opacity: 1; pointer-events: all; }
.slide-menu { position: fixed; top: 0; right: 0; width: min(370px, 100vw); height: 100vh; height: 100dvh; background: var(--deep-rose); z-index: 1200; transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; }
.slide-menu.open { transform: translateY(0); }
.slide-menu-inner { padding: 36px 44px 56px; display: flex; flex-direction: column; min-height: 100%; }
.close-btn { align-self: flex-end; background: none; border: none; color: var(--petal); font-size: 18px; cursor: pointer; padding: 8px; line-height: 1; border-radius: 6px; transition: color 0.2s, background 0.2s; margin-bottom: 28px; }
.close-btn:hover { color: var(--cream); background: rgba(255,255,255,0.08); }
.slide-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 48px; font-family: var(--font-display); font-size: 20px; color: var(--cream); font-weight: 400; }
.slide-logo em { font-style: italic; color: var(--petal); }
.slide-nav { display: flex; flex-direction: column; flex: 1; }
.slide-nav a { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--rose-mist); text-decoration: none; padding: 15px 0; border-bottom: 0.5px solid rgba(240,216,204,0.14); transition: color 0.25s, padding-left 0.25s; }
.slide-nav a:hover { color: var(--cream); padding-left: 8px; }
.slide-book-btn { display: inline-block; margin-top: 44px; padding: 15px 34px; background: var(--petal); color: var(--deep-rose); border-radius: 40px; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; align-self: flex-start; transition: background 0.25s, transform 0.2s; }
.slide-book-btn:hover { background: var(--cream); transform: translateY(-2px); }
.slide-tagline { margin-top: 36px; font-family: var(--font-sub); font-style: italic; font-size: 14px; color: rgba(240,216,204,0.45); line-height: 1.6; }

/* ============================================================ SECTION HELPERS */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: var(--terracotta); text-align: center; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 44px); font-weight: 400; color: var(--deep-rose); text-align: center; margin-bottom: 14px; line-height: 1.2; }
.section-sub { font-size: 14px; font-weight: 300; color: var(--clay); text-align: center; line-height: 1.85; max-width: 500px; margin: 0 auto 60px; }

/* ============================================================ HERO */
.hero { height: 100vh; min-height: 580px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }

/* Slider — wrapper divs, images fill completely */
.slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  overflow: hidden;
}
.slide.active { opacity: 1; }
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(92,51,39,0.20) 0%, rgba(92,51,39,0.50) 55%, rgba(92,51,39,0.65) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 820px; animation: heroReveal 1.1s var(--ease) both; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 10px; font-weight: 300; letter-spacing: 5px; text-transform: uppercase; color: var(--petal); margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-weight: 400; color: var(--cream); line-height: 1.15; margin-bottom: 22px; }
.hero-welcome { display: block; font-size: clamp(24px, 4vw, 48px); }
.hero-brand { display: block; font-size: clamp(38px, 6.5vw, 74px); font-style: italic; color: var(--petal); line-height: 1.1; }
.hero-sub { font-size: 14px; font-weight: 300; color: rgba(253,246,240,0.85); line-height: 1.85; max-width: 460px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(253,246,240,0.45); }
.scroll-line { width: 1px; height: 36px; background: rgba(253,246,240,0.35); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.35;transform:scaleY(1)}50%{opacity:.75;transform:scaleY(0.6)} }

/* ============================================================ HOW IT WORKS */
.how-it-works { padding: 110px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.step-num-wrap { display: flex; align-items: center; justify-content: center; width: 100%; position: relative; margin-bottom: 22px; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--blush); border: 1px solid var(--rose-mist); display: flex; align-items: center; justify-content: center; font-family: var(--font-sub); font-size: 18px; font-weight: 300; color: var(--terracotta); flex-shrink: 0; position: relative; z-index: 1; transition: background 0.3s, color 0.3s, transform 0.3s; }
.step-card:hover .step-num { background: var(--terracotta); color: var(--white); transform: scale(1.08); }
.step-line { position: absolute; left: calc(50% + 27px); right: calc(-50% + 27px); top: 27px; height: 1px; background: var(--rose-mist); }
.step-card:last-child .step-line { display: none; }
.step-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--deep-rose); margin-bottom: 9px; }
.step-body p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ============================================================ SERVICES */
.services-feature { background: var(--cream); }
.services-split { display: flex; align-items: stretch; min-height: 680px; }

.svc-img-col { flex: 1; position: relative; overflow: hidden; }
.svc-img-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
  background: var(--blush);
  overflow: hidden;
}
.svc-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}
.svc-img-wrap:hover img { transform: scale(1.04); }

.svc-img-badge { position: absolute; bottom: 28px; left: 28px; background: rgba(253,246,240,0.94); backdrop-filter: blur(8px); border-radius: 40px; padding: 9px 20px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); border: 0.5px solid var(--rose-mist); z-index: 2; }

.svc-text-col { flex: 0 0 50%; display: flex; align-items: center; }
.svc-card { background: var(--white); padding: 68px 56px; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; margin-left: -72px; box-shadow: -16px 0 52px rgba(92,51,39,0.07); z-index: 2; position: relative; }

.svc-label { font-family: var(--font-sub); font-style: italic; font-size: 17px; color: var(--terracotta); display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.svc-label::after { content: ''; flex: 1; max-width: 72px; height: 0.5px; background: var(--rose-mist); }
.svc-heading { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 400; color: var(--deep-rose); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.15; margin-bottom: 12px; }
.svc-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }

/* Services list — clickable rows */
.svc-list { list-style: none; column-count: 2; column-gap: 20px; margin-bottom: 36px; }
.svc-list li {
  font-size: 13px; font-weight: 300; color: var(--deep-rose);
  padding: 8px 0; border-bottom: 0.5px solid var(--rose-mist);
  break-inside: avoid;
  display: flex; align-items: center; gap: 9px;
  cursor: pointer;
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
  border-radius: 4px;
}
.svc-list li:hover { color: var(--terracotta); padding-left: 6px; }
.svc-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; }

/* After last item in each column no bottom border */
.svc-list li:last-child { border-bottom: none; }

/* CTA group: button + phone link */
.svc-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.svc-phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300; color: var(--clay);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-phone-link:hover { color: var(--terracotta); }
.svc-phone-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================================ SERVICE MODALS */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(92,51,39,0.4);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-overlay.visible { opacity: 1; pointer-events: all; }

.service-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(820px, 95vw);
  max-height: 90vh;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  z-index: 2100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: flex;
  flex-direction: row;
}
.service-modal.visible {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(253,246,240,0.9);
  border: none; border-radius: 50%;
  font-size: 13px; color: var(--deep-rose);
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: var(--blush); transform: scale(1.1); }

/* Modal image */
.modal-img-wrap {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  background: var(--blush);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.modal-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal-img-wrap.no-img img { display: none; }
.modal-img-fallback { position: relative; z-index: 1; }

/* Modal body */
.modal-body {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.modal-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; display: block; }
.modal-title { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; color: var(--deep-rose); line-height: 1.2; margin-bottom: 16px; }
.modal-desc { font-size: 14px; font-weight: 300; color: var(--clay); line-height: 1.85; margin-bottom: 28px; }
.modal-book { align-self: flex-start; }

/* ============================================================ CONTACT */
.contact-section { padding: 110px 0; background: var(--blush); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; align-items: start; }
.contact-info { padding-top: 4px; }
.c-block { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 0.5px solid var(--rose-mist); }
.c-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; font-weight: 400; }
.c-value { font-size: 14px; font-weight: 300; color: var(--deep-rose); }

/* Instagram link in contact */
.c-instagram-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 300; color: var(--deep-rose);
  text-decoration: none;
  transition: color 0.2s;
}
.c-instagram-link:hover { color: var(--terracotta); }
.ig-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Phone link */
.c-phone { text-decoration: none; transition: color 0.2s; }
.c-phone:hover { color: var(--terracotta); }

.c-quote { font-family: var(--font-sub); font-style: italic; font-size: 20px; color: var(--clay); line-height: 1.5; margin-top: 32px; padding-left: 18px; border-left: 2px solid var(--terracotta); }

.form-wrap { background: var(--white); border-radius: 18px; padding: 44px; border: 0.5px solid var(--rose-mist); box-shadow: 0 18px 52px rgba(92,51,39,0.06); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terracotta); font-weight: 400; }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: var(--deep-rose); background: var(--cream); border: 0.5px solid var(--rose-mist); border-radius: 9px; padding: 13px 16px; outline: none; width: 100%; appearance: none; -webkit-appearance: none; transition: border-color 0.25s, box-shadow 0.25s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--sand-rose); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(196,145,122,0.12); }
.form-group textarea { resize: vertical; min-height: 96px; }
.submit-btn { width: 100%; font-size: 11px; letter-spacing: 2px; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; font-style: italic; margin-top: -6px; }

/* ============================================================ FOOTER */
.footer { background: var(--deep-rose); padding: 56px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--petal); margin-bottom: 5px; }
.footer-logo em { font-style: italic; color: var(--sand-rose); }
.footer-tagline { font-family: var(--font-sub); font-style: italic; font-size: 13px; font-weight: 300; color: rgba(240,216,204,0.55); margin-bottom: 12px; }

.footer-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 300; color: var(--sand-rose);
  text-decoration: none; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-instagram:hover { color: var(--petal); }
.footer-instagram svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sand-rose); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(219,184,158,0.45); }

/* ============================================================ SCROLL ANIMATION */
.fade-in { opacity: 0; transform: translateY(36px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.fade-in.show { opacity: 1; transform: translateY(0); }

/* ============================================================ TABLET ≤ 1024px */
@media (max-width: 1024px) {
  .svc-card { margin-left: 0; padding: 44px 36px; }
  .services-split { flex-direction: column; }
  .svc-img-col { flex: none; }
  .svc-img-wrap { min-height: 400px; }
  .svc-text-col { flex: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-modal { flex-direction: column; max-height: 85vh; overflow-y: auto; }
  .modal-img-wrap { flex: none; min-height: 240px; max-height: 280px; }
}

/* ============================================================ MOBILE ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .navbar-inner { padding: 0 18px; }
  .logo-text { font-size: 16px; }
  .section-inner { padding: 0 18px; }
  .section-sub { margin-bottom: 36px; }

  /* Hero — keep btns stacked on mobile */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Journey steps — vertical */
  .how-it-works { padding: 72px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; max-width: 380px; margin: 0 auto; }
  .step-card { flex-direction: row; align-items: flex-start; text-align: left; padding: 0 0 32px 0; gap: 18px; }
  .step-num-wrap { flex-direction: column; align-items: center; justify-content: flex-start; width: auto; flex-shrink: 0; position: relative; margin-bottom: 0; }
  .step-num { margin: 0; width: 46px; height: 46px; font-size: 16px; }
  .step-line { position: static; width: 1px; height: 100%; min-height: 32px; background: var(--rose-mist); margin-top: 8px; left: unset; right: unset; top: unset; }
  .step-card:last-child .step-line { display: none; }
  .step-body { padding-top: 8px; }
  .step-body h3 { font-size: 16px; }

  /* Services */
  .svc-card { padding: 40px 20px; }
  .svc-list { column-count: 1; }
  .svc-img-wrap { min-height: 300px; }

  /* Modal */
  .service-modal { width: 95vw; flex-direction: column; max-height: 88vh; overflow-y: auto; top: 50%; }
  .modal-img-wrap { min-height: 200px; max-height: 220px; flex: none; }
  .modal-body { padding: 24px 20px; }

  /* Contact */
  .contact-section { padding: 72px 0; }
  .form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* Slide menu */
  .slide-menu { width: 100vw; }
  .slide-menu-inner { padding: 28px 24px 48px; }
  .slide-nav a { font-size: 22px; padding: 13px 0; }

  /* Footer */
  .footer { padding: 44px 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 14px; }
}

/* ============================================================ SMALL MOBILE ≤ 400px */
@media (max-width: 400px) {
  .hero-welcome { font-size: 22px; }
  .hero-brand { font-size: 34px; }
  .svc-heading { font-size: 22px; }
  .steps-grid { max-width: 100%; padding: 0 18px; }
}