* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fffaf3;
  --paper: #fffdf8;
  --cream: #f8efe3;
  --text: #1a1410;
  --muted: #6f6258;
  --soft: #a08b78;
  --red: #b7060b;
  --red-dark: #8f0307;
  --gold: #c48b47;
  --gold-soft: #e6c18f;
  --line: rgba(77, 47, 28, 0.14);
  --shadow: 0 24px 80px rgba(68, 38, 20, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--red);
  color: white;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 5000;
}

/* HEADER */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 3000;
  height: 86px;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 26px;
  background: rgba(255, 250, 243, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.35s ease;
}

.header.scrolled {
  height: 72px;
  border-bottom-color: var(--line);
  background: rgba(255, 250, 243, 0.94);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.82;
  width: fit-content;
  color: var(--red);
  font-family: Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand span {
  font-size: 31px;
  font-weight: 900;
}

.brand small {
  margin-top: 9px;
  font-size: 14px;
  letter-spacing: 3px;
  text-align: center;
  position: relative;
}

.brand small::before,
.brand small::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 8px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.nav a {
  color: #3d332c;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.desktop-whats {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(183, 6, 11, 0.22);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.3s;
}

.desktop-whats:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  margin: 6px auto;
}

/* BASE */

.section {
  border-bottom: 1px solid var(--line);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 128px 6vw 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 45%, rgba(196, 139, 71, 0.12), transparent 24%),
    linear-gradient(180deg, #fffaf3 0%, #fff7ee 100%);
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
}

.line-left::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

.hero h1 {
  margin-top: 22px;
  max-width: 720px;
  font-family: Georgia, serif;
  font-size: clamp(56px, 6.2vw, 102px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -4px;
}

.hero h1 em {
  font-style: italic;
}

.hero-description {
  max-width: 500px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 900;
  transition: 0.3s;
  cursor: pointer;
}

.btn.primary {
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.3);
  color: var(--gold);
  border: 1px solid rgba(196, 139, 71, 0.45);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(183, 6, 11, 0.14);
}

.whats-mini {
  color: var(--gold);
}

/* HERO PRODUCT */

.hero-product {
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-aura {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 139, 71, 0.18), transparent 62%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  animation: breathe 4.5s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.65;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.cup-img {
  position: relative;
  z-index: 2;
  width: min(470px, 88%);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 34px 40px rgba(90, 50, 25, 0.16));
  animation: floatCup 5s ease-in-out infinite;
}

@keyframes floatCup {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.product-shadow {
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: 360px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 37, 20, 0.12), transparent 70%);
  transform: translateX(-50%);
}

/* ESSENCE */

.essence {
  padding: 72px 6vw;
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.72fr;
  gap: 48px;
  align-items: center;
  background: var(--paper);
}

.essence-image {
  min-height: 300px;
  position: relative;
}

.photo-frame {
  height: 300px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(50, 25, 10, 0.18)),
    url("https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?auto=format&fit=crop&w=1200&q=85");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.seal {
  position: absolute;
  right: -48px;
  top: 50%;
  width: 170px;
  height: 170px;
  padding: 16px;
  border-radius: 50%;
  border: 1px solid rgba(196, 139, 71, 0.36);
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  animation: sealFloat 6s ease-in-out infinite;
}

@keyframes sealFloat {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-54%) rotate(2deg);
  }
}

.seal span,
.seal small {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 2px;
  line-height: 1.25;
}

.seal strong {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.essence-copy h2,
.manifesto-copy h2,
.contact-intro h2,
.values-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
}

.essence-copy p,
.manifesto-copy p,
.contact-intro p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.text-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 900;
  transition: 0.3s;
}

.text-link:hover {
  color: var(--red);
  transform: translateX(4px);
}

/* QUOTE CARD */

.quote-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 20px 70px rgba(110, 60, 25, 0.06);
}

.quote-card span {
  color: var(--gold);
  font-size: 28px;
}

.quote-card p {
  margin-top: 18px;
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

.quote-card strong {
  margin-top: 20px;
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 27px;
  font-weight: 400;
}

/* MANIFESTO */

.manifesto {
  padding: 70px 6vw;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  background: #fffaf3;
}

.ritual h3 {
  margin-top: 12px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 25px;
}

.ritual-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.ritual-grid article {
  min-height: 168px;
  padding: 26px;
  border-right: 1px solid var(--line);
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}

.ritual-grid article:last-child {
  border-right: none;
}

.ritual-grid article:hover {
  background: white;
  transform: translateY(-4px);
}

.ritual-grid i {
  display: block;
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 15px;
  font-style: normal;
}

.ritual-grid strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ritual-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* VALUES */

.values {
  padding: 72px 6vw;
  background: var(--paper);
}

.values-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.values-head h2 {
  max-width: 640px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: var(--shadow);
}

.value-card span {
  color: var(--gold);
  font-size: 34px;
}

.value-card h3 {
  margin-top: 18px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.35;
}

/* CONTACT */

.contact {
  padding: 54px 6vw;
  display: grid;
  grid-template-columns: 0.9fr 0.78fr 0.78fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.95)),
    url("https://images.unsplash.com/photo-1600565193348-f74bd3c7ccdf?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.contact-intro p {
  max-width: 480px;
}

.whatsapp-card,
.email-card {
  min-height: 128px;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: 0.3s;
}

.whatsapp-card {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 48px rgba(183, 6, 11, 0.24);
}

.whatsapp-card:hover {
  transform: translateY(-8px);
  background: var(--red-dark);
}

.email-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(196, 139, 71, 0.32);
}

.whatsapp-icon,
.email-card > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  flex: 0 0 auto;
}

.whatsapp-icon {
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
}

.email-card > span {
  color: var(--gold);
  border: 1px solid rgba(196, 139, 71, 0.38);
}

.whatsapp-card small,
.email-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 900;
  opacity: 0.9;
}

.whatsapp-card strong {
  display: block;
  font-size: clamp(24px, 2.2vw, 29px);
  margin: 4px 0;
  letter-spacing: 1px;
  white-space: nowrap;
}

.email-card strong {
  display: block;
  font-size: 21px;
  margin: 4px 0;
  color: var(--text);
}

.whatsapp-card p,
.email-card p {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.9;
}

/* FLOATING WHATSAPP */

.floating-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  z-index: 2500;
  font-size: 30px;
  box-shadow: 0 18px 42px rgba(183, 6, 11, 0.25);
  animation: pulseWhats 2.4s ease-in-out infinite;
}

@keyframes pulseWhats {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(183, 6, 11, 0.22);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 20px 56px rgba(183, 6, 11, 0.34);
  }
}

/* FOOTER */

.footer {
  padding: 22px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--soft);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */

@media (max-width: 1120px) {
  .header {
    grid-template-columns: 155px 1fr auto;
  }

  .nav {
    gap: 24px;
  }

  .essence {
    grid-template-columns: 1fr;
  }

  .seal {
    right: 22px;
  }

  .manifesto,
  .contact {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE MENU */

@media (max-width: 860px) {
  .desktop-whats {
    display: none;
  }

  .header {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    padding: 28px 6vw;
    background: rgba(255, 250, 243, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
    gap: 24px;
  }

  .hero-product {
    min-height: 460px;
  }

  .cup-img {
    width: min(360px, 88%);
  }

  .product-aura {
    width: 340px;
    height: 340px;
  }

  .product-shadow {
    width: 280px;
    bottom: 54px;
  }

  .values-head {
    display: block;
  }

  .values-head h2 {
    margin-top: 18px;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .ritual-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .ritual-grid article:last-child {
    border-bottom: none;
  }

  .footer {
    flex-direction: column;
  }
}

/* SMALL MOBILE */

@media (max-width: 560px) {
  .header,
  .hero,
  .essence,
  .manifesto,
  .values,
  .contact,
  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .brand span {
    font-size: 25px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-product {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-aura {
    position: absolute;
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
  }

  .cup-img {
    position: relative;
    z-index: 2;
    width: 280px;
    max-width: 82%;
    display: block;
    margin: 0 auto;
  }

  .product-shadow {
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    bottom: 50px;
  }

  .photo-frame {
    height: 240px;
  }

  .seal {
    width: 118px;
    height: 118px;
    right: 12px;
    top: 50%;
    padding: 10px;
    transform: translateY(-50%);
    animation: none;
  }

  .seal span,
  .seal small {
    font-size: 7px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .seal strong {
    font-size: 26px;
    margin: 4px 0;
  }

  .essence-copy h2,
  .manifesto-copy h2,
  .contact-intro h2,
  .values-head h2 {
    font-size: 36px;
  }

  .quote-card {
    padding: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-card,
  .email-card {
    padding: 20px;
  }

  .whatsapp-card {
    align-items: flex-start;
  }

  .whatsapp-card strong {
    font-size: 23px;
  }

  .whatsapp-icon,
  .email-card > span {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .whatsapp-icon svg {
    width: 24px;
    height: 24px;
  }

  .floating-whats {
    width: 54px;
    height: 54px;
  }
}