/* ============================================================
   Tailoringly — Shared Stylesheet
   Colors: #3D4F66 (slate blue), #F5F2EC (cream), #1A1A1A (dark text)
   Fonts: Instrument Serif (headings), DM Sans (body)
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #F5F2EC;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Instrument Serif', serif;
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D4F66;
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Colours ---------------------------------------------- */
.bg-slate   { background: #3D4F66; color: #F5F2EC; }
.bg-cream   { background: #F5F2EC; }
.bg-offwhite{ background: #EDE9E2; }
.text-slate { color: #3D4F66; }

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

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }
section.section--sm { padding: 3rem 0; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  background: #3D4F66;
  color: #F5F2EC;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: #4F6580; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 2px solid #3D4F66;
  color: #3D4F66;
}
.btn--outline:hover { background: #3D4F66; color: #F5F2EC; }
.btn--light {
  background: #F5F2EC;
  color: #3D4F66;
}
.btn--light:hover { background: #e8e4db; }

/* --- Nav -------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F5F2EC;
  border-bottom: 1px solid rgba(61,79,102,0.12);
  padding: 0;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  transition: color 0.15s;
}
.site-nav__links a:hover { color: #3D4F66; }
.site-nav__links a.active { color: #3D4F66; }

.site-nav__cta { margin-left: 1rem; }

/* Hamburger */
.site-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.site-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: all 0.25s;
}
.site-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.site-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav__mobile {
  display: none;
  flex-direction: column;
  background: #F5F2EC;
  border-top: 1px solid rgba(61,79,102,0.12);
  padding: 1.5rem 2rem;
  gap: 1rem;
}
.site-nav__mobile.open { display: flex; }
.site-nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(61,79,102,0.08);
}
.site-nav__mobile .btn { margin-top: 0.5rem; text-align: center; }

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: #3D4F66;
  color: #F5F2EC;
  padding: 4rem 0 2.5rem;
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.site-footer__brand {
  max-width: 320px;
}

.site-footer__logo {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.site-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__tagline {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.75);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245,242,236,0.3);
  color: #F5F2EC;
  transition: border-color 0.2s, background 0.2s;
}
.site-footer__social a:hover { border-color: #F5F2EC; background: rgba(245,242,236,0.1); }
.site-footer__social svg { width: 18px; height: 18px; }

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer__nav a {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.75);
  transition: color 0.15s;
}
.site-footer__nav a:hover { color: #F5F2EC; }

.site-footer__bottom {
  border-top: 1px solid rgba(245,242,236,0.15);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(245,242,236,0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}

/* --- Hero (page hero) ------------------------------------- */
.page-hero {
  background: #3D4F66;
  color: #F5F2EC;
  padding: 5rem 0 4.5rem;
}

.page-hero .eyebrow { color: rgba(245,242,236,0.65); }
.page-hero h1 { color: #F5F2EC; max-width: 700px; }
.page-hero p  { color: rgba(245,242,236,0.8); max-width: 600px; margin-top: 1.2rem; font-size: 1.1rem; }

/* --- Homepage Hero ---------------------------------------- */
.home-hero {
  background: #3D4F66;
  color: #F5F2EC;
  padding: 7rem 0 6rem;
  text-align: center;
}

.home-hero h1 {
  color: #F5F2EC;
  max-width: 840px;
  margin: 0 auto 1.5rem;
}

.home-hero p {
  color: rgba(245,242,236,0.8);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* --- Hero photo strip (homepage, between hero and Who We Are) --- */
.hero-strip {
  background: #F5F2EC;
  padding: 3rem 0 0;
}
.hero-strip__grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hero-strip__grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

/* --- Cards ------------------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(61,79,102,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: #3D4F66; transform: translateY(-3px); }

.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(61,79,102,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card__icon svg { width: 22px; height: 22px; color: #3D4F66; }

.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p  { font-size: 0.95rem; color: #444; margin-bottom: 1.2rem; }
.card a  { font-size: 0.9rem; font-weight: 600; color: #3D4F66; }
.card a:hover { text-decoration: underline; }

/* --- Steps ------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}

.step {
  border-left: 3px solid #3D4F66;
  padding-left: 1.5rem;
}

.step__num {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: rgba(61,79,102,0.25);
  display: block;
  margin-bottom: 0.5rem;
}

.step h4 { margin-bottom: 0.5rem; }
.step p  { font-size: 0.95rem; color: #444; }

/* --- Blocks (Why section) --------------------------------- */
.blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.block {
  padding: 2rem;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  border: 1px solid rgba(61,79,102,0.1);
}
.block h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.block p  { font-size: 0.95rem; color: #444; }

/* --- FAQ Accordion ---------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(61,79,102,0.15);
}

.faq-item:first-child { border-top: 1px solid rgba(61,79,102,0.15); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: #3D4F66; }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #3D4F66;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 1.4rem;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* --- CTA Band --------------------------------------------- */
.cta-band {
  background: #3D4F66;
  color: #F5F2EC;
  padding: 5rem 0;
}
.cta-band .cta-band__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-band__text { text-align: left; }
.cta-band h2 { color: #F5F2EC; margin-bottom: 1rem; }
.cta-band p  { color: rgba(245,242,236,0.85); max-width: 560px; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.cta-band__collage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

/* --- Section intro ---------------------------------------- */
.section-intro {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p  { color: #444; font-size: 1.05rem; }
.section-intro.left { text-align: left; margin-left: 0; }

/* --- Bullets (service pages) ------------------------------ */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.bullet-item {
  padding-left: 1.5rem;
  border-left: 3px solid #3D4F66;
}
.bullet-item strong { display: block; margin-bottom: 0.3rem; }
.bullet-item p { color: #444; font-size: 0.97rem; margin: 0; }

/* --- Numbered steps (service pages) ----------------------- */
.numbered-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: nstep;
  max-width: 680px;
}

.numbered-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(61,79,102,0.1);
  counter-increment: nstep;
}
.numbered-step:last-child { border-bottom: none; }

.numbered-step__num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: rgba(61,79,102,0.25);
  flex-shrink: 0;
  width: 42px;
  line-height: 1;
  padding-top: 0.2rem;
}

.numbered-step__content h4 { margin-bottom: 0.3rem; }
.numbered-step__content p  { color: #444; font-size: 0.97rem; margin: 0; }

/* --- Optional add-ons ------------------------------------- */
.addons {
  background: rgba(61,79,102,0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}
.addons h4 { margin-bottom: 1rem; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.addons ul { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.addons ul li {
  background: #F5F2EC;
  border: 1px solid rgba(61,79,102,0.15);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.87rem;
  color: #3D4F66;
  font-weight: 500;
}

/* --- Image placeholder ------------------------------------ */
.img-placeholder {
  background: rgba(61,79,102,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(61,79,102,0.45);
  font-style: italic;
  text-align: center;
  padding: 2rem;
  width: 100%;
}

/* --- Service hero with image ------------------------------ */
.service-hero {
  position: relative;
  background: #3D4F66;
  color: #F5F2EC;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.service-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-hero__nav {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.6);
  margin-bottom: 2rem;
}
.service-hero__nav a { color: rgba(245,242,236,0.6); transition: color 0.15s; }
.service-hero__nav a:hover { color: #F5F2EC; }

.service-hero__next {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 2rem;
  font-size: 0.85rem;
  color: rgba(245,242,236,0.6);
  transition: color 0.15s;
}
.service-hero__next:hover { color: #F5F2EC; }

/* --- Blog ------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(61,79,102,0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: #3D4F66; transform: translateY(-3px); }

.blog-card__img {
  height: 200px;
  background: rgba(61,79,102,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(61,79,102,0.35);
  font-style: italic;
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3D4F66;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.92rem;
  color: #555;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
}

.blog-card__meta a { font-weight: 600; color: #3D4F66; }
.blog-card__meta a:hover { text-decoration: underline; }

/* --- Blog post page --------------------------------------- */
.post-header {
  background: #3D4F66;
  color: #F5F2EC;
  padding: 5rem 0 4rem;
}
.post-header .eyebrow { color: rgba(245,242,236,0.6); }
.post-header h1 { color: #F5F2EC; max-width: 720px; }
.post-header__meta {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(245,242,236,0.6);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-body {
  padding: 4rem 0;
}

.post-body .container--narrow p { margin-bottom: 1.4em; }
.post-body .container--narrow h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-body .container--narrow h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}

.post-body .container--narrow ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.4em;
}
.post-body .container--narrow ul li { margin-bottom: 0.5rem; }

.post-img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  object-fit: cover;
  background: rgba(61,79,102,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: rgba(61,79,102,0.4);
  font-size: 0.85rem;
}

.key-takeaways {
  background: rgba(61,79,102,0.06);
  border-left: 4px solid #3D4F66;
  border-radius: 0 12px 12px 0;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
}
.key-takeaways h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3D4F66;
  margin-bottom: 1rem;
}
.key-takeaways ul { list-style: disc; padding-left: 1.5rem; }
.key-takeaways ul li { font-size: 0.97rem; margin-bottom: 0.5rem; }

.post-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(61,79,102,0.12);
}
.post-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(61,79,102,0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: #3D4F66;
}
.post-author__info strong { display: block; font-size: 0.95rem; }
.post-author__info span { font-size: 0.85rem; color: #666; }

/* --- Contact form ----------------------------------------- */
.contact-form {
  background: #fff;
  border: 1px solid rgba(61,79,102,0.1);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(61,79,102,0.2);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: #1A1A1A;
  background: #F5F2EC;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3D4F66;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h3 { margin-bottom: 0.5rem; }

/* --- About photo ------------------------------------------ */
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(61,79,102,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Two-col layout --------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col--tight { gap: 2rem; }

/* --- 404 page --------------------------------------------- */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}
.page-404 h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-404 p  { color: #555; max-width: 480px; margin-bottom: 2rem; }
.page-404__btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* --- Divider ---------------------------------------------- */
.divider {
  border: none;
  border-top: 1px solid rgba(61,79,102,0.1);
  margin: 0;
}

/* --- Utility ---------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-band .cta-band__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-band__text { text-align: center; }
  .cta-band p { margin-left: auto; margin-right: auto; }
  .hero-strip__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .site-nav__links, .site-nav__cta { display: none; }
  .site-nav__hamburger { display: flex; }

  .home-hero { padding: 5rem 0 4rem; }

  .hero-strip { padding: 2rem 0 0; }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blocks {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__top { flex-direction: column; }
  .site-footer__bottom { flex-direction: column; gap: 0.3rem; }

  .contact-form { padding: 1.5rem; }

  .post-img { height: 220px; }
}

@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 1.2rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
