/* ============================================================
   CHARLES'S MARQUES — Main Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --cream:       #F2EDE4;
  --cream-dark:  #E6DFD3;
  --steel:       #4A6480;
  --steel-dark:  #3A5270;
  --sage:        #7AADA0;
  --sage-dark:   #6A9D90;
  --charcoal:    #2C2C2C;
  --mid:         #6B6B6B;
  --light-grey:  #C5C5C8;
  --white:       #FFFFFF;
  --dark:        #1E1E1E;
  --header-h:    76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { color: var(--steel); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sage); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); }
h4 { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section    { padding: 5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); color: #fff; }
.btn-outline { border: 1.5px solid var(--steel); color: var(--steel); background: transparent; }
.btn-outline:hover { background: var(--steel); color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #1a1a1a; color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(242, 237, 228, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 197, 200, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.02em;
}

nav ul { display: flex; gap: 0.25rem; align-items: center; }
nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.4rem 0.75rem;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--steel); }
nav a.nav-cta {
  background: var(--sage);
  color: #fff;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
}
nav a.nav-cta:hover { background: var(--sage-dark); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); transition: all 0.3s; }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.mobile-nav a:hover { color: var(--steel); }
.mobile-nav .btn { font-size: 0.85rem; padding: 0.9rem 2.5rem; margin-top: 0.5rem; }
.mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  background: none; border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
}

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  padding: calc(var(--header-h) + 5rem) 0 6rem;
  background: var(--cream);
}
.hero-inner { max-width: 740px; }
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--steel); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO — Interior pages
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.page-hero .section-label { margin-bottom: 0.6rem; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .page-intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.section-heading { margin-bottom: 1rem; }
.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 620px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-section { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  margin-top: 3rem;
  border: 1.5px solid var(--cream-dark);
}
.pain-card {
  padding: 2rem 1.75rem;
  background: var(--white);
}
.pain-card h4 {
  color: var(--steel);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.pain-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.65; margin: 0; }

/* ============================================================
   PROCESS — Home (3-step teaser)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.process-step { position: relative; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.process-step p { font-size: 0.88rem; color: var(--mid); }

/* ============================================================
   SOLD GRID
   ============================================================ */
.sold-section { background: var(--charcoal); }
.sold-section .section-label { color: var(--sage); }
.sold-section .section-heading { color: var(--white); }
.sold-section .section-intro { color: rgba(255,255,255,0.5); }

.sold-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.sold-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sold-item:nth-child(5n) { border-right: none; }
.sold-item .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.sold-item .item-name {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.sold-item .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--sage);
}
.sold-footnote {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-top: 2rem;
  text-align: right;
  font-style: italic;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--steel); padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { height: 44px; opacity: 0.75; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.65; }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-col a:hover { color: var(--sage); }
.footer-contact { font-size: 0.83rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.4); }
.footer-contact a { color: rgba(255,255,255,0.4); }
.footer-contact a:hover { color: var(--sage); }
.footer-area { font-size: 0.8rem; color: rgba(255,255,255,0.25); margin-top: 1rem; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   HOW IT WORKS — Detailed steps
   ============================================================ */
.steps-section { background: var(--white); }
.step-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.step-row:last-child { border-bottom: none; }
.step-num-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--cream-dark);
  line-height: 1;
}
.step-content h3 { margin-bottom: 0.6rem; color: var(--steel); }
.step-content > p { font-size: 0.92rem; color: var(--mid); margin-bottom: 0.75rem; }
.step-note {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--sage);
  font-size: 0.85rem;
  color: var(--steel);
  font-style: italic;
}

/* ============================================================
   WHAT WE SELL — Category cards
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  margin-top: 3rem;
  border: 1.5px solid var(--cream-dark);
}
.category-card { background: var(--white); padding: 2rem 1.75rem; }
.category-card h3 {
  font-size: 1.25rem;
  color: var(--steel);
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-dark);
}
.category-card p { font-size: 0.87rem; color: var(--mid); margin-bottom: 0.4rem; line-height: 1.6; }
.price-note {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--sage);
  margin-top: 0.75rem;
}

.not-take-box {
  background: var(--white);
  border-left: 3px solid var(--light-grey);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}
.not-take-box h4 { color: var(--mid); margin-bottom: 0.5rem; }
.not-take-box p { font-size: 0.87rem; color: var(--mid); margin: 0; }

.brand-note {
  background: var(--cream);
  padding: 2rem;
  margin-top: 3rem;
  border-left: 3px solid var(--steel);
}
.brand-note p { font-size: 0.9rem; color: var(--charcoal); margin: 0; }
.brand-note strong { color: var(--steel); }

/* ============================================================
   FEES
   ============================================================ */
.fees-block {
  background: var(--white);
  padding: 2.5rem;
  margin-top: 3rem;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 1rem;
}
.fee-row:last-child { border-bottom: none; }
.fee-label { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--charcoal); }
.fee-label small { display: block; font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--mid); margin-top: 0.2rem; font-weight: 400; }
.fee-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--steel); font-weight: 600; white-space: nowrap; }
.fee-value.nil { color: var(--sage); }

.worked-example { background: var(--charcoal); padding: 2.5rem; margin-top: 3rem; }
.worked-example h3 { color: var(--white); margin-bottom: 1.5rem; }
.example-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.example-row span:first-child { color: rgba(255,255,255,0.5); }
.example-row span:last-child { color: var(--white); }
.example-row.total {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 0.25rem;
  padding-top: 1rem;
  font-size: 1rem;
}
.example-row.total span:last-child { color: var(--sage); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  margin-top: 3rem;
  border: 1.5px solid var(--cream-dark);
}
.included-item {
  background: var(--white);
  padding: 1.5rem 1.5rem;
  font-size: 0.87rem;
  color: var(--mid);
}
.included-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: 0.25rem; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-group { margin-bottom: 3rem; }
.faq-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sage);
}
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  user-select: none;
}
.faq-question:hover { color: var(--steel); }
.faq-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1.5px solid var(--light-grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--sage);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--sage); }
.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 720px;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FIND & BUY
   ============================================================ */
.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  margin-top: 3rem;
  border: 1.5px solid var(--cream-dark);
}
.find-card { background: var(--white); padding: 2rem 1.75rem; }
.find-card h3 { font-size: 1.2rem; color: var(--steel); margin-bottom: 0.6rem; }
.find-card p { font-size: 0.87rem; color: var(--mid); line-height: 1.65; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.about-body p { font-size: 0.95rem; color: var(--mid); margin-bottom: 1.25rem; line-height: 1.8; }
.about-body p strong { color: var(--charcoal); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--cream-dark);
  margin-top: 2.5rem;
  border: 1.5px solid var(--cream-dark);
}
.stat-box { background: var(--cream); padding: 1.5rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--steel);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-lbl { font-size: 0.77rem; color: var(--mid); letter-spacing: 0.04em; }

.about-sidebar {}
.photo-placeholder {
  background: var(--cream-dark);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-dark);
}
.value-card { background: var(--white); padding: 2rem 1.75rem; }
.value-card h4 { color: var(--steel); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.87rem; color: var(--mid); line-height: 1.65; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  margin-top: 3rem;
}
.contact-detail { margin-bottom: 2rem; }
.contact-detail .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.contact-detail a, .contact-detail span { font-size: 1rem; color: var(--charcoal); }
.contact-detail a:hover { color: var(--steel); }

.contact-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--steel); }
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form .form-note {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.75rem;
  font-style: italic;
}

.coverage-box {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-dark    { background: var(--charcoal); }
.bg-steel   { background: var(--steel); }
.text-sage  { color: var(--sage); }
.text-steel { color: var(--steel); }
.text-mid   { color: var(--mid); }
.text-white { color: var(--white); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — Tablet (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  nav ul { display: none; }
  .hamburger { display: flex; }

  .pain-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .sold-grid       { grid-template-columns: repeat(2, 1fr); }
  .sold-item:nth-child(5n)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .sold-item:nth-child(2n)  { border-right: none; }
  .category-grid   { grid-template-columns: repeat(2, 1fr); }
  .included-grid   { grid-template-columns: repeat(2, 1fr); }
  .find-grid       { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar   { display: none; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .pain-grid       { grid-template-columns: 1fr; }
  .category-grid   { grid-template-columns: 1fr; }
  .included-grid   { grid-template-columns: 1fr; }
  .find-grid       { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .about-stats     { grid-template-columns: 1fr 1fr; }
  .sold-grid       { grid-template-columns: repeat(2, 1fr); }
  .step-row        { grid-template-columns: 52px 1fr; gap: 1rem; }
  .step-num-lg     { font-size: 3rem; }
  .footer-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .fees-block      { padding: 1.5rem; }
  .worked-example  { padding: 1.5rem; }
}
