/*
Theme Name: Nuntile Modern
Theme URI: https://nuntile.ro/
Author: nuntile.ro
Description: Tema rapida, fara Elementor, pentru nuntile.ro.
Version: 1.0.0
Text Domain: nuntile-modern
*/

:root {
  --nt-ink: #151515;
  --nt-muted: #626262;
  --nt-line: #e8e2dc;
  --nt-soft: #fff8f6;
  --nt-gold: #b48936;
  --nt-pink: #8f3f45;
  --nt-bg: #ffffff;
  --nt-blush: #fff1f5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--nt-ink);
  background: var(--nt-bg);
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--nt-line);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 18px 6px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
}
.header-account,
.menu-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180,137,54,.2);
  background: rgba(255,255,255,.72);
  color: var(--nt-ink);
  display: grid;
  place-items: center;
  text-decoration: none;
}
.header-account {
  border-radius: 10px;
}
.header-account span {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.header-account span:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 22px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  transform: translateX(-50%);
}
.menu-toggle {
  justify-self: end;
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}
.brand-mark {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.header-line {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 0;
  color: #8a6a34;
  font-family: "Great Vibes", cursive;
  font-size: 25px;
  line-height: 1;
  text-align: center;
}
.header-line:before,
.header-line:after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(180,137,54,.45), transparent);
}
.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 18px 14px;
}
.site-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 0;
  border-radius: 3px;
  text-decoration: none;
  color: var(--nt-ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--nt-pink);
  background: transparent;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(180,137,54,.2);
  box-shadow: 0 -10px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
}
.bottom-nav a {
  min-height: 64px;
  padding: 8px 2px 7px;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #26201c;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.bottom-nav a:hover {
  color: var(--nt-pink);
}
.bottom-nav__icon {
  width: 21px;
  height: 21px;
  position: relative;
  display: block;
  color: var(--nt-pink);
}
.bottom-nav__icon.home:before,
.bottom-nav__icon.plan:before {
  content: "";
  position: absolute;
  inset: 5px 3px 2px;
  border: 2px solid currentColor;
  border-top: 0;
}
.bottom-nav__icon.home:after,
.bottom-nav__icon.plan:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}
.bottom-nav__icon.plan:before {
  inset: 3px 3px 2px;
  border-top: 2px solid currentColor;
  border-radius: 2px;
}
.bottom-nav__icon.plan:after {
  left: 7px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-left: 0;
  border-top: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.bottom-nav__icon.invite:before {
  content: "";
  position: absolute;
  inset: 4px 1px 3px;
  border: 2px solid currentColor;
}
.bottom-nav__icon.invite:after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 6px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.bottom-nav__icon.guests:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 9px 0 0 -2px #fff, 9px 0 0 0 currentColor;
}
.bottom-nav__icon.guests:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.bottom-nav__icon.budget:before {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.bottom-nav__icon.budget:after {
  content: "lei";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 900;
}
.bottom-nav__icon.guide:before {
  content: "";
  position: absolute;
  inset: 3px 2px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.bottom-nav__icon.guide:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  right: 6px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.home-hero {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 24px 28px 54px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
    url("https://nuntile.ro/wp-content/uploads/2023/04/Home-Hero-img-1536x851.jpg") center/cover;
  border-radius: 0 0 34px 34px;
}
.home-hero:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(180,137,54,.22);
  border-radius: 28px;
  pointer-events: none;
}
.home-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,0,69,.14), transparent 68%);
  pointer-events: none;
}
.launch-pill {
  position: relative;
  grid-column: 1 / -1;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(107,54,54,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  color: #5a3434;
  backdrop-filter: blur(10px);
  text-align: center;
}
.launch-pill span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef7f1;
  color: #496b5a;
  font-size: 12px;
  font-weight: 900;
}
.home-hero__copy,
.wedding-suite {
  position: relative;
  z-index: 1;
}
.script-label {
  margin: 0 0 10px;
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  line-height: 1;
  color: var(--nt-gold);
}
.home-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .91;
  letter-spacing: 0;
  max-width: 760px;
}
.hero-lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: #454545;
  font-size: 19px;
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 800;
}
.btn-primary {
  background: var(--nt-pink);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(143,63,69,.22);
}
.btn-ghost {
  background: #111;
  color: #fff !important;
}
.hero-proof {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-proof span {
  border: 1px solid var(--nt-line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.78);
  color: var(--nt-muted);
  font-size: 14px;
}
.hero-proof strong {
  display: block;
  color: var(--nt-ink);
  font-size: 17px;
}
.wedding-suite {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.phone-stage {
  grid-column: 1 / -1;
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}
.phone-stage:before {
  content: "";
  position: absolute;
  inset: 20px 10px 40px;
  background: radial-gradient(circle, rgba(244,0,69,.16), transparent 62%);
  filter: blur(8px);
}
.phone-frame {
  position: relative;
  width: min(290px, 78vw);
  aspect-ratio: 9 / 16;
  border-radius: 38px;
  padding: 13px;
  background: #111;
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  transform: rotate(-4deg);
}
.phone-frame:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 0 0 14px 14px;
  background: #111;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  height: 100%;
  border-radius: 28px;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.86)),
    url("https://nuntile.ro/wp-content/uploads/2026/01/teaser-nunta-21-650x1067.jpg") center/cover;
  overflow: hidden;
}
.phone-screen span {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: #6b5b55;
}
.phone-screen strong {
  font-family: "Great Vibes", cursive;
  font-size: 54px;
  line-height: .9;
  font-weight: 400;
  color: #9f2f55;
}
.phone-screen em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}
.rsvp-toast {
  position: absolute;
  right: 8px;
  bottom: 58px;
  width: min(270px, 72vw);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
  border: 1px solid rgba(0,0,0,.07);
}
.rsvp-toast small {
  display: block;
  color: #8c3e47;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rsvp-toast strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}
.suite-card {
  border: 1px solid rgba(180,137,54,.30);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.suite-main span,
.suite-card span {
  color: var(--nt-muted);
}
.suite-main strong {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
}
.suite-main em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
.suite-main small { color: var(--nt-muted); }
.suite-light strong,
.suite-dark strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}
.suite-dark {
  background: #111;
  color: #f8e7b8;
  border-color: rgba(180,137,54,.55);
}
.suite-dark span { color: #d6c08b; }

.home-flow,
.home-tools,
.editorial-band,
.home-articles,
.experience-split {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 18px 0;
}
.home-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.flow-card,
.tool-tile {
  border: 1px solid var(--nt-line);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(0,0,0,.05);
}
.flow-card span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--nt-pink);
  color: #fff;
  font-weight: 800;
}
.flow-card strong,
.tool-tile strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}
.flow-card p,
.tool-tile p { color: var(--nt-muted); margin-bottom: 0; }
.experience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.experience-card {
  min-height: 410px;
  border-radius: 28px;
  padding: 34px;
  overflow: hidden;
}
.experience-card span {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255,255,255,.75);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.experience-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  margin: 44px 0 18px;
}
.experience-card ul {
  margin: 0;
  padding-left: 18px;
}
.experience-card li,
.experience-card p {
  font-size: 18px;
}
.experience-card.rose {
  background: linear-gradient(145deg, #fff7f8, #f7ece8);
  border: 1px solid #ead8cf;
}
.experience-card.green {
  background: linear-gradient(145deg, #5f8f74, #477760);
  color: #fff;
}
.experience-card.green p { color: rgba(255,255,255,.88); }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.tool-tile {
  color: var(--nt-ink);
  text-decoration: none !important;
}
.tool-tile span {
  display: inline-block;
  border: 1px solid #ead8aa;
  border-radius: 999px;
  padding: 4px 9px;
  color: #735411;
  background: #fffaf0;
  font-size: 12px;
  font-weight: 800;
}
.tool-tile.featured {
  background: linear-gradient(180deg, #fff, #fff6f8);
  border-color: rgba(244,0,69,.20);
}
.editorial-band {
  margin-top: 54px;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center;
  border-radius: 24px;
  background: #111;
  color: #fff;
}
.editorial-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 16px;
}
.editorial-band p { color: #e7e7e7; }
.editorial-list {
  display: grid;
  gap: 12px;
}
.editorial-list a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  font-weight: 700;
}

.home .nt-wrap {
  max-width: 1180px;
}
.home .nt-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.home .nt-home-hero {
  border-radius: 18px;
  margin: 0 auto;
  border: 1px solid rgba(180,137,54,.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}
.home .nt-home-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}
.home .nt-mini-invite {
  text-decoration: none !important;
}

.site-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 18px 60px;
}
.full-width .site-main { max-width: none; padding-left: 0; padding-right: 0; }

.page-title,
.archive-title,
.entry-title {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content a { color: var(--nt-pink); }

.home-articles {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 18px 70px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
}
.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}
.section-head p { margin: 8px 0 0; color: var(--nt-muted); max-width: 650px; }
.text-link { color: var(--nt-pink); font-weight: 800; text-decoration: none; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  border: 1px solid var(--nt-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: var(--nt-ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,.10);
}
.article-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f4f4f4;
}
.article-card__body { padding: 18px; }
.article-card__cat {
  display: block;
  color: var(--nt-pink);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.article-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
.article-card p { margin: 0; color: var(--nt-muted); font-size: 15px; line-height: 1.5; }

.category-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-strip a {
  display: inline-flex;
  border: 1px solid var(--nt-line);
  border-radius: 999px;
  padding: 8px 13px;
  text-decoration: none;
  background: #fff;
  font-weight: 700;
  color: var(--nt-ink);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 36px;
  align-items: start;
}
.single-content {
  font-size: 18px;
}
.single-content h2,
.single-content h3 {
  line-height: 1.2;
  margin-top: 32px;
}
.single-hero {
  width: 100%;
  border-radius: 12px;
  margin: 0 0 24px;
}
.sidebar-box {
  border: 1px solid var(--nt-line);
  border-radius: 10px;
  padding: 18px;
  background: var(--nt-soft);
  position: sticky;
  top: 92px;
}
.sidebar-box h3 { margin-top: 0; }
.sidebar-box a {
  display: block;
  margin: 10px 0;
  color: var(--nt-ink);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--nt-line);
  background: #111;
  color: #fff;
  padding: 34px 18px;
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.site-footer a { color: #fff; }
.site-footer__links {
  display: grid;
  gap: 10px;
  justify-items: end;
}
.site-footer__main-links,
.site-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
  align-items: center;
}
.site-footer__main-links a,
.site-footer__legal a {
  color: #fff;
  text-decoration: none;
}
.site-footer__legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__legal a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.site-footer__legal a:hover,
.site-footer__main-links a:hover {
  color: #fff;
}
.floating-help {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--nt-pink);
  color: #fff !important;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

@media (max-width: 920px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .site-footer__links {
    justify-items: start;
  }
  .site-footer__main-links,
  .site-footer__legal ul {
    justify-content: flex-start;
  }
  body {
    padding-bottom: 76px;
  }
  .bottom-nav {
    display: grid;
  }
  .site-header__inner {
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
  }
  .site-nav {
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height .22s ease, opacity .22s ease, padding .22s ease;
  }
  .site-header.is-menu-open .site-nav {
    max-height: 150px;
    padding-top: 6px;
    padding-bottom: 14px;
    opacity: 1;
  }
  .site-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .article-grid,
  .post-list,
  .home-hero,
  .home-flow,
  .tool-grid,
  .editorial-band,
  .experience-split,
  .single-layout { grid-template-columns: 1fr; }
  .wedding-suite { min-height: 0; }
  .sidebar-box { position: static; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-main { padding-top: 22px; }
  .site-header__inner {
    padding: 14px 18px 6px;
  }
  .brand img,
  .brand .custom-logo,
  .brand-mark {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
  }
  .header-line {
    font-size: 24px;
    margin-top: 0;
  }
  .site-nav {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-nav a {
    min-height: 34px;
    padding: 6px 8px;
    border: 0;
    background: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(180,137,54,.22);
  }
  .site-nav ul { gap: 8px; }
  .section-head { display: block; }
  .home-hero {
    margin-top: 18px;
    padding: 12px 14px 28px;
    text-align: center;
    gap: 22px;
  }
  .launch-pill {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 0;
    padding: 11px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.35;
  }
  .launch-pill span {
    min-width: 46px;
    height: 28px;
  }
  .home-hero:before { inset: 8px; border-radius: 18px; }
  .script-label { font-size: 38px; margin-top: 2px; }
  .home-hero h1 { font-size: 40px; line-height: .98; }
  .hero-lead { font-size: 16px; margin-left:auto; margin-right:auto; }
  .hero-actions {
    justify-content:center;
    gap: 10px;
  }
  .btn-primary,
  .btn-ghost {
    min-height: 46px;
    padding: 11px 14px;
    font-size: 15px;
  }
  .hero-proof { display:none; }
  .suite-main { min-height: 260px; }
  .suite-main strong { font-size: 54px; }
  .wedding-suite { grid-template-columns: 1fr; }
  .home-flow,
  .home-tools,
  .editorial-band,
  .home-articles,
  .experience-split { padding-top: 34px; }
  .editorial-band { border-radius: 0; margin-top: 34px; }
  .phone-stage { min-height: 390px; }
  .phone-frame { width: min(240px, 72vw); }
  .rsvp-toast { right: 0; bottom: 32px; }
  .experience-card { min-height: 330px; padding: 24px; border-radius: 22px; }
  .experience-card h2 { margin-top: 34px; }
}

.nt-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.nt-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.phone-frame {
  animation: phoneFloat 5.5s ease-in-out infinite;
}

.rsvp-toast.pulse {
  animation: toastPulse .55s ease;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-10px);
  }
}

@keyframes toastPulse {
  0% {
    transform: scale(.97);
  }

  70% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

.scroll-top {
  position: fixed;
  right: 88px;
  bottom: 22px;
  z-index: 60;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--nt-pink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  font-size: 24px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

.pocket-modal[hidden] {
  display: none;
}

.pocket-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.pocket-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, .55);
  backdrop-filter: blur(9px);
}

.pocket-modal__panel {
  position: relative;
  width: min(540px, 100%);
  background:
    radial-gradient(circle at 82% 6%, rgba(215, 178, 105, .24), transparent 28%),
    linear-gradient(160deg, #101d3a 0%, #0c1430 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.pocket-modal.is-open .pocket-modal__panel {
  transform: none;
  opacity: 1;
}

.pocket-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.pocket-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 22px;
}

.pocket-tabs button {
  border: 0;
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  color: #bfc7da;
  font-weight: 800;
}

.pocket-tabs .is-active {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.pocket-modal h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.pocket-modal ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 20px;
  color: #e6eaf5;
}

.pocket-qr {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.pocket-later {
  display: block;
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  color: #bfc7da;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame,
  .nt-js .reveal,
  .rsvp-toast.pulse {
    animation: none;
    transition: none;
  }
}

@media (max-width: 560px) {
  .scroll-top {
    right: 82px;
    bottom: 88px;
  }

  .floating-help {
    right: 18px;
    bottom: 88px;
  }

  .pocket-modal__panel {
    padding: 24px;
    border-radius: 22px;
  }

  .pocket-modal h2 {
    font-size: 24px;
  }
}

/* 2026 platform refresh: header, homepage and supplier onboarding */
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(143, 63, 69, .08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(180, 137, 54, .12), transparent 30%),
    #fff;
}

.site-header {
  box-shadow: 0 10px 34px rgba(43, 28, 18, .05);
}

.site-header__inner {
  padding-top: 14px;
}

.brand-mark {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(43, 28, 18, .08);
}

.header-line {
  font-family: "Parisienne", "Great Vibes", cursive;
  font-size: 27px;
  color: #9f7330;
}

.site-nav {
  padding-bottom: 12px;
}

.site-nav ul {
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
  color: #8f3f45;
  background: #fff5f6;
}

.home-hero {
  margin-top: 28px;
  padding: 42px 34px 56px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .82)),
    radial-gradient(circle at 84% 18%, rgba(180, 137, 54, .18), transparent 28%),
    url("https://nuntile.ro/wp-content/uploads/2023/04/Home-Hero-img-1536x851.jpg") center/cover;
  border: 1px solid rgba(180, 137, 54, .18);
  box-shadow: 0 28px 80px rgba(43, 28, 18, .08);
}

.home-hero:before {
  border-radius: 0;
}

.home-hero h1,
.experience-card h2,
.section-head h2,
.editorial-band h2,
.supplier-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.home-hero h1 {
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: .94;
  color: #150f0d;
}

.hero-lead {
  color: #3f3835;
  font-weight: 500;
}

.btn-primary,
.btn-ghost {
  border-radius: 7px;
  min-height: 50px;
}

.btn-primary {
  background: #a33f4b;
}

.btn-ghost {
  background: #14110f;
}

.hero-proof span,
.flow-card,
.tool-tile,
.article-card {
  border-radius: 10px;
}

.home-flow--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home-flow--six .flow-card {
  padding: 18px;
  min-height: 220px;
  background: linear-gradient(180deg, #fff, #fffaf6);
  border-color: #ead9bc;
}

.flow-card span {
  background: #a33f4b;
}

.flow-card strong {
  display: block;
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.experience-card {
  border-radius: 12px;
}

.experience-card span {
  border-radius: 7px;
}

.tool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-tile {
  min-height: 220px;
  border-color: #eadfd8;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tool-tile:hover {
  transform: translateY(-3px);
  border-color: #c9a45a;
  box-shadow: 0 24px 56px rgba(43, 28, 18, .10);
}

.tool-tile strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.supplier-band {
  max-width: 1180px;
  margin: 56px auto 0;
  padding: 36px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(180, 137, 54, .28);
  background:
    radial-gradient(circle at 90% 18%, rgba(180, 137, 54, .16), transparent 26%),
    linear-gradient(135deg, #12110f, #2a1c1a 58%, #fff6f1 58.2%, #fff);
  color: #fff;
  overflow: hidden;
}

.supplier-band .script-label {
  color: #f1d594;
}

.supplier-band h2 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: .96;
}

.supplier-band p {
  max-width: 740px;
  color: rgba(255, 255, 255, .86);
}

.supplier-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.editorial-band {
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 18%, rgba(180, 137, 54, .18), transparent 28%),
    #12110f;
}

.nt-supplier-shell {
  border-color: #ead9bc;
  border-radius: 12px;
  overflow: hidden;
}

.page-id-3320 .entry-header,
.page-id-3320 .page-title,
.page-id-3320 .entry-title {
  display: none;
}

.nt-supplier-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: center;
  padding: 46px 38px;
  background:
    radial-gradient(circle at 86% 10%, rgba(180, 137, 54, .18), transparent 30%),
    linear-gradient(135deg, #fff, #fff7f7 58%, #fffaf2);
  border-bottom: 1px solid #ead9bc;
}

.nt-supplier-hero:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(180, 137, 54, .22);
  pointer-events: none;
}

.nt-supplier-hero > * {
  position: relative;
  z-index: 1;
}

.nt-supplier-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .95;
  color: #17110f;
}

.nt-supplier-hero p {
  max-width: 720px;
  color: #493d37;
  font-size: 18px;
}

.nt-supplier-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nt-supplier-visual {
  display: grid;
  gap: 16px;
}

.nt-vendor-card {
  min-height: 180px;
  border: 1px solid #ead9bc;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 60px rgba(43, 28, 18, .10);
  padding: 24px;
  display: grid;
  align-content: center;
}

.nt-vendor-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  color: #17110f;
}

.nt-vendor-card span {
  margin-top: 10px;
  color: #5b514b;
}

.nt-vendor-card em {
  margin-top: 18px;
  color: #8f3f45;
  font-style: normal;
  font-weight: 800;
}

.nt-vendor-card.is-gold {
  margin-left: 48px;
  background: #14110f;
}

.nt-vendor-card.is-gold strong,
.nt-vendor-card.is-gold em {
  color: #f1d594;
}

.nt-vendor-card.is-gold span {
  color: #eee0bf;
}

.nt-supplier-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nt-supplier-flow div {
  border: 1px solid #ead9bc;
  background: #fff;
  padding: 18px;
}

.nt-supplier-flow strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
  color: #17110f;
}

.nt-supplier-flow span {
  display: block;
  margin-top: 8px;
  color: #5b514b;
}

.nt-supplier-form-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.nt-supplier-copy h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.nt-supplier-copy p,
.nt-supplier-copy li {
  color: #5b514b;
}

.nt-supplier-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nt-supplier-checks label {
  border: 1px solid #e7e0d8;
  padding: 10px;
  background: #fff;
}

@media (max-width: 1100px) {
  .home-flow--six,
  .tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .site-header.is-menu-open .site-nav {
    display: block;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .site-nav a {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #eee3d8;
    background: #fff;
  }

  .home-hero,
  .experience-split,
  .supplier-band,
  .nt-supplier-hero,
  .nt-supplier-form-section {
    grid-template-columns: 1fr;
  }

  .supplier-band {
    background: linear-gradient(135deg, #12110f, #2a1c1a);
  }

  .supplier-actions {
    min-width: 0;
    grid-template-columns: 1fr 1fr;
  }

  .nt-vendor-card.is-gold {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 70px;
  }

  .bottom-nav {
    display: grid;
  }

  .bottom-nav a {
    min-height: 62px;
    font-size: 11px;
  }

  .site-header__inner {
    grid-template-columns: 42px 1fr 42px;
  }

  .home-hero {
    margin-top: 16px;
    padding: 28px 18px 34px;
    gap: 18px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .hero-proof,
  .home-flow--six,
  .tool-grid,
  .nt-supplier-flow,
  .nt-supplier-checks {
    grid-template-columns: 1fr;
  }

  .wedding-suite {
    min-height: auto;
  }

  .phone-stage {
    min-height: 350px;
  }

  .experience-card,
  .supplier-band,
  .editorial-band,
  .nt-supplier-hero {
    padding: 24px 18px;
  }

  .supplier-actions {
    grid-template-columns: 1fr;
  }
}

/* Homepage concept refresh matching the approved direction */
.site-header {
  background: rgba(255,255,255,.98);
  box-shadow: none;
}

.site-header__inner {
  max-width: 1280px;
  min-height: 80px;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto 42px;
  gap: 12px;
  align-items: center;
}

.brand {
  justify-content: flex-start;
  gap: 9px;
}

.brand-mark {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: #17110f;
  letter-spacing: 0;
}

.brand-copy em {
  margin-top: -2px;
  font-family: "Parisienne", "Great Vibes", cursive;
  color: #b48936;
  font-size: 18px;
}

.site-nav {
  max-width: none;
  margin: 0;
  padding: 0;
}

.site-nav ul {
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 7px 0;
  background: transparent !important;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav .menu-item-3316 a:after {
  content: "NOU";
  display: inline-grid;
  place-items: center;
  margin-left: 6px;
  min-width: 27px;
  height: 17px;
  border: 1px solid rgba(163,63,75,.35);
  border-radius: 4px;
  color: #a33f4b;
  font-size: 10px;
  font-weight: 900;
}

.site-nav .menu-item-3318 {
  display: none;
}

.account-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dfc89d;
  border-radius: 4px;
  color: #17110f;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.account-cta span {
  width: 16px;
  height: 16px;
  border: 2px solid #a33f4b;
  border-radius: 4px;
  position: relative;
}

.account-cta span:before,
.account-cta span:after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background: #a33f4b;
}

.account-cta span:before { top: 5px; }
.account-cta span:after { top: 10px; }

.menu-toggle {
  display: none;
}

.concept-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 330px;
  padding: 36px max(42px, calc((100vw - 1280px) / 2)) 20px;
  border-top: 1px solid #eee5da;
  border-bottom: 1px solid #eee5da;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(225,178,112,.22), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 44%, rgba(255,244,245,.55) 72%, #fff 100%);
}

.concept-hero:before,
.concept-hero:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 280px;
  opacity: .48;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 10%, transparent 34px, #d7ad6b 35px, transparent 36px),
    linear-gradient(70deg, transparent 48%, #d7ad6b 49%, transparent 50%),
    linear-gradient(110deg, transparent 48%, #d7ad6b 49%, transparent 50%);
  mask: linear-gradient(#000, transparent);
}

.concept-hero:before { left: 20px; top: 44px; transform: rotate(-10deg); }
.concept-hero:after { right: 10px; bottom: -20px; transform: rotate(18deg); }

.concept-hero__copy,
.concept-hero__visual {
  position: relative;
  z-index: 1;
}

.concept-kicker {
  margin: 0 0 14px;
  color: #a33f4b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
}

.concept-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 6.2vw, 84px);
  line-height: .86;
  color: #18110f;
}

.concept-hero h1 span {
  display: block;
  font-family: "Parisienne", "Great Vibes", cursive;
  color: #a33f4b;
  font-size: .82em;
  font-weight: 400;
  line-height: .72;
  margin-top: 12px;
}

.concept-hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #3f3835;
  font-size: 17px;
  line-height: 1.55;
}

.concept-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.concept-outline {
  background: transparent !important;
  color: #a33f4b !important;
  border: 1px solid #d7a9b0;
  box-shadow: none;
}

.concept-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #7a706b;
  font-size: 13px;
}

.concept-proof span:before {
  content: "↻";
  color: #a33f4b;
  margin-right: 7px;
}

.concept-hero__visual {
  min-height: 310px;
}

.couple-silhouette {
  position: absolute;
  right: 140px;
  top: -28px;
  width: 265px;
  height: 318px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.72)),
    url("https://nuntile.ro/wp-content/uploads/2023/04/Home-Hero-img-1536x851.jpg") center/cover;
  border-radius: 48% 48% 0 0;
  filter: sepia(.18) saturate(.9);
  opacity: .75;
  mask-image: linear-gradient(#000 72%, transparent);
}

.concept-stats {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: min(520px, 92%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ead9bc;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 55px rgba(43,28,18,.08);
  backdrop-filter: blur(8px);
}

.concept-stats div {
  min-height: 100px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 16px;
  border-right: 1px solid #eee1cf;
}

.concept-stats div:last-child { border-right: 0; }
.concept-stats b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1;
}
.concept-stats span {
  margin-top: 6px;
  color: #5b514b;
  font-size: 13px;
  line-height: 1.25;
}

.concept-steps {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.concept-steps a {
  position: relative;
  min-height: 134px;
  padding: 16px 18px;
  border: 1px solid #eee1d4;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: #17110f;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(43,28,18,.04);
}

.concept-steps a:not(:last-child):after {
  content: "›";
  position: absolute;
  right: -7px;
  top: 50%;
  z-index: 2;
  color: #7a706b;
  font-size: 32px;
  transform: translateY(-50%);
}

.concept-steps span {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #a33f4b;
  font-size: 32px;
  line-height: 1;
}

.concept-steps i {
  float: right;
  color: #a33f4b;
  font-style: normal;
  font-size: 25px;
}

.concept-steps strong {
  display: block;
  margin-top: 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.concept-steps p {
  margin: 10px 0 0;
  color: #615650;
  font-size: 14px;
  line-height: 1.45;
}

.concept-supplier {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee1d4;
  background: linear-gradient(90deg, #fff1f2, #fff 44%, #fff6f1);
}

.concept-supplier__intro,
.concept-categories,
.concept-form-card {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid #eee1d4;
}

.concept-supplier__intro {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
}

.store-icon {
  width: 92px;
  height: 78px;
  border: 4px solid #b24b5a;
  border-top-width: 14px;
  position: relative;
}
.store-icon:before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: -28px;
  height: 20px;
  border: 4px solid #b24b5a;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.concept-supplier h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
}

.concept-supplier p {
  margin: 0 0 16px;
  color: #5b514b;
  line-height: 1.45;
}

.concept-categories strong,
.concept-form-card label {
  display: block;
  margin-bottom: 18px;
  text-align: center;
  color: #17110f;
}

.concept-categories div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  color: #8a6a34;
  font-size: 12px;
}

.concept-categories span:before {
  content: "◇";
  display: block;
  font-size: 22px;
  color: #c49a54;
}

.concept-form-card {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    url("https://nuntile.ro/wp-content/uploads/2023/05/nuntile.ro_.jpg") center/cover;
  border-right: 0;
}

.fake-input,
.fake-row span {
  min-height: 28px;
  border: 1px solid #ead9bc;
  background: rgba(255,255,255,.9);
  color: #9a8f88;
  font-size: 11px;
  padding: 7px 9px;
}

.concept-form-card input,
.concept-form-card select {
  width: 100%;
  min-width: 0;
  font: inherit;
}

.concept-form-card select.fake-input,
.fake-row select,
.fake-row input {
  min-height: 35px;
  border: 1px solid #ead9bc;
  background: rgba(255,255,255,.92);
  color: #5b514b;
  font-size: 12px;
  padding: 7px 9px;
}

.fake-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.concept-form-card a,
.concept-form-card button {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  border: 0;
  background: #a33f4b;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.concept-articles {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px 70px;
}

.concept-article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-nav,
  .account-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .site-header.is-menu-open .site-nav {
    display: block;
    grid-column: 1 / -1;
  }
  .site-header.is-menu-open .site-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .concept-hero,
  .concept-supplier {
    grid-template-columns: 1fr;
  }
  .concept-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .concept-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 96px;
    padding: 14px 18px;
  }
  .brand-copy strong {
    font-size: 28px;
  }
  .concept-hero {
    padding: 28px 18px;
    text-align: center;
  }
  .concept-kicker,
  .concept-proof {
    display: none;
  }
  .concept-hero h1 {
    font-size: 48px;
    margin: 0 auto;
  }
  .concept-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .concept-actions {
    justify-content: center;
  }
  .couple-silhouette {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto -25px;
    width: 260px;
    height: 260px;
  }
  .concept-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8px;
  }
  .concept-steps {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }
  .concept-steps a:not(:last-child):after {
    display: none;
  }
  .concept-supplier {
    margin: 0 18px;
  }
  .concept-supplier__intro {
    grid-template-columns: 1fr;
  }
  .concept-categories div {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-article-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile header drawer: professional compact menu */
@media (max-width: 1050px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 78px;
    padding: 10px 20px;
    gap: 12px;
  }

  .brand {
    justify-self: start;
    min-width: 0;
  }

  .brand-mark {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
  }

  .brand-copy strong {
    font-size: clamp(28px, 7vw, 34px);
    line-height: .85;
  }

  .brand-copy em {
    font-size: clamp(17px, 4.3vw, 21px);
  }

  .account-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(180,137,54,.28);
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 22px rgba(40,28,16,.08);
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    max-height: none;
    margin: 0;
    padding: 8px;
    opacity: 1;
    overflow: visible;
    background: #fff;
    border: 1px solid rgba(180,137,54,.22);
    border-radius: 10px;
    box-shadow: 0 22px 60px rgba(33,21,14,.16);
    backdrop-filter: blur(16px);
  }

  .site-header.is-menu-open .site-nav {
    display: block;
    max-height: none;
    padding: 8px;
    opacity: 1;
  }

  .site-header.is-menu-open .site-nav ul,
  .site-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: stretch;
  }

  .site-nav li {
    display: block;
  }

  .site-nav .menu-item-3318 {
    display: none;
  }

  .site-nav a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    border-radius: 7px;
    background: transparent !important;
    color: #17110f;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
  }

  .site-nav a:before {
    content: none;
  }

  .site-nav li + li a {
    border-top: 1px solid rgba(180,137,54,.16);
  }

  .site-nav a:hover,
  .site-nav .current-menu-item > a {
    background: #fbf4ee !important;
    color: #a33f4b;
  }

  .site-nav .menu-item-3316 a:after {
    margin-left: 8px;
  }

  .site-nav .menu-item-3318 a {
    margin-top: 6px;
    background: #a33f4b !important;
    color: #fff;
    justify-content: center;
  }

  .site-nav .menu-item-3318 a:before,
  .site-nav .menu-item-3318 a:after {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    min-height: 76px;
    padding: 9px 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    top: calc(100% + 6px);
  }
}

/* Site-wide spacing and radius cleanup */
.nt-shell,
.nt-card,
.article-card,
.single-hero,
.tool-tile,
.experience-card,
.concept-steps a,
.concept-supplier,
.concept-stats,
.nt-supplier-shell,
.nt-supplier-flow div,
.nt-supplier-form,
.nt-supplier-checks label {
  border-radius: 5px !important;
}

.nt-btn,
.hero-actions a,
.concept-actions a,
.concept-form-card a,
.account-cta,
.site-nav a,
.menu-toggle,
.header-account {
  border-radius: 4px !important;
}

@media (max-width: 760px) {
  .site-main,
  .nt-wrap,
  .page-wrap,
  .archive-wrap,
  .single-layout,
  .concept-articles {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .nt-shell,
  .nt-supplier-shell {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
  }

  .nt-section,
  .single-content,
  .article-grid,
  .post-list,
  .section-head {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .nt-supplier-hero,
  .home-hero,
  .concept-hero {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nt-supplier-hero {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .nt-supplier-hero h1,
  .home-hero h1,
  .concept-hero h1 {
    max-width: none !important;
  }

  .nt-supplier-hero h1 {
    font-size: clamp(38px, 10.5vw, 50px) !important;
    line-height: 1 !important;
  }

  .nt-supplier-hero p {
    max-width: none !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
  }

  .nt-supplier-actions,
  .hero-actions,
  .concept-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .nt-supplier-actions .nt-btn,
  .hero-actions a,
  .concept-actions a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .nt-card,
  .article-card,
  .concept-steps a,
  .concept-supplier,
  .nt-supplier-flow div,
  .nt-supplier-form {
    border-radius: 4px !important;
  }

  .site-nav {
    border-radius: 4px !important;
  }
}

/* Homepage persuasion layer: focused benefits and controlled motion */
.concept-hero__visual {
  transform: translate3d(var(--nt-move-x, 0), var(--nt-move-y, 0), 0);
  transition: transform .18s ease-out;
}

.concept-orbit {
  position: absolute;
  z-index: 2;
  min-width: 112px;
  padding: 9px 12px;
  border: 1px solid rgba(180,137,54,.36);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(43,28,18,.1);
  color: #17110f;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
  animation: conceptFloat 5.8s ease-in-out infinite;
}

.concept-orbit:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #a33f4b;
  box-shadow: 0 0 0 5px rgba(163,63,75,.1);
}

.concept-orbit--one {
  top: 46px;
  right: 42px;
}

.concept-orbit--two {
  top: 138px;
  right: 330px;
  animation-delay: -1.8s;
}

.concept-orbit--three {
  right: 86px;
  bottom: 118px;
  animation-delay: -3.2s;
}

.concept-focus {
  max-width: 1280px;
  margin: -1px auto 0;
  padding: 0 24px 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.concept-focus a {
  position: relative;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid #ead9bc;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,247,242,.92)),
    radial-gradient(circle at 90% 15%, rgba(180,137,54,.16), transparent 32%);
  color: #17110f;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(43,28,18,.055);
  overflow: hidden;
}

.concept-focus a:after {
  content: ">";
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: #a33f4b;
  font-weight: 900;
  transform: translateX(0);
  transition: transform .2s ease;
}

.concept-focus a:hover {
  border-color: rgba(163,63,75,.38);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(43,28,18,.09);
}

.concept-focus a:hover:after {
  transform: translateX(4px);
}

.concept-focus small {
  display: block;
  margin-bottom: 8px;
  color: #a33f4b;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 11px;
  font-weight: 900;
}

.concept-focus strong {
  display: block;
  max-width: 92%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.concept-impact-banner {
  position: relative;
  max-width: 1280px;
  min-height: 118px;
  margin: 8px auto 10px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(330px, 1.2fr) 150px auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(180,137,54,.34);
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,246,247,.9)),
    radial-gradient(circle at 78% 18%, rgba(180,137,54,.18), transparent 28%);
  box-shadow: 0 24px 64px rgba(43,28,18,.08);
  overflow: hidden;
}

.concept-impact-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,.72) 50%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  animation: impactSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.concept-impact-banner:after {
  content: "";
  position: absolute;
  right: 180px;
  top: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(180,137,54,.28);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 22px rgba(255,255,255,.42);
  pointer-events: none;
}

.concept-impact-banner > * {
  position: relative;
  z-index: 1;
}

.concept-impact-banner small {
  display: block;
  margin-bottom: 7px;
  color: #a33f4b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 900;
}

.concept-impact-banner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .95;
  color: #17110f;
}

.concept-impact-banner p {
  max-width: 460px;
  margin: 8px 0 0;
  color: #5b514b;
  line-height: 1.45;
}

.concept-impact-banner__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.concept-impact-banner__flow span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid rgba(180,137,54,.24);
  background: rgba(255,255,255,.86);
  color: #51463f;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(163,63,75,0);
  transition: border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.concept-impact-banner__flow span.is-active {
  border-color: rgba(163,63,75,.48);
  background: #fff4f6;
  color: #8f3f45;
  box-shadow: inset 0 -3px 0 rgba(163,63,75,.5), 0 12px 28px rgba(163,63,75,.10);
  transform: translateY(-2px);
}

.concept-impact-banner__pulse {
  min-height: 80px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(163,63,75,.28);
  background: #fff;
  box-shadow: 0 14px 32px rgba(43,28,18,.06);
}

.concept-impact-banner__pulse b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: .9;
  color: #8f3f45;
}

.concept-impact-banner__pulse span {
  margin-top: 5px;
  color: #615650;
  font-size: 12px;
  font-weight: 800;
}

.concept-impact-banner__cta {
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  background: #a33f4b;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(163,63,75,.22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.concept-impact-banner__cta:hover {
  transform: translateY(-2px);
  background: #913643;
  box-shadow: 0 20px 42px rgba(163,63,75,.28);
}

.concept-stats b {
  min-height: 32px;
}

.concept-steps a {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.concept-steps a:hover,
.concept-steps a.is-active {
  transform: translateY(-4px);
  border-color: rgba(163,63,75,.34);
  background: linear-gradient(180deg, #fff, #fff7f8);
  box-shadow: 0 22px 52px rgba(43,28,18,.11);
}

.concept-steps a.is-active span {
  text-shadow: 0 0 18px rgba(163,63,75,.2);
}

.concept-supplier {
  box-shadow: 0 18px 50px rgba(43,28,18,.06);
}

.concept-form-card a,
.btn-primary {
  box-shadow: 0 14px 28px rgba(163,63,75,.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.concept-form-card a:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: #913643;
  box-shadow: 0 18px 36px rgba(163,63,75,.24);
}

@keyframes conceptFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes impactSweep {
  0%, 48% {
    transform: translateX(-120%);
  }
  72%, 100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-hero__visual,
  .concept-orbit,
  .concept-steps a,
  .concept-focus a,
  .concept-impact-banner:before,
  .concept-impact-banner__flow span,
  .concept-impact-banner__cta,
  .concept-form-card a,
  .btn-primary {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1050px) {
  .concept-focus {
    grid-template-columns: 1fr;
    padding: 10px 18px 8px;
  }

  .concept-impact-banner {
    grid-template-columns: 1fr 1fr;
    margin-left: 18px;
    margin-right: 18px;
  }

  .concept-impact-banner__flow {
    grid-column: 1 / -1;
  }

  .concept-orbit--one {
    right: 18px;
  }

  .concept-orbit--two {
    right: auto;
    left: 18px;
  }

  .concept-orbit--three {
    right: 34px;
  }
}

@media (max-width: 760px) {
  .concept-focus {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .concept-focus strong {
    max-width: none;
    font-size: 22px;
  }

  .concept-impact-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
    margin: 8px 18px 10px;
  }

  .concept-impact-banner:after {
    display: none;
  }

  .concept-impact-banner__flow {
    grid-template-columns: 1fr 1fr;
  }

  .concept-impact-banner__pulse {
    min-height: 68px;
  }

  .concept-impact-banner__cta {
    width: 100%;
  }

  .concept-orbit {
    position: relative;
    inset: auto !important;
    display: inline-block;
    min-width: 0;
    margin: 6px 4px 0;
    animation: none;
  }

  .concept-hero__visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .couple-silhouette,
  .concept-stats {
    flex-basis: 100%;
  }
}

/* Impact banner visual upgrade */
.concept-impact-banner {
  grid-template-columns: minmax(260px, .85fr) minmax(420px, 1.2fr) minmax(220px, .65fr);
  min-height: 245px;
  padding: 0;
  gap: 0;
  background:
    radial-gradient(circle at 52% 50%, rgba(163,63,75,.12), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(180,137,54,.22), transparent 28%),
    linear-gradient(115deg, #fff 0%, #fff8f8 48%, #fffaf1 100%);
}

.concept-impact-banner__copy {
  height: 100%;
  display: grid;
  align-content: center;
  padding: 28px 30px;
  border-right: 1px solid rgba(180,137,54,.24);
}

.concept-impact-banner__copy h2 {
  max-width: 360px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: .9;
}

.concept-impact-visual {
  position: relative;
  min-height: 245px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.concept-impact-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.concept-impact-rings span {
  position: absolute;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(180,137,54,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255,255,255,.52);
  animation: impactRing 4.8s ease-in-out infinite;
}

.concept-impact-rings span:nth-child(2) {
  width: 205px;
  height: 205px;
  animation-delay: -1.4s;
  opacity: .72;
}

.concept-impact-rings span:nth-child(3) {
  width: 292px;
  height: 292px;
  animation-delay: -2.8s;
  opacity: .42;
}

.concept-impact-phone {
  position: relative;
  z-index: 2;
  width: 172px;
  min-height: 206px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 20px 16px;
  border: 10px solid #17110f;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,246,238,.94)),
    radial-gradient(circle at 50% 22%, rgba(180,137,54,.26), transparent 38%);
  box-shadow: 0 28px 70px rgba(43,28,18,.22);
  transform: rotate(-3deg);
}

.concept-impact-phone i {
  position: absolute;
  top: 0;
  width: 70px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #17110f;
}

.concept-impact-phone strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 50px;
  line-height: .9;
  color: #8f3f45;
  text-align: center;
}

.concept-impact-phone span {
  margin-top: 8px;
  color: #51463f;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.concept-impact-phone em {
  width: 88%;
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a33f4b var(--impact-progress, 25%), #ead9bc 0);
  transition: background .24s ease;
}

.concept-impact-chip {
  position: absolute;
  z-index: 3;
  min-width: 92px;
  padding: 10px 13px;
  border: 1px solid rgba(180,137,54,.34);
  background: rgba(255,255,255,.92);
  color: #17110f;
  text-align: center;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(43,28,18,.10);
  backdrop-filter: blur(8px);
  transition: transform .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
}

.concept-impact-chip:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #d8b46a;
}

.concept-impact-chip.is-active {
  background: #fff2f4;
  border-color: rgba(163,63,75,.5);
  color: #8f3f45;
  transform: translateY(-4px) scale(1.04);
}

.concept-impact-chip.is-active:before {
  background: #a33f4b;
  box-shadow: 0 0 0 6px rgba(163,63,75,.12);
}

.concept-impact-chip--one { left: 42px; top: 38px; }
.concept-impact-chip--two { right: 46px; top: 54px; }
.concept-impact-chip--three { left: 64px; bottom: 44px; }
.concept-impact-chip--four { right: 42px; bottom: 38px; }

.concept-impact-result {
  height: 100%;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px 30px;
  border-left: 1px solid rgba(180,137,54,.24);
}

.concept-impact-result span {
  color: #a33f4b;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
  font-weight: 950;
}

.concept-impact-result strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #17110f;
}

@keyframes impactRing {
  0%, 100% {
    transform: scale(.92);
  }
  50% {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-impact-rings span {
    animation: none !important;
  }
}

@media (max-width: 1050px) {
  .concept-impact-banner {
    grid-template-columns: 1fr;
  }

  .concept-impact-banner__copy,
  .concept-impact-result {
    border: 0;
  }

  .concept-impact-visual {
    min-height: 260px;
    border-top: 1px solid rgba(180,137,54,.18);
    border-bottom: 1px solid rgba(180,137,54,.18);
  }
}

@media (max-width: 760px) {
  .concept-impact-banner {
    padding: 0;
  }

  .concept-impact-banner__copy,
  .concept-impact-result {
    padding: 22px 18px;
  }

  .concept-impact-visual {
    min-height: 310px;
  }

  .concept-impact-phone {
    width: 150px;
    min-height: 184px;
  }

  .concept-impact-chip {
    min-width: 78px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .concept-impact-chip--one { left: 18px; top: 28px; }
  .concept-impact-chip--two { right: 18px; top: 42px; }
  .concept-impact-chip--three { left: 22px; bottom: 40px; }
  .concept-impact-chip--four { right: 18px; bottom: 28px; }

  .concept-impact-result strong {
    font-size: 27px;
  }
}

/* Wider visual checkout banner */
.concept-impact-banner {
  width: calc(100% - 48px);
  max-width: 1320px;
  min-height: 286px;
  margin: 12px auto 16px;
  grid-template-columns: minmax(260px, .7fr) minmax(520px, 1.35fr) minmax(230px, .55fr);
  border-color: rgba(180,137,54,.38);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,247,248,.92) 38%, rgba(255,255,255,.30) 64%, rgba(255,250,241,.95) 100%),
    radial-gradient(circle at 70% 35%, rgba(180,137,54,.25), transparent 32%);
}

.concept-impact-banner:before {
  display: none;
}

.concept-impact-banner:after {
  right: 20%;
  width: 210px;
  height: 210px;
  opacity: .42;
}

.concept-impact-banner__copy {
  padding: 34px 30px;
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.70));
}

.concept-impact-banner__copy h2 {
  max-width: 380px;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: .88;
}

.concept-impact-checkout {
  position: relative;
  min-height: 286px;
  overflow: hidden;
}

.concept-impact-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.24), rgba(255,255,255,.02) 34%, rgba(255,255,255,.68) 100%),
    url("https://nuntile.ro/wp-content/uploads/2023/04/Home-Hero-img-1536x851.jpg") center 38%/cover;
  filter: sepia(.12) saturate(.92);
  transform: scale(1.03);
}

.concept-impact-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 28%, rgba(255,255,255,.34) 54%, rgba(255,255,255,.80) 100%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.34));
}

.concept-impact-checklist {
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
  margin: 30px auto;
  display: grid;
  gap: 9px;
}

.concept-impact-checklist span {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(180,137,54,.30);
  background: rgba(255,255,255,.86);
  color: #3f3835;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(43,28,18,.09);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.concept-impact-checklist span:before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 2px solid #c9a45a;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.concept-impact-checklist span.is-active {
  transform: translateX(8px);
  border-color: rgba(163,63,75,.48);
  background: rgba(255,244,246,.94);
  color: #8f3f45;
}

.concept-impact-checklist span.is-active:before {
  content: "\2713";
  display: grid;
  place-items: center;
  border-color: #a33f4b;
  background: #a33f4b;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(163,63,75,.12);
}

.concept-impact-result {
  padding: 34px 30px;
  background: linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,250,241,.96));
}

.concept-impact-result strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 4vw, 64px);
  line-height: .86;
  color: #8f3f45;
}

.concept-impact-result em {
  max-width: 220px;
  color: #3f3835;
  font-style: normal;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.concept-impact-banner__cta {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 1050px) {
  .concept-impact-banner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .concept-impact-checkout {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .concept-impact-banner {
    width: calc(100% - 36px);
    min-height: 0;
    margin: 10px auto 14px;
  }

  .concept-impact-banner__copy {
    padding: 24px 18px 18px;
  }

  .concept-impact-banner__copy h2 {
    font-size: 38px;
  }

  .concept-impact-checkout {
    min-height: 360px;
  }

  .concept-impact-checklist {
    width: calc(100% - 36px);
    margin: 24px auto;
  }

  .concept-impact-checklist span {
    min-height: 38px;
    font-size: 13px;
  }

  .concept-impact-result {
    padding: 22px 18px 24px;
  }

  .concept-impact-result strong {
    font-size: 48px;
  }
}

/* Invitation preview banner */
.concept-impact-banner {
  width: calc(100% - 48px);
  max-width: 1280px;
  min-height: 360px;
  margin: 18px auto 22px;
  display: grid;
  grid-template-columns: .78fr 1fr .5fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(180,137,54,.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(180,137,54,.20), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(163,63,75,.12), transparent 28%),
    linear-gradient(115deg, #fff, #fff7f8 55%, #fffaf1);
  box-shadow: 0 28px 76px rgba(43,28,18,.08);
  overflow: hidden;
}

.concept-impact-banner:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(180,137,54,.22);
  pointer-events: none;
}

.concept-impact-banner:after {
  content: "";
  position: absolute;
  left: 42px;
  top: 34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(180,137,54,.26);
  box-shadow: 0 0 0 28px rgba(255,255,255,.38);
  pointer-events: none;
}

.concept-invite-phone {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.concept-invite-phone:before,
.concept-invite-phone:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(180,137,54,.28);
  border-radius: 50%;
}

.concept-invite-phone:before {
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(255,255,255,.72), transparent 62%);
}

.concept-invite-phone:after {
  left: -44px;
  bottom: -58px;
  width: 210px;
  height: 210px;
}

.concept-invite-phone__screen {
  position: relative;
  z-index: 2;
  width: 215px;
  min-height: 318px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px 18px;
  border: 10px solid #17110f;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 9%, rgba(180,137,54,.22), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,248,244,.96)),
    repeating-linear-gradient(135deg, rgba(180,137,54,.10) 0 1px, transparent 1px 16px);
  box-shadow: 0 30px 78px rgba(43,28,18,.25);
  transform: rotate(-4deg);
  text-align: center;
}

.concept-invite-phone__screen:before {
  content: "";
  position: absolute;
  top: 0;
  width: 82px;
  height: 19px;
  border-radius: 0 0 13px 13px;
  background: #17110f;
}

.concept-invite-phone__screen small {
  margin-top: 12px;
  color: #8f3f45;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 900;
}

.concept-invite-phone__screen strong {
  margin-top: 16px;
  font-family: "Parisienne", "Great Vibes", cursive;
  color: #8f3f45;
  font-size: 48px;
  font-weight: 400;
  line-height: .85;
}

.concept-invite-phone__screen span,
.concept-invite-phone__screen p,
.concept-invite-phone__screen em {
  color: #3f3835;
}

.concept-invite-phone__screen span {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 800;
}

.concept-invite-divider {
  width: 74px;
  height: 1px;
  margin: 15px 0;
  background: #c9a45a;
}

.concept-invite-phone__screen p {
  margin: 0;
  line-height: 1.25;
  font-size: 13px;
}

.concept-invite-phone__screen p b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
}

.concept-invite-phone__screen em {
  margin-top: 10px;
  font-style: normal;
  font-weight: 900;
}

.concept-invite-phone__screen button {
  margin-top: 16px;
  min-height: 38px;
  width: 100%;
  border: 0;
  background: #a33f4b;
  color: #fff;
  font-weight: 900;
}

.concept-invite-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 38px 40px;
  border-left: 1px solid rgba(180,137,54,.18);
  border-right: 1px solid rgba(180,137,54,.18);
  background: rgba(255,255,255,.42);
}

.concept-impact-banner__copy {
  padding: 0;
  border: 0;
  background: transparent;
}

.concept-impact-banner__copy h2 {
  max-width: 560px;
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 62px);
  line-height: .9;
  color: #17110f;
}

.concept-impact-banner__copy small,
.concept-impact-result span {
  color: #a33f4b;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 11px;
  font-weight: 950;
}

.concept-invite-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.concept-invite-fields span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(180,137,54,.25);
  background: rgba(255,255,255,.80);
  color: #4b4039;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.concept-invite-fields span:before {
  content: "";
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
  border: 1px solid #c9a45a;
  background: #fff;
}

.concept-invite-fields span.is-active {
  transform: translateY(-4px);
  background: #fff2f4;
  border-color: rgba(163,63,75,.44);
  color: #8f3f45;
  box-shadow: 0 14px 30px rgba(163,63,75,.10);
}

.concept-invite-fields span.is-active:before {
  content: "\2713";
  display: grid;
  place-items: center;
  border-color: #a33f4b;
  background: #a33f4b;
  color: #fff;
  font-size: 12px;
}

.concept-impact-result {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 38px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,241,.96));
}

.concept-impact-result strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #8f3f45;
  font-size: clamp(42px, 3.8vw, 60px);
  line-height: .88;
}

.concept-impact-result em {
  color: #17110f;
  font-family: "Parisienne", "Great Vibes", cursive;
  font-size: 32px;
  font-style: normal;
  line-height: .95;
}

.concept-impact-banner__cta {
  width: 100%;
  min-height: 52px;
}

@media (max-width: 1100px) {
  .concept-impact-banner {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .concept-invite-copy {
    border: 0;
    border-top: 1px solid rgba(180,137,54,.18);
    border-bottom: 1px solid rgba(180,137,54,.18);
  }
}

@media (max-width: 760px) {
  .concept-impact-banner {
    width: calc(100% - 36px);
    margin: 12px auto 16px;
  }

  .concept-invite-phone {
    min-height: 350px;
  }

  .concept-invite-phone__screen {
    width: 198px;
    min-height: 294px;
  }

  .concept-invite-copy,
  .concept-impact-result {
    padding: 24px 18px;
  }

  .concept-impact-banner__copy h2 {
    font-size: 40px;
  }

  .concept-invite-fields {
    grid-template-columns: 1fr;
  }

  .concept-invite-fields span {
    min-height: 44px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }

  .concept-invite-fields span:before {
    margin-bottom: 0;
  }
}

/* Premium wedding-style impact banner */
.concept-impact-banner {
  width: calc(100% - 48px);
  max-width: 1280px;
  min-height: 330px;
  margin: 18px auto 22px;
  display: grid;
  grid-template-columns: .9fr 1fr .46fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(180,137,54,.34);
  background: #fff;
  box-shadow: 0 28px 76px rgba(43,28,18,.08);
}

.concept-impact-banner:before,
.concept-impact-banner:after {
  display: none;
}

.concept-impact-photo {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34,20,16,.18), rgba(255,255,255,.08) 42%, rgba(255,255,255,.84) 100%),
    url("https://nuntile.ro/wp-content/uploads/2023/04/Home-Hero-img-1536x851.jpg") center/cover;
}

.concept-impact-photo:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.62);
  pointer-events: none;
}

.concept-impact-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 32%, transparent 0 30%, rgba(255,255,255,.08) 44%, rgba(255,255,255,.55) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,247,242,.34));
  pointer-events: none;
}

.concept-impact-photo__text {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  max-width: 300px;
  color: #fff;
  text-shadow: 0 12px 34px rgba(0,0,0,.36);
}

.concept-impact-photo__text small {
  color: rgba(255,255,255,.86);
  letter-spacing: 2px;
}

.concept-impact-photo__text strong {
  display: block;
  font-family: "Parisienne", "Great Vibes", cursive;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: .82;
}

.concept-impact-content {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 34px 38px;
  background:
    radial-gradient(circle at 86% 18%, rgba(180,137,54,.12), transparent 30%),
    linear-gradient(135deg, #fff, #fff8f8 58%, #fffaf1);
}

.concept-impact-banner__copy {
  height: auto;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.concept-impact-banner__copy small,
.concept-impact-result span {
  color: #a33f4b;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 11px;
  font-weight: 950;
}

.concept-impact-banner__copy h2 {
  max-width: 560px;
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: .9;
  color: #17110f;
}

.concept-impact-checklist {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 9px;
}

.concept-impact-checklist span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 14px;
  border: 1px solid rgba(180,137,54,.24);
  background: rgba(255,255,255,.82);
  color: #3f3835;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(43,28,18,.045);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.concept-impact-checklist span:before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid #c9a45a;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff;
}

.concept-impact-checklist span.is-active {
  transform: translateX(7px);
  border-color: rgba(163,63,75,.42);
  background: rgba(255,242,245,.92);
  color: #8f3f45;
}

.concept-impact-checklist span.is-active:before {
  content: "\2713";
  display: grid;
  place-items: center;
  border-color: #a33f4b;
  background: #a33f4b;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(163,63,75,.10);
}

.concept-impact-result {
  height: auto;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px 30px;
  border-left: 1px solid rgba(180,137,54,.24);
  background:
    radial-gradient(circle at 50% 38%, rgba(180,137,54,.22), transparent 34%),
    linear-gradient(180deg, #fff, #fffaf1);
}

.concept-impact-result strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 4vw, 68px);
  line-height: .85;
  color: #8f3f45;
}

.concept-impact-result em {
  display: block;
  max-width: 220px;
  color: #17110f;
  font-family: "Parisienne", "Great Vibes", cursive;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: .95;
}

.concept-impact-banner__cta {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

@media (max-width: 1050px) {
  .concept-impact-banner {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .concept-impact-photo {
    min-height: 360px;
    background-position: center 34%;
  }

  .concept-impact-result {
    border-left: 0;
    border-top: 1px solid rgba(180,137,54,.24);
  }
}

@media (max-width: 760px) {
  .concept-impact-banner {
    width: calc(100% - 36px);
    margin: 12px auto 16px;
  }

  .concept-impact-photo {
    min-height: 300px;
  }

  .concept-impact-photo__text {
    left: 20px;
    bottom: 22px;
  }

  .concept-impact-photo__text strong {
    font-size: 52px;
  }

  .concept-impact-content {
    padding: 24px 18px;
  }

  .concept-impact-banner__copy h2 {
    font-size: 42px;
  }

  .concept-impact-checklist span {
    min-height: 44px;
    font-size: 13px;
  }

  .concept-impact-checklist span.is-active {
    transform: none;
  }

  .concept-impact-result {
    padding: 24px 18px;
  }
}

/* Final invitation showcase polish */
.concept-invite-showcase {
  grid-template-columns: minmax(360px, .96fr) minmax(430px, 1.05fr) minmax(210px, .48fr);
  min-height: 390px;
  overflow: hidden;
  border-color: rgba(197,151,78,.38);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,250,245,.92)),
    radial-gradient(circle at 18% 44%, rgba(197,151,78,.22), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(163,63,75,.13), transparent 30%);
}

.concept-invite-showcase .concept-invite-phone {
  position: relative;
  min-height: 390px;
  padding: 26px 36px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(180,137,54,.22);
  background:
    radial-gradient(circle at 31% 51%, rgba(255,255,255,.96) 0 29%, rgba(250,239,222,.68) 30% 47%, transparent 48%),
    linear-gradient(135deg, #fff, #fff8f1);
}

.concept-invite-showcase .concept-invite-phone:before,
.concept-invite-showcase .concept-invite-phone:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(197,151,78,.24);
  border-radius: 999px;
  pointer-events: none;
}

.concept-invite-showcase .concept-invite-phone:before {
  width: 340px;
  height: 340px;
  left: 26px;
  top: 34px;
}

.concept-invite-showcase .concept-invite-phone:after {
  width: 260px;
  height: 260px;
  left: -78px;
  bottom: -78px;
}

.concept-invite-card {
  position: absolute;
  z-index: 3;
  min-width: 118px;
  padding: 10px 13px;
  border: 1px solid rgba(197,151,78,.32);
  background: rgba(255,255,255,.9);
  color: #8f3f45;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(43,28,18,.10);
}

.concept-invite-card:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: #a33f4b;
  box-shadow: 0 0 0 5px rgba(163,63,75,.11);
}

.concept-invite-card--top {
  top: 34px;
  right: 38px;
}

.concept-invite-card--bottom {
  left: 42px;
  bottom: 42px;
}

.concept-invite-showcase .concept-invite-phone__screen {
  z-index: 2;
  width: 238px;
  min-height: 336px;
  padding: 44px 22px 26px;
  transform: rotate(-3.5deg);
  border: 10px solid #17110f;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    radial-gradient(circle at 50% 36%, rgba(197,151,78,.18), transparent 34%),
    linear-gradient(160deg, #fff, #fff8f2);
  box-shadow: 0 26px 56px rgba(21,15,13,.20);
}

.concept-invite-showcase .concept-invite-phone__screen:before {
  width: 72px;
  height: 18px;
  top: -1px;
  border-radius: 0 0 14px 14px;
}

.concept-invite-showcase .concept-invite-phone__screen small {
  font-size: 10px;
  letter-spacing: 2.2px;
}

.concept-invite-showcase .concept-invite-phone__screen strong {
  margin: 18px 0 10px;
  font-size: 48px;
  line-height: .82;
}

.concept-invite-showcase .concept-invite-phone__screen span,
.concept-invite-showcase .concept-invite-phone__screen p,
.concept-invite-showcase .concept-invite-phone__screen em {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.concept-invite-showcase .concept-invite-phone__screen button {
  min-height: 44px;
  margin-top: 16px;
  padding: 0 18px;
  box-shadow: 0 14px 30px rgba(163,63,75,.22);
}

.concept-invite-showcase .concept-invite-copy {
  min-width: 0;
  gap: 24px;
  padding: 44px 42px;
  border: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(197,151,78,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,246,247,.9));
}

.concept-invite-showcase .concept-impact-banner__copy h2 {
  max-width: 610px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: .92;
}

.concept-invite-showcase .concept-invite-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.concept-invite-showcase .concept-invite-fields span {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas:
    "num label"
    "num value";
  align-items: center;
  justify-items: start;
  gap: 3px 12px;
  padding: 14px 16px;
  text-align: left;
  border-color: rgba(197,151,78,.28);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 32px rgba(43,28,18,.055);
}

.concept-invite-showcase .concept-invite-fields span:before {
  display: none;
}

.concept-invite-showcase .concept-invite-fields span i {
  grid-area: num;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197,151,78,.42);
  border-radius: 999px;
  color: #a33f4b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
}

.concept-invite-showcase .concept-invite-fields span b {
  grid-area: label;
  min-width: 0;
  color: #17110f;
  font-size: 14px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.concept-invite-showcase .concept-invite-fields span em {
  grid-area: value;
  min-width: 0;
  color: #7b6f68;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.concept-invite-showcase .concept-invite-fields span.is-active {
  transform: translateY(-3px);
  background: #fff3f5;
}

.concept-invite-showcase .concept-invite-fields span.is-active i {
  border-color: #a33f4b;
  background: #a33f4b;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(163,63,75,.10);
}

.concept-invite-showcase .concept-impact-result {
  min-width: 0;
  padding: 42px 30px;
  border-left-color: rgba(180,137,54,.22);
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,250,241,.96)),
    radial-gradient(circle at 50% 42%, rgba(197,151,78,.26), transparent 38%);
}

.concept-invite-showcase .concept-impact-result strong,
.concept-invite-showcase .concept-impact-result em {
  overflow-wrap: anywhere;
}

.concept-invite-showcase .concept-impact-result strong {
  font-size: clamp(42px, 3.3vw, 58px);
}

.concept-invite-showcase .concept-impact-result em {
  font-size: 29px;
}

@media (max-width: 1180px) {
  .concept-invite-showcase {
    grid-template-columns: minmax(320px, .9fr) minmax(410px, 1.1fr);
  }

  .concept-invite-showcase .concept-impact-result {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(180,137,54,.22);
  }

  .concept-invite-showcase .concept-impact-result em {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .concept-invite-showcase {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .concept-invite-showcase .concept-invite-phone {
    border-right: 0;
    border-bottom: 1px solid rgba(180,137,54,.22);
  }

  .concept-invite-showcase .concept-impact-result {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .concept-invite-showcase .concept-invite-phone {
    min-height: 360px;
    padding: 22px 18px;
  }

  .concept-invite-showcase .concept-invite-phone__screen {
    width: 210px;
    min-height: 312px;
  }

  .concept-invite-card {
    display: none;
  }

  .concept-invite-showcase .concept-invite-copy,
  .concept-invite-showcase .concept-impact-result {
    padding: 26px 18px;
  }

  .concept-invite-showcase .concept-impact-banner__copy h2 {
    font-size: 38px;
  }

  .concept-invite-showcase .concept-invite-fields {
    grid-template-columns: 1fr;
  }
}

/* Single article mobile containment */
body.single-post,
body.single-post .site-main,
body.single-post .single-layout,
body.single-post .single-layout > div,
body.single-post .single-content {
  max-width: 100%;
  overflow-x: hidden;
}

body.single-post .single-layout {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

body.single-post .entry-title {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

body.single-post .single-hero,
body.single-post .single-content img,
body.single-post .wp-post-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

body.single-post .single-content,
body.single-post .single-content p,
body.single-post .single-content li {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  body.single-post .site-main {
    padding-left: 0;
    padding-right: 0;
  }

  body.single-post .single-layout {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 14px 88px;
  }

  body.single-post .entry-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.04;
    margin: 18px 0 16px;
    letter-spacing: 0;
  }

  body.single-post .single-hero {
    width: calc(100% + 28px);
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  body.single-post .single-content {
    font-size: 16px;
    line-height: 1.65;
    padding-bottom: 24px;
  }

  body.single-post .single-content h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  body.single-post .single-content ul,
  body.single-post .single-content ol {
    padding-left: 22px;
  }

  body.single-post .sidebar-box {
    display: none;
  }
}

/* 404 */
.nt-404-page {
  padding-top: 72px;
  padding-bottom: 90px;
}

.nt-404-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .75fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(194, 153, 94, .32);
  background:
    radial-gradient(circle at 82% 18%, rgba(194, 153, 94, .18), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fff8f4 100%);
  padding: 42px;
  box-shadow: 0 24px 70px rgba(61, 36, 22, .08);
}

.nt-404-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--nt-burgundy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nt-404-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--nt-serif);
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}

.nt-404-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--nt-muted);
  font-size: 18px;
  line-height: 1.65;
}

.nt-404-search {
  max-width: 720px;
  margin-top: 28px;
}

.nt-404-search label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.nt-404-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(194, 153, 94, .45);
  background: #fff;
}

.nt-404-search input {
  min-width: 0;
  border: 0;
  padding: 16px 18px;
  font: inherit;
}

.nt-404-search button {
  border: 0;
  border-left: 1px solid rgba(194, 153, 94, .35);
  background: #a33f4b;
  color: #fff;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
  min-width: 92px;
  min-height: 56px;
}

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

.nt-404-page .nt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
}

.nt-404-page .nt-btn--primary {
  background: #a33f4b;
  color: #fff;
}

.nt-404-page .nt-btn--ghost {
  border: 1px solid rgba(194, 153, 94, .45);
  color: #a33f4b;
  background: #fff;
}

.nt-404-panel {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(194, 153, 94, .45);
  background:
    radial-gradient(circle at center, rgba(166, 63, 76, .12), transparent 42%),
    #16100d;
  color: #fff;
  text-align: center;
}

.nt-404-panel strong {
  font-family: var(--nt-serif);
  font-size: clamp(86px, 14vw, 148px);
  line-height: .8;
  color: #f2d28e;
}

.nt-404-panel span {
  max-width: 240px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.nt-404-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.nt-404-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  border: 1px solid rgba(194, 153, 94, .32);
  background: #fff;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nt-404-card:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 63, 76, .45);
  box-shadow: 0 16px 34px rgba(61, 36, 22, .08);
}

.nt-404-card span {
  font-family: var(--nt-serif);
  font-size: 28px;
  line-height: 1.05;
}

.nt-404-card p {
  margin: 14px 0 22px;
  color: var(--nt-muted);
  line-height: 1.5;
}

.nt-404-card em {
  margin-top: auto;
  color: var(--nt-burgundy);
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 900px) {
  .nt-404-page {
    padding: 28px 14px 96px;
  }

  .nt-404-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .nt-404-panel {
    min-height: 190px;
  }

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

@media (max-width: 560px) {
  .nt-404-hero {
    padding: 20px;
  }

  .nt-404-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .nt-404-hero p {
    font-size: 16px;
  }

  .nt-404-search div {
    grid-template-columns: 1fr;
  }

  .nt-404-search button {
    min-height: 46px;
    border-left: 0;
    border-top: 1px solid rgba(194, 153, 94, .35);
  }

  .nt-btn,
  .nt-404-actions a {
    width: 100%;
  }

  .nt-404-links {
    grid-template-columns: 1fr;
  }

  .nt-404-card {
    min-height: 150px;
  }
}
