/* EVOLVE by Jenny — grounded luxury, palette from her brand boards
   Forest Green + Warm Sand + Cream + Soft Sage
   Fonts: Cormorant Garamond (display), Montserrat (kickers), Inter (body) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --bg: #F5F0E8;          /* cream */
  --bg-alt: #E5EBE0;       /* sage-tinted cream */
  --bg-card: #FFFFFF;
  --bg-deep: #D7E2D5;      /* deeper sage cream */

  --forest: #234D3C;
  --forest-dark: #15301F;
  --forest-bright: #2E6048;
  --forest-deep: #0E2418;

  --sand: #D4C4B0;
  --sand-light: #E6DBC9;
  --sand-deep: #B8A689;

  --sage: #A8B3A0;
  --sage-mid: #87967E;
  --sage-deep: #5E6F56;
  --sage-tint: #BDC8B5;

  --ink: #2A2A2A;
  --ink-soft: #4A4842;
  --ink-muted: #6B6B66;
  --line: rgba(35, 77, 60, 0.12);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --pad-section: clamp(80px, 10vw, 160px);
  --pad-wrap: clamp(20px, 4vw, 48px);
  --max: 1240px;
  --max-narrow: 780px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .24s ease, color .24s ease; }
a:hover { opacity: 0.72; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--forest);
  line-height: 1.08;
}
h1 .accent, h2 .accent, h3 .accent {
  font-style: italic;
  color: var(--forest-bright);
}
h1 { font-size: clamp(44px, 7vw, 104px); line-height: 1.02; }
h2 { font-size: clamp(34px, 4.2vw, 64px); margin-bottom: 16px; }
h3 { font-size: clamp(22px, 2.2vw, 32px); margin-bottom: 12px; }
p { color: var(--ink); font-size: clamp(16px, 1.1vw, 18px); }
p + p { margin-top: 14px; }
ul { color: var(--ink); padding-left: 22px; }
ul li { margin: 8px 0; }

.lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}
.sec-head p { color: var(--ink-soft); font-size: clamp(17px, 1.2vw, 19px); }

.kicker, .sec-kicker, .hero-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest);
}
.kicker { margin-bottom: 28px; display: inline-flex; align-items: center; gap: 12px; }
.kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--forest);
  display: inline-block;
}
.sec-kicker { margin-bottom: 20px; text-align: center; }
.hero-kicker { margin-bottom: 32px; color: var(--forest-bright); }

/* ── Layout ───────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-wrap); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--pad-wrap); }
section { padding: var(--pad-section) 0; }
section.alt { background: var(--bg-alt); }
section.dark { background: var(--forest); color: var(--bg); }
section.dark h2, section.dark h3 { color: var(--sand); }
section.dark h2 .accent, section.dark h3 .accent { color: var(--sand-light); }
section.dark p { color: rgba(245, 240, 232, 0.88); }
section.dark .sec-kicker { color: var(--sand); }
section.dark ul li { color: rgba(245, 240, 232, 0.88); }

.sec-head { text-align: center; max-width: 780px; margin: 0 auto 72px; }
.sec-head h2 { margin-bottom: 24px; }

.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ── Navigation ───────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad-wrap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-weight: 500;
}
.nav-logo .nl-main {
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--forest);
  line-height: 1;
}
.nav-logo .nl-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--forest);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--forest); opacity: 1; }
.nav-links a.active { color: var(--forest); }

.nav-cta {
  background: var(--forest);
  color: var(--bg) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  transition: background .2s;
}
.nav-cta:hover { background: var(--forest-dark); opacity: 1; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--forest);
  color: var(--bg);
  padding: 17px 38px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--forest);
  cursor: pointer;
  transition: transform .15s, background .2s;
}
.btn:hover { background: var(--forest-dark); transform: translateY(-2px); color: var(--bg); opacity: 1; }
.btn.ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn.ghost:hover { background: var(--forest); color: var(--bg); }
.btn.sand {
  background: var(--sand);
  color: var(--forest);
  border-color: var(--sand);
}
.btn.sand:hover { background: var(--sand-deep); color: var(--forest); }

/* ── Hero ───────────────────────────────── */
.hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 140px);
  background:
    radial-gradient(ellipse at top right, rgba(35, 77, 60, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(168, 179, 160, 0.45), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: saturate(0.85) brightness(0.85) sepia(0.05);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(35, 77, 60, 0.45), rgba(35, 77, 60, 0.7) 70%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.0) 0%, var(--bg-deep) 100%);
  z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; }
.hero.has-video h1, .hero.has-video .hero-mark, .hero.has-video .hero-mark .sub, .hero.has-video .hero-kicker { color: var(--bg); }
.hero.has-video .lead { color: var(--sand-light); }
.hero.has-video .hero-foot { color: var(--sand); }
.hero.has-video .btn { background: var(--sand); color: var(--forest); border-color: var(--sand); }
.hero.has-video .btn:hover { background: var(--sand-light); }
.hero.has-video .btn.ghost { background: transparent; color: var(--sand); border-color: var(--sand); }
.hero.has-video .btn.ghost:hover { background: var(--sand); color: var(--forest); }
.hero-mark {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--forest);
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 8px;
}
.hero-mark .sub {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
  font-weight: 600;
}
.hero h1 { margin: 32px auto 32px; max-width: 12ch; }
.hero .lead { max-width: 640px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-foot { margin-top: 32px; font-size: 12px; letter-spacing: 0.1em; color: var(--ink-muted); }

/* ── Page hero (for vertical/about pages) ───── */
.page-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 24px; max-width: 16ch; margin-left: auto; margin-right: auto; }
.page-hero .lead { max-width: 720px; margin: 0 auto 32px; }

/* ── Verticals grid ───────────────────────── */
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vcard {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.vcard:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: 0 30px 60px -30px rgba(35, 77, 60, 0.25);
  opacity: 1;
}
.vcard-icon {
  color: var(--forest);
  margin-bottom: 18px;
  width: 44px;
  height: 44px;
  background: var(--sand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcard h3 { margin-bottom: 10px; }
.vcard p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.vcard .more {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}

/* ── Method (3-step) ───────────────────────── */
.mgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mstep {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
}
.mstep h3 { margin-bottom: 12px; }
.mstep p { color: var(--ink-soft); font-size: 16px; }

/* ── Pillars / fblocks ─────────────────────── */
.fblocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fblock {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
}
section.dark .fblock {
  background: rgba(245, 240, 232, 0.05);
  border-color: rgba(212, 196, 176, 0.2);
}
.fblock .num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--forest-bright);
  margin-bottom: 14px;
}
section.dark .fblock .num { color: var(--sand); }
.fblock h3 { margin-bottom: 10px; font-size: 22px; }
.fblock p { font-size: 15px; color: var(--ink-soft); }
section.dark .fblock p { color: rgba(245, 240, 232, 0.85); }

/* ── Copy-long (article-style) ─────────────── */
.copy-long { max-width: 760px; margin: 0 auto; }
.copy-long h3 {
  margin-top: 36px;
  font-size: clamp(20px, 2vw, 26px);
}
.copy-long p { font-size: 17px; line-height: 1.8; }
.copy-long strong { color: var(--forest); font-weight: 600; }

/* ── FAQ ───────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--forest);
  font-size: 26px;
  font-weight: 300;
  margin-left: 16px;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }

/* ── CTA band ─────────────────────────────── */
.ctaband {
  background: var(--forest);
  color: var(--bg);
  padding: clamp(80px, 8vw, 120px) 0;
  text-align: center;
}
.ctaband h2 { color: var(--sand); margin-bottom: 16px; }
.ctaband h2 .accent { color: var(--sand-light); }
.ctaband p { color: rgba(245, 240, 232, 0.88); max-width: 580px; margin: 0 auto 32px; }
.ctaband .btn { background: var(--sand); color: var(--forest); border-color: var(--sand); }
.ctaband .btn:hover { background: var(--sand-light); color: var(--forest); }

/* ── Footer ───────────────────────────────── */
footer {
  background: var(--forest-dark);
  color: rgba(245, 240, 232, 0.78);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-logo .nl-main {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--sand);
  display: block;
}
.foot-logo .nl-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-top: 6px;
  display: block;
}
.foot-logo p {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; padding: 0; }
.foot-col li { margin: 8px 0; }
.foot-col a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 14px;
}
.foot-col a:hover { color: var(--sand); opacity: 1; }
.foot-bottom {
  border-top: 1px solid rgba(212, 196, 176, 0.16);
  padding-top: 28px;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* ── Mood grid (homepage) ─────────────────── */
.mood { background: var(--bg-deep); padding: clamp(64px, 8vw, 120px) 0; }
.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-wrap);
}
.mood-grid img {
  border-radius: 12px;
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(35, 77, 60, 0.35);
}

/* ── Video gallery ───────────────────────── */
.video-section { background: var(--forest); color: var(--bg); padding: clamp(80px, 10vw, 140px) 0; }
.video-section .sec-kicker { color: var(--sand); }
.video-section h2 { color: var(--sand); }
.video-section h2 .accent { color: var(--sand-light); }
.video-section .sec-head p { color: rgba(245, 240, 232, 0.78); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-wrap);
}
.video-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--forest-deep);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-tile-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* ── Inline image rows for verticals/about ─ */
.image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
  border-radius: 14px;
  overflow: hidden;
}
.image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  aspect-ratio: 3/2;
  box-shadow: 0 30px 60px -30px rgba(35, 77, 60, 0.25);
}
.image-stack img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 30px 60px -30px rgba(35, 77, 60, 0.25);
}

/* ── Vcard with image hero ─────────────── */
.vcard.with-image { padding: 0; overflow: hidden; }
.vcard.with-image .vcard-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.vcard.with-image .vcard-body { padding: 28px 28px 32px; }

/* ── About photo frame ────────────────────── */
.photo-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(35, 77, 60, 0.3);
  aspect-ratio: 4/5;
  background: var(--sand);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--forest);
  margin-top: 24px;
}

/* ── Assessment form ───────────────────────── */
.assessment-page { background: var(--bg); min-height: 100vh; padding: 32px 0 96px; }
.assessment-head { text-align: center; max-width: 720px; margin: 24px auto 40px; padding: 0 var(--pad-wrap); }
.assessment-head h1 { font-size: clamp(36px, 5vw, 60px); margin: 16px 0 20px; }
.assessment-head p { font-size: 17px; color: var(--ink-soft); }

.lang-toggle {
  display: inline-flex;
  background: var(--bg-card);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--sand);
  margin-top: 28px;
}
.lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  color: var(--ink-muted);
  transition: all .2s;
}
.lang-btn.active { background: var(--forest); color: var(--bg); }

.assessment-form { max-width: 760px; margin: 0 auto; padding: 0 var(--pad-wrap); }
.form-section {
  background: var(--bg-card);
  padding: 40px;
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px -8px rgba(35, 77, 60, 0.06);
}
.form-section-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-alt);
}
.form-group { margin-bottom: 22px; }
.form-group:last-child { margin-bottom: 0; }
label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 10px;
  text-transform: uppercase;
}
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color .2s, background .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--forest); background: var(--bg-card); }
textarea { resize: vertical; min-height: 100px; }
.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group label, .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid transparent;
  margin: 0;
  transition: all .2s;
}
.radio-group label:hover, .checkbox-group label:hover {
  border-color: var(--sage);
  background: var(--bg-alt);
}
.radio-group input, .checkbox-group input { accent-color: var(--forest); width: 18px; height: 18px; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { text-align: center; margin-top: 16px; }

/* ── Mobile ─────────────────────────────── */
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    transition: max-height .3s;
  }
  .nav-links.open { max-height: 80vh; padding: 16px 0; }
  .nav-links a {
    padding: 14px var(--pad-wrap);
    width: 100%;
  }
  .nav-links .nav-cta {
    margin: 12px var(--pad-wrap) 8px;
    width: calc(100% - var(--pad-wrap) * 2);
    text-align: center;
  }
  .twocol { grid-template-columns: 1fr; gap: 48px; }
  .vgrid, .mgrid, .fblocks { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: 1fr; }
  .two-fields { grid-template-columns: 1fr; }
  .form-section { padding: 28px 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}
