:root {
  color-scheme: dark;
  --noir: #111110;
  --ivory: #f5f0e8;
  --gold: #c9a84c;
  --stone: #888780;
  --bg: #111110;
  --surface: #181818;
  --surface-alt: #1d1d1b;
  --text: #f5f0e8;
  --text-muted: #b1ac9f;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-rendering: optimizeLegibility;
}

.fade-item,
.section-shell,
.hero-content,
.offering-card,
.step-card,
.visual-item,
.contact-copy,
.contact-form {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

/* Monograma sutil site-wide */
.page-shell::before {
  content: 'LL';
  position: fixed;
  left: 6%;
  bottom: 20%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: rgba(201,168,76,0.035);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

/* Subtle grain overlay for paper-like texture */
.page-shell::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(17, 17, 16, 0.25);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 2rem;
}

.brand-logo {
  max-height: 72px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a {
  color: var(--text);
  opacity: 0.82;
  transition: opacity 0.4s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  color: var(--text);
  padding: 0.7rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.cta-button:hover {
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-1px);
  border-color: var(--gold);
}

.hero-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0 1.5rem;
  background: var(--noir);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 35%),
              linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.18;
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  z-index: 1;
  padding: 0 1rem;
  animation: fadeInUp 1.6s ease both;
}

.hero-logo {
  display: none;
}

.hero-logo img {
  max-width: 310px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-content h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.hero-text h1 {
  margin: 0 0 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: var(--text);
}

.hero-content p, .hero-text p {
  margin: 1.5rem 0 0 0;
  max-width: 520px;
  color: rgba(245,240,232,0.82);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-transform: none;
}

.hero-cta {
  display: inline-flex;
  margin-top: 2.4rem;
  padding: 0.8rem 1.6rem;
  border: 0.5px solid rgba(201, 168, 76, 0.6);
  color: rgba(245,240,232,0.94);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.8);
}

.hero-shell {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

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

.hero-signature {
  max-height: 28px;
  opacity: 0.95;
  margin-bottom: 1.6rem;
  display: none;
}

.hero-media .media-frame {
  position: relative;
  width: 100%;
  max-height: 62vh;
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(12px) scale(1.01);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.monogram-ll {
  position: absolute;
  left: 6%;
  top: 8%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.6rem;
  color: rgba(201,168,76,0.06);
  pointer-events: none;
  user-select: none;
}

.sensory-section {
  background: var(--noir);
}

.sensory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sensory-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(245,240,232,0.06);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  align-items: start;
  transition: transform 0.8s ease, border-color 0.8s ease, background 0.6s ease;
}

.sensory-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.28);
  background: rgba(255,255,255,0.02);
}

.sensory-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.sensory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.sensory-card:hover .sensory-media img {
  transform: scale(1.08);
}

.sensory-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
}

.sensory-card p {
  margin: 0;
  color: rgba(245,240,232,0.78);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* Nova seção sensorial cinematográfica */
.sensory-hero-section {
  background: var(--noir);
  padding: 12rem 2rem;
}

.sensory-hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

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

.sensory-text .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
}

.sensory-text h2 {
  margin: 0 0 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text);
}

.sensory-description {
  max-width: 480px;
  color: rgba(245,240,232,0.82);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0;
}

.sensory-hero-media {
  width: 100%;
  overflow: hidden;
}

.sensory-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.1s ease, box-shadow 1.2s ease;
}

.sensory-hero-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sensory-hero-image:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,0.75);
}

/* Seção Curadoria */
.curation-section {
  background: var(--ivory);
  color: var(--noir);
  padding: 12rem 2rem;
}

.curation-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.curation-text .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(17,17,16,0.5);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
}

.curation-text h2 {
  margin: 0 0 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--noir);
}

.curation-text p {
  max-width: 420px;
  color: #3a3835;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0;
}

.curation-media {
  width: 100%;
  overflow: hidden;
}

.curation-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.1s ease, box-shadow 1.2s ease;
}

.curation-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.curation-image:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

/* Seção Detalhe */
.detail-section {
  background: var(--noir);
  padding: 12rem 2rem;
}

.detail-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.detail-text .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
}

.detail-text h2 {
  margin: 0 0 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text);
}

.detail-text p {
  max-width: 420px;
  color: rgba(245,240,232,0.8);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0;
}

.detail-media {
  width: 100%;
  overflow: hidden;
  order: -1;
}

.detail-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.1s ease, box-shadow 1.2s ease;
}

.detail-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-image:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,0.75);
}
.section-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10rem 2rem;
}

.section-headline {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-headline .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.section-headline h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.divider {
  width: 6rem;
  height: 0.5px;
  margin: 1.5rem 0;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
}

/* thin gold line for editorial separators */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
  margin: 2.25rem 0;
}

/* paper-like corner details */
.corner-rule {
  height: 0.5px;
  background: rgba(201,168,76,0.18);
  margin: 1rem 0 2rem 0;
}

@media (max-width: 960px) {
  .page-shell::before { display: none; }
  .page-shell::after { opacity: 0.04; }
  .hero-grid { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
  .hero-media { order: -1; margin-bottom: 1.5rem; }
  .hero-text { text-align: center; }
}

.manifesto-section {
  background: var(--ivory);
  color: var(--noir);
  padding-top: 2rem;
}

.manifesto-copy p {
  max-width: 680px;
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #2a2825;
  line-height: 1.8;
}

.offerings-section {
  background: var(--noir);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.offering-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245,240,232,0.06);
  padding: 2.5rem 1.8rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.8s ease, border-color 0.8s ease, background 0.8s ease;
}

.offering-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.03);
}

.number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.24em;
}

.offering-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.offering-card p {
  margin: 0;
  color: rgba(245,240,232,0.72);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.process-section {
  background: var(--ivory);
  color: var(--noir);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-card {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 160px;
  padding: 1.8rem 1.2rem;
  background: rgba(17,17,16,0.02);
  border: 1px solid rgba(17,17,16,0.06);
}

.step-card::after {
  content: '';
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  height: 0.5px;
  width: calc(100% - 2.4rem);
  background: rgba(201,168,76,0.2);
}

.step-card:last-child::after {
  display: none;
}

.ordinal {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  margin-bottom: 1rem;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #2a2825;
}

.concept-section {
  background: var(--noir);
}

.split-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.content-block h2 {
  margin-top: 0.5rem;
}

.content-block p {
  max-width: 520px;
  color: rgba(245,240,232,0.78);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.visual-list {
  display: grid;
  gap: 1rem;
}

.visual-item {
  min-height: 140px;
  padding: 1.6rem;
  border: 1px solid rgba(245,240,232,0.06);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.8);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  background: rgba(255,255,255,0.01);
}

.visual-item:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.25);
  background: rgba(255,255,255,0.02);
}

.visual-item span {
  display: inline-block;
  max-width: 220px;
}

.impact-section {
  min-height: 40vh;
  display: grid;
  place-items: center;
  padding: 6rem 1.5rem;
  background: var(--noir);
  color: var(--text);
  text-align: center;
}

.impact-shell {
  max-width: 760px;
}

.impact-copy {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1;
}

.impact-subtitle {
  display: block;
  margin-top: 2.2rem;
  color: rgba(201,168,76,0.65);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}

.contact-section {
  background: var(--ivory);
  color: var(--noir);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-copy h2 {
  margin-top: 0.7rem;
}

.contact-copy p {
  max-width: 500px;
  color: #3a3835;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: #2a2825;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17,17,16,0.12);
  background: rgba(17,17,16,0.03);
  color: var(--noir);
  padding: 1rem 1rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-1px);
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.contact-form button {
  border: none;
  background: var(--noir);
  color: var(--text);
  padding: 1rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease;
}

.contact-form button:hover {
  background: rgba(17,17,16,0.9);
  transform: translateY(-1px);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 1rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  min-width: 150px;
}

.site-footer {
  border-top: 1px solid rgba(17,17,16,0.08);
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}

.footer-links a {
  color: rgba(245,240,232,0.75);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .header-inner {
    padding: 1rem 1.5rem;
  }

  .site-nav {
    display: none;
  }

  .cta-button {
    padding: 0.8rem 1.2rem;
  }

  .section-shell {
    padding: 5rem 1.5rem;
  }

  .offerings-grid,
  .timeline-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .sensory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-shell {
    grid-template-columns: 1fr;
  }
  
  .page-shell::before { display: none; }
  .page-shell::after { opacity: 0.04; }
  .hero-grid { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
  .hero-media { order: -1; margin-bottom: 2rem; }
  .hero-text { text-align: center; }
  
  .sensory-hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .sensory-hero-section { padding: 7rem 1.5rem; }
  .sensory-text { text-align: center; }
  
  .curation-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .curation-section { padding: 7rem 1.5rem; }
  .curation-text { text-align: center; }
  
  .detail-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-section { padding: 7rem 1.5rem; }
  .detail-text { text-align: center; }
  .detail-media { order: 0; }
}
}

@media (max-width: 600px) {
  body {
    letter-spacing: 0.04em;
  }

  .hero-content h1 {
    font-size: 3.4rem;
  }

  .hero-content p,
  .contact-copy p,
  .manifesto-copy p,
  .content-block p,
  .offering-card p,
  .step-card p,
  .sensory-description,
  .curation-text p,
  .detail-text p {
    font-size: 0.96rem;
  }

  .sensory-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sensory-hero-section { padding: 5rem 1.5rem; }
  .curation-section { padding: 5rem 1.5rem; }
  .detail-section { padding: 5rem 1.5rem; }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
