/* ============================================================
   HOUSE & STORY — Global Design System
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Colors */
  --cream:      #F5F0E8;
  --beige:      #EDE5D5;
  --taupe:      #C5B49A;
  --brown:      #8B7355;
  --charcoal:   #2C2C2C;
  --warm-gray:  #7A7068;
  --dark:       #1E1C1A;
  --white:      #FDFAF5;

  /* Typography */
  --font-heading: 'Marcellus', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-pad:  100px;
  --section-pad-sm: 60px;
  --max-width:    1200px;
  --text-width:   640px;

  /* Transitions */
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   Typography Scale
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; }

p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: var(--text-width);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 16px;
}

.caption {
  font-size: 0.82rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--beige {
  background-color: var(--beige);
}

.section--dark {
  background-color: var(--dark);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--cream);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.narrow {
  max-width: var(--text-width);
  margin-left: auto;
  margin-right: auto;
}

.narrow--left {
  max-width: var(--text-width);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(8px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--beige);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--brown);
}

.nav__links .nav__cta {
  border: 1px solid var(--charcoal);
  padding: 8px 20px;
  transition: background var(--transition), color var(--transition);
}

.nav__links .nav__cta:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--charcoal);
  transition: color var(--transition);
}

.nav__mobile a:hover {
  color: var(--brown);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  cursor: pointer;
  border: none;
}

/* Primary pill — dark fill */
.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  opacity: 0.82;
}

/* Light pill — cream fill (for use on dark backgrounds) */
.btn--light {
  background: var(--white);
  color: var(--dark);
}

.btn--light:hover {
  opacity: 0.88;
}

/* Outlined pill */
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: 100px;
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Text link with underline */
.text-link {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.text-link:hover {
  border-color: var(--charcoal);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 25, 22, 0.5) 0%, rgba(28, 25, 22, 0.15) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
  padding-left: 80px;
  padding-right: 80px;
  max-width: 860px;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__content .tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(253, 250, 245, 0.85);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

/* Page hero (shorter, for inner pages) */
.hero--page {
  height: 70vh;
  min-height: 460px;
}

.hero--page .hero__content {
  padding-bottom: 80px;
}

/* ============================================================
   Divider
   ============================================================ */
.divider {
  width: 48px;
  height: 1px;
  background: var(--taupe);
  margin: 28px 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Services Trio (Homepage)
   ============================================================ */
.services-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.service-card__image {
  height: 360px;
  overflow: hidden;
  margin-bottom: 28px;
}

.service-card__image img {
  height: 100%;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.03);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
  max-width: 100%;
}

/* ============================================================
   Brand Moment (Quote)
   ============================================================ */
.brand-moment {
  text-align: center;
  padding: 120px 48px;
}

.brand-moment blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto;
}

.brand-moment cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-style: normal;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  text-align: center;
  padding: var(--section-pad) 48px;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin: 0 auto 36px;
  color: var(--warm-gray);
}

/* ============================================================
   Split Section (text + image)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  height: 520px;
  overflow: hidden;
}

.split__image img {
  height: 100%;
}

.split__text {
  max-width: 480px;
}

.split__text h2 {
  margin-bottom: 20px;
}

.split__text p {
  margin-bottom: 24px;
  max-width: 100%;
}

/* ============================================================
   Service Offerings (Staging page)
   ============================================================ */
.offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.offering {
  background: var(--white);
  padding: 48px 44px;
  border-left: 2px solid var(--beige);
  transition: border-color var(--transition);
}

.offering:hover {
  border-left-color: var(--taupe);
}

.offering h4 {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.offering p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  max-width: 100%;
  line-height: 1.7;
}

.offering ul {
  margin-top: 16px;
}

.offering ul li {
  font-size: 0.88rem;
  color: var(--warm-gray);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.offering ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--taupe);
}

/* ============================================================
   Testimonial
   ============================================================ */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.testimonial cite {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-style: normal;
}

/* ============================================================
   Inquiry Form
   ============================================================ */
.inquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.inquiry__text h2 {
  margin-bottom: 16px;
}

.inquiry__text p {
  color: var(--warm-gray);
  max-width: 100%;
  font-size: 0.95rem;
  line-height: 1.8;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--taupe);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--charcoal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--taupe);
  font-size: 0.9rem;
}

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

.form-group select {
  cursor: pointer;
  color: var(--charcoal);
}

.form-group select option {
  color: var(--charcoal);
  background: var(--cream);
}

.form__submit {
  margin-top: 12px;
  align-self: flex-start;
}

/* Checkbox groups */
.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--taupe);
  border-radius: 3px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}

.form-check input[type="checkbox"]:checked {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 1.5px solid var(--cream);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

@media (max-width: 480px) {
  .form-checks { gap: 8px; }
}

/* ============================================================
   Portfolio Projects
   ============================================================ */
.project {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--beige);
}

.project:first-child {
  border-top: none;
}

.project__header {
  margin-bottom: 48px;
}

.project__header h2 {
  margin-bottom: 8px;
}

.project__location {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
  display: block;
}

.project__header p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 520px;
}

.project__images {
  display: grid;
  gap: 4px;
}

.project__images--2col {
  grid-template-columns: 1fr 1fr;
}

.project__images--3col {
  grid-template-columns: 2fr 1fr;
}

.project__images--3col .project__image:first-child {
  grid-row: span 2;
}

.project__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project__image--tall {
  aspect-ratio: 3/4;
}

.project__image--wide {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

.project__image img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.project__image:hover img {
  transform: scale(1.02);
}

/* ============================================================
   How We Work (Process steps)
   ============================================================ */
.how-we-work__heading {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  margin-bottom: 16px;
  display: block;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 100%;
}

/* Two-column CTA */
.cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-two-col__headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.25;
  text-align: center;
}

.cta-two-col__right p {
  max-width: 100%;
  color: var(--warm-gray);
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .cta-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .cta-two-col__right p { margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   About page
   ============================================================ */
.about-intro {
  max-width: 760px;
}

.about-intro h1 {
  margin-bottom: 24px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.philosophy-item h4 {
  margin-bottom: 12px;
}

.philosophy-item p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  max-width: 100%;
}

.founder-note {
  max-width: 620px;
}

.founder-note p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--warm-gray);
  max-width: 100%;
}

.founder-note p + p {
  margin-top: 20px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 72px 0 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--taupe);
  max-width: 100%;
  line-height: 1.7;
}

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  margin-bottom: 20px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav ul a {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer__nav ul a:hover {
  opacity: 1;
}

.footer__contact p,
.footer__contact a {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.7;
  max-width: 100%;
}

.footer__contact a:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(197, 180, 154, 0.2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: var(--taupe);
  opacity: 0.7;
  max-width: 100%;
}

/* ============================================================
   Placeholder (before real images are added)
   ============================================================ */
.img-placeholder {
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--taupe);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   Utilities
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .nav { padding: 20px 36px; }
  .nav.scrolled { padding: 14px 36px; }
  .services-trio { grid-template-columns: 1fr 1fr; gap: 36px; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 48px; }
  .inquiry { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .container { padding: 0 24px; }

  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero__content {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 60px;
    max-width: 100%;
  }

  .brand-moment { padding: 80px 24px; }

  .services-trio {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-card__image { height: 280px; }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }

  .split__image { height: 320px; }
  .split__text { max-width: 100%; }

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

  .inquiry {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project__images--2col { grid-template-columns: 1fr; }
  .project__images--3col {
    grid-template-columns: 1fr;
  }
  .project__images--3col .project__image:first-child { grid-row: auto; }
  .project__image--wide { grid-column: span 1; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-section { padding: 64px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { min-height: 500px; }
  .hero--page { min-height: 380px; }
  .nav__mobile a { font-size: 1.5rem; }
}

/* ============================================================
   FAQ / Q&A Component
   ============================================================ */
.faq {
  padding: var(--section-pad) 0;
}

.faq__heading {
  margin-bottom: 48px;
}

.faq-item {
  border-top: 1px solid var(--taupe);
  padding: 32px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--taupe);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.faq-item__answer {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.85;
  max-width: 760px;
}

/* ============================================================
   Before / After Component
   ============================================================ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

.before-after__panel {
  position: relative;
  overflow: hidden;
}

.before-after__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.before-after__panel:hover img {
  transform: scale(1.02);
}

.before-after__label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(28, 25, 22, 0.55);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.before-after__label--after {
  background: rgba(197, 180, 154, 0.7);
  color: var(--dark);
}

.before-after-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 48px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}
