/* =========================================================
   ESSENTIA — One-Page Landing
   ========================================================= */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Custom Properties --- */
:root {
  --bg-primary: #F8F4EE;
  --bg-secondary: #EFE8DC;
  --bg-warm: #E6DDD0;
  --bg-dark: #2B2119;
  --bg-darker: #1E1712;

  --text-primary: #2B2119;
  --text-secondary: #7D6E5F;
  --text-light: #F0EAE0;
  --text-muted: #A99A8A;

  --accent-sand: #C8AD8A;
  --accent-terra: #B8907E;
  --accent-sage: #97A68B;

  --border: #D9CEBD;
  --border-light: #E8DFD1;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Base --- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

::selection {
  background: var(--accent-sand);
  color: var(--bg-dark);
}

/* --- Grain Texture Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--accent-sand);
  transition: width 0.8s var(--ease-out) 0.2s;
}

.section-label.revealed::before {
  width: 28px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}

.btn:hover {
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-sand);
  outline-offset: 4px;
}

.btn-arrow {
  transition: transform 0.4s var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--light {
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn--light::before {
  background: var(--text-light);
}

.btn--light:hover {
  color: var(--bg-dark);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border-light);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-monogram {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1;
}

.navbar-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-links a {
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width 0.4s var(--ease-out);
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}

.navbar-cta:hover {
  background: var(--accent-sand);
  color: var(--bg-primary);
  border-color: var(--accent-sand);
}

.navbar-links a.navbar-cta::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  background: url('../img/hero-sand.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,244,238,0.72) 0%, rgba(248,244,238,0.58) 50%, rgba(248,244,238,0.75) 100%);
  z-index: 1;
}

/* Organic Background Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: shapeIn 2s var(--ease-out) forwards;
  z-index: 2;
}

.hero-shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-sand) 0%, transparent 70%);
  top: -10%;
  right: -8%;
  opacity: 0;
  animation-delay: 0.2s;
}

.hero-shape--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-terra) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  opacity: 0;
  animation-delay: 0.4s;
}

.hero-shape--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-sage) 0%, transparent 70%);
  top: 20%;
  left: 15%;
  opacity: 0;
  animation-delay: 0.6s;
}

@keyframes shapeIn {
  to { opacity: 0.12; }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.03); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 15px) scale(0.96); }
  66% { transform: translate(18px, -12px) scale(1.04); }
}

.hero-shape--1 { animation: shapeIn 2s var(--ease-out) 0.2s forwards, float1 20s ease-in-out 2s infinite; }
.hero-shape--2 { animation: shapeIn 2s var(--ease-out) 0.4s forwards, float2 25s ease-in-out 2.5s infinite; }
.hero-shape--3 { animation: shapeIn 2s var(--ease-out) 0.6s forwards, float1 22s ease-in-out 3s infinite; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-pretitle {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.8s forwards;
  z-index: 3;
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-secondary);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.philosophy {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.philosophy-image-inner {
  width: 100%;
  height: 100%;
  background: url('../img/philosophy-leaf.jpg') center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.philosophy-image-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(248,244,238,0.85);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
}

.philosophy-text {
  padding: 2rem 0;
}

.philosophy-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 2rem;
  font-weight: 200;
}

.philosophy-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 480px;
}

.philosophy-body p + p {
  margin-top: 1.5rem;
}

.philosophy-divider {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent-sand);
  margin: 2.5rem 0;
  transition: width 0.8s var(--ease-out);
}

.philosophy-divider.revealed {
  width: 40px;
}

/* =========================================================
   TREATMENTS
   ========================================================= */
.treatments {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.treatments-header {
  text-align: center;
  margin-bottom: 5rem;
}

.treatments-header .section-label,
.contact-header .section-label {
  justify-content: center;
}

.treatments-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 200;
  margin-bottom: 1.5rem;
}

.treatments-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.treatments-list {
  max-width: 860px;
  margin: 0 auto;
}

.treatment-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.4s var(--ease-out);
}

.treatment-item:hover {
  padding-left: 0.75rem;
}

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

.treatment-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding-top: 0.15rem;
}

.treatment-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.treatment-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.treatment-item:hover .treatment-name {
  color: var(--accent-terra);
}

.treatment-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

.treatment-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-sand);
  transition: width 0.6s var(--ease-out);
}

.treatment-item:hover .treatment-line {
  width: 100%;
}

.treatments-quote {
  text-align: center;
  margin-top: 5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  background: var(--bg-dark);
}

.manifesto-slide {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.manifesto-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 33, 25, 0.68);
  z-index: 1;
}

.manifesto-slide + .manifesto-slide {
  border-top: 1px solid rgba(240, 234, 224, 0.06);
}

.manifesto-slide:nth-child(1) {
  background-image: url('../img/manifesto-water.jpg');
}

.manifesto-slide:nth-child(2) {
  background-image: url('../img/manifesto-wood.jpg');
}

.manifesto-slide:nth-child(3) {
  background-image: url('../img/manifesto-orchid.jpg');
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 200;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 700px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

.manifesto-quote::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent-sand);
  margin: 0 auto 2rem;
  transition: width 0.8s var(--ease-out) 0.3s;
}

.manifesto-quote.revealed::before {
  width: 30px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 200;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto 4rem;
}

.contact-block {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(43, 33, 25, 0.06);
}

.contact-block-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-block-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.7;
}

.contact-block-value a {
  transition: color 0.3s ease;
}

.contact-block-value a:hover {
  color: var(--accent-terra);
}

.contact-cta {
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-darker);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(240, 234, 224, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.footer-brand-tagline {
  font-size: 0.85rem;
  color: rgba(240, 234, 224, 0.4);
  font-weight: 300;
  font-style: italic;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 234, 224, 0.4);
  transition: color 0.3s ease;
  position: relative;
}

.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-light);
  transition: width 0.4s var(--ease-out);
}

.footer-social a:hover {
  color: var(--text-light);
}

.footer-social a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(240, 234, 224, 0.25);
  letter-spacing: 0.05em;
}

.footer-closing {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(240, 234, 224, 0.3);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-image {
    aspect-ratio: 16 / 10;
  }

  .philosophy-text {
    padding: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .philosophy,
  .treatments,
  .contact {
    padding: 5rem 0;
  }

  .treatments-header {
    margin-bottom: 3rem;
  }

  .treatment-item {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .manifesto-slide {
    min-height: 50vh;
  }

  .manifesto-quote {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.72rem;
  }
}
