@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #1a0f08;
  color: #f5e8d3;
  font-family: "Crimson Pro", "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

*::-moz-selection {
  background: #f5e8d3;
  color: #2d1b0e;
}

*::selection {
  background: #f5e8d3;
  color: #2d1b0e;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #2d1b0e;
}

body::-webkit-scrollbar-thumb {
  background-color: #e8a84c;
  border-radius: 20px;
  border: 3px solid #e8a84c;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: exclusion;
}
.cursor__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #e8a84c;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 150ms ease, opacity 150ms ease;
}
.cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid #c47b2b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), width 200ms ease, height 200ms ease, border-color 300ms ease;
}
.cursor--hovering .cursor__ring {
  width: 56px;
  height: 56px;
  border-color: #e8a84c;
}
.cursor--clicking .cursor__dot {
  transform: translate(-50%, -50%) scale(2.5);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 950;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.u-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .u-container {
    padding-inline: 1.5rem;
  }
}

.u-narrow {
  max-width: 820px;
  margin-inline: auto;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.u-tag, .section__tag {
  display: inline-block;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c47b2b;
  border: 1px solid rgba(196, 123, 43, 0.45);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.loader {
  position: fixed;
  inset: 0;
  background: #1a0f08;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader--hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f5e8d3;
  letter-spacing: 0.05em;
}
.loader__logo span {
  color: #c47b2b;
}
.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(196, 123, 43, 0.2);
  border-radius: 999px;
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  background: linear-gradient(90deg, #4a2912, #c47b2b, #e8a84c);
  border-radius: 999px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.loader__text {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #8a7060;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  background-color: rgba(27, 16, 10, 0.7);
  transition: background 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav--scrolled {
  background: rgba(26, 15, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 123, 43, 0.15);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .nav__container {
    padding-inline: 1.5rem;
  }
}
.nav__logo {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5e8d3;
  letter-spacing: 0.04em;
  transition: color 300ms ease;
}
.nav__logo:hover {
  color: #e8a84c;
}
.nav__logo span {
  color: #c47b2b;
  font-style: italic;
}
.nav__logo::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  background-image: url("/assets/images/logo_all.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
}
.nav__link {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 232, 211, 0.7);
  transition: color 300ms ease;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: #c47b2b;
  transition: right 300ms ease;
}
.nav__link:hover, .nav__link--active {
  color: #f5e8d3;
}
.nav__link:hover::after, .nav__link--active::after {
  right: 0;
}
.nav__link--cta {
  color: #c47b2b;
  border: 1px solid rgba(196, 123, 43, 0.45);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  transition: background 300ms ease, color 300ms ease;
}
.nav__link--cta::after {
  display: none;
}
.nav__link--cta:hover {
  background: #c47b2b;
  color: #1a0f08;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
@media (max-width: 1024px) {
  .nav__burger {
    display: flex;
  }
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5e8d3;
  border-radius: 999px;
  transition: transform 300ms ease, opacity 300ms ease;
}
.nav__burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger--open span:nth-child(2) {
  opacity: 0;
}
.nav__burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #1a0f08;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  transform: translateX(100%);
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu--open {
  transform: translateX(0);
}
.mobile-menu__link {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 232, 211, 0.7);
  transition: color 300ms ease;
  letter-spacing: 0.02em;
}
.mobile-menu__link:hover {
  color: #e8a84c;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 9rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 15, 8, 0.3) 0%, rgba(26, 15, 8, 0.1) 40%, rgba(26, 15, 8, 0.8) 75%, #1a0f08 100%);
  z-index: 1;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #e8a84c;
  border-radius: 50%;
  animation: particle-float var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--opacity, 0.4);
}
@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: var(--opacity, 0.4);
  }
  50% {
    transform: translate(var(--tx, 10px), var(--ty, -20px)) scale(1.5);
    opacity: calc(var(--opacity, 0.4) * 1.8);
  }
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-inline: 2rem;
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c47b2b;
  margin-bottom: 1.5rem;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  z-index: 500 !important;
}
.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f5e8d3;
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero__title em {
  font-style: italic;
  color: #e8a84c;
  display: block;
}
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero__word--visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__subtitle {
  font-size: 1.375rem;
  font-weight: 300;
  color: rgba(245, 232, 211, 0.65);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
.hero__subtitle--visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}
.hero__actions--visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #c47b2b, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.hero__scroll-text {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a7060;
  writing-mode: vertical-rl;
  margin-top: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border-radius: 999px;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 300ms ease;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn--primary {
  background: #c47b2b;
  color: #1a0f08;
  box-shadow: 0 2px 8px rgba(26, 15, 8, 0.4);
}
.btn--primary:hover {
  background: #e8a84c;
  box-shadow: 0 0 40px rgba(196, 123, 43, 0.2);
  transform: translateY(-2px);
}
.btn--outline {
  border: 1px solid rgba(196, 123, 43, 0.45);
  color: #f5e8d3;
}
.btn--outline:hover {
  border-color: #e8a84c;
  color: #e8a84c;
  transform: translateY(-2px);
}
.btn--ghost {
  color: #c47b2b;
}
.btn--ghost:hover {
  color: #e8a84c;
}
.btn--ghost::before {
  display: none;
}
.btn--sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 1.5rem 4.5rem;
  font-size: 1rem;
}

.section {
  padding: 9rem 0;
}
.section--dark {
  background: #120a04;
}
.section--card {
  background: #22130a;
}
.section__header {
  text-align: center;
  margin-bottom: 6rem;
}
.section__tag {
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f5e8d3;
}
.section__title em {
  color: #e8a84c;
  font-style: italic;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2.25rem;
  }
}
.section__subtitle {
  font-size: 1.375rem;
  color: rgba(245, 232, 211, 0.6);
  line-height: 1.85;
  margin-top: 1.5rem;
  font-weight: 300;
}

.about-strip {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(196, 123, 43, 0.15);
  border-bottom: 1px solid rgba(196, 123, 43, 0.15);
}
.about-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .about-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .about-strip__grid {
    grid-template-columns: 1fr;
  }
}
.about-strip__item {
  text-align: center;
}
.about-strip__number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #c47b2b;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.about-strip__number sup {
  font-size: 0.4em;
  vertical-align: super;
}
.about-strip__label {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a7060;
}

.journey__timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}
.journey__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c47b2b, transparent);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .journey__timeline::before {
    left: 24px;
  }
}
.journey__step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .journey__step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }
}
.journey__step:nth-child(even) .journey__content {
  order: -1;
  text-align: right;
}
.journey__step:nth-child(even) .journey__empty {
  order: 1;
}
@media (max-width: 768px) {
  .journey__step:nth-child(even) .journey__content {
    order: 1;
    text-align: left;
  }
  .journey__step:nth-child(even) .journey__empty {
    display: none;
  }
}
.journey__content {
  padding: 2rem;
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  transition: border-color 300ms ease, transform 300ms ease;
}
.journey__content:hover {
  border-color: rgba(196, 123, 43, 0.4);
  transform: translateY(-4px);
}
.journey__step-number {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #c47b2b;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.journey__step-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.journey__step-text {
  font-size: 1rem;
  color: rgba(245, 232, 211, 0.65);
  line-height: 1.85;
}
.journey__node {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.journey__dot {
  width: 20px;
  height: 20px;
  background: #c47b2b;
  border-radius: 50%;
  border: 3px solid #1a0f08;
  box-shadow: 0 0 40px rgba(196, 123, 43, 0.2);
  position: relative;
}
.journey__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(196, 123, 43, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .journey__empty {
    display: none;
  }
}

.origins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .origins__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .origins__grid {
    grid-template-columns: 1fr;
  }
}
.origins__card {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 300ms ease;
}
.origins__card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 123, 43, 0.4);
}
.origins__card:hover .origins__img {
  transform: scale(1.08);
}
.origins__img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.origins__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.origins__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(26, 15, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 123, 43, 0.45);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #c47b2b;
}
.origins__body {
  padding: 2rem;
}
.origins__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #f5e8d3;
  margin-bottom: 0.5rem;
}
.origins__region {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.origins__desc {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.6);
  line-height: 1.85;
}
.origins__traits {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.origins__trait {
  background: rgba(196, 123, 43, 0.1);
  border: 1px solid rgba(196, 123, 43, 0.2);
  border-radius: 999px;
  padding: 2px 0.75rem;
  font-size: 0.75rem;
  color: #c47b2b;
  font-family: "DM Mono", "Courier New", monospace;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c47b2b, transparent);
}
@media (max-width: 1024px) {
  .process__steps::before {
    display: none;
  }
}
.process__step {
  text-align: center;
  padding: 2rem 1rem;
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  transition: border-color 300ms ease, transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.process__step:hover {
  border-color: rgba(196, 123, 43, 0.5);
  transform: translateY(-6px);
}
.process__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(196, 123, 43, 0.3));
}
.process__num {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: rgba(196, 123, 43, 0.4);
}
.process__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.process__desc {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.55);
  line-height: 1.85;
}

.roast__chart {
  max-width: 700px;
  margin-inline: auto;
}
.roast__level {
  margin-bottom: 2rem;
}
.roast__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.roast__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  color: #f5e8d3;
}
.roast__temp {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #c47b2b;
  letter-spacing: 0.1em;
}
.roast__bar {
  height: 10px;
  background: rgba(196, 123, 43, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.roast__fill {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bar-color, #c47b2b);
}
.roast__desc {
  font-size: 0.875rem;
  color: #8a7060;
  margin-top: 0.5rem;
}

.wheel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5rem;
}
@media (min-width: 1024px) {
  .wheel {
    flex-direction: row;
    align-items: center;
  }
}
.wheel__svg-wrap {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  position: relative;
}
.wheel__svg {
  width: 100%;
  height: 100%;
}
.wheel__info {
  flex: 1;
  min-width: 0;
}
.wheel__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 1.5rem;
}
.wheel__text {
  font-size: 1rem;
  color: rgba(245, 232, 211, 0.65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.wheel__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.wheel__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.7);
}
.wheel__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dot-color, #c47b2b);
}

.shop__filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
  justify-content: center;
}
.shop__filter {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 232, 211, 0.6);
  border: 1px solid rgba(245, 232, 211, 0.15);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  transition: all 300ms ease;
}
.shop__filter:hover, .shop__filter--active {
  color: #c47b2b;
  border-color: #c47b2b;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .shop__grid {
    grid-template-columns: 1fr;
  }
}
.shop__card {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 300ms ease;
  position: relative;
}
.shop__card:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 123, 43, 0.4);
}
.shop__card:hover .shop__img {
  transform: scale(1.06);
}
.shop__card:hover .shop__overlay {
  opacity: 1;
}
.shop__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: #c47b2b;
  color: #1a0f08;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 0.75rem;
  border-radius: 999px;
}
.shop__img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.shop__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.8) brightness(0.75);
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}
.shop__body {
  padding: 2rem;
}
.shop__roast {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.shop__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.shop__desc {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.55);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.shop__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 123, 43, 0.15);
}
.shop__price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #e8a84c;
}
.shop__unit {
  font-size: 0.75rem;
  color: #8a7060;
  font-weight: 400;
}
.shop__notes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.shop__note {
  background: rgba(196, 123, 43, 0.1);
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: rgba(245, 232, 211, 0.7);
  font-family: "DM Mono", "Courier New", monospace;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.modal--open {
  opacity: 1;
  visibility: visible;
}
.modal--open .modal__panel {
  transform: translateY(0) scale(1);
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.85);
  backdrop-filter: blur(12px);
}
.modal__panel {
  position: relative;
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.45);
  border-radius: 24px;
  padding: 4.5rem;
  max-width: 480px;
  width: 100%;
  transform: translateY(30px) scale(0.97);
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(196, 123, 43, 0.15);
  color: #8a7060;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease, border-color 300ms ease;
}
.modal__close:hover {
  color: #f5e8d3;
  border-color: rgba(196, 123, 43, 0.5);
}
.modal__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 2rem;
}
.modal__product {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(196, 123, 43, 0.15);
}
.modal__product-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.7);
}
.modal__product-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  color: #f5e8d3;
  margin-bottom: 0.5rem;
}
.modal__product-price {
  color: #e8a84c;
  font-size: 1rem;
}
.modal__quantity {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.modal__qty-label {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #8a7060;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.modal__qty-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(196, 123, 43, 0.08);
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}
.modal__qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(196, 123, 43, 0.15);
  color: #f5e8d3;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms ease, border-color 300ms ease;
}
.modal__qty-btn:hover {
  background: rgba(196, 123, 43, 0.2);
  border-color: #c47b2b;
}
.modal__qty-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  color: #f5e8d3;
  min-width: 24px;
  text-align: center;
}
.modal__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(196, 123, 43, 0.06);
  border-radius: 8px;
}
.modal__total-label {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #8a7060;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.modal__total-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #e8a84c;
}
.modal__disclaimer {
  text-align: center;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}
.modal__success {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.modal__success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.modal__success-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.modal__success-text {
  color: #8a7060;
  margin-bottom: 2rem;
}

.info__hero {
  padding: 160px 0 9rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 41, 18, 0.3) 0%, transparent 70%);
}
.info__hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f5e8d3;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .info__hero-title {
    font-size: 3rem;
  }
}
.info__hero-text {
  font-size: 1.375rem;
  color: rgba(245, 232, 211, 0.6);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.85;
}
.info__article {
  max-width: 820px;
  margin-inline: auto;
  padding: 9rem 2rem;
}
.info__chapter {
  margin-bottom: 9rem;
}
.info__chapter:last-child {
  margin-bottom: 0;
}
.info__chapter-num {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #c47b2b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.info__chapter-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.info__chapter-text {
  font-size: 1.125rem;
  color: rgba(245, 232, 211, 0.7);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.info__chapter-text strong {
  color: #f5e8d3;
  font-weight: 600;
}
.info__chapter-text em {
  color: #e8a84c;
  font-style: italic;
}
.info__pullquote {
  border-left: 3px solid #c47b2b;
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-style: italic;
  color: rgba(245, 232, 211, 0.85);
  line-height: 1.3;
}
.info__table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.info__table th {
  text-align: left;
  padding: 1rem 1.5rem;
  background: rgba(196, 123, 43, 0.1);
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c47b2b;
  border-bottom: 1px solid rgba(196, 123, 43, 0.45);
}
.info__table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.7);
  border-bottom: 1px solid rgba(196, 123, 43, 0.15);
  line-height: 1.85;
}
.info__table tr:last-child td {
  border-bottom: none;
}

.contact {
  padding: 160px 0 9rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.contact__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f5e8d3;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.contact__title em {
  color: #e8a84c;
  font-style: italic;
}
.contact__text {
  font-size: 1.125rem;
  color: rgba(245, 232, 211, 0.6);
  line-height: 1.85;
  margin-bottom: 4.5rem;
}
.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  transition: border-color 300ms ease;
}
.contact__method:hover {
  border-color: rgba(196, 123, 43, 0.4);
}
.contact__method-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.contact__method-label {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact__method-value {
  font-size: 1rem;
  color: #f5e8d3;
}
.contact__form {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 24px;
  padding: 4.5rem;
}
.contact__form-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #f5e8d3;
  margin-bottom: 3rem;
}
.contact__field {
  margin-bottom: 2rem;
}
.contact__label {
  display: block;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7060;
  margin-bottom: 0.75rem;
}
.contact__input, .contact__textarea, .contact__select {
  width: 100%;
  background: rgba(196, 123, 43, 0.05);
  border: 1px solid rgba(196, 123, 43, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #f5e8d3;
  font-family: "Crimson Pro", "Times New Roman", serif;
  font-size: 1rem;
  transition: border-color 300ms ease;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__input:focus, .contact__textarea:focus, .contact__select:focus {
  border-color: #c47b2b;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder, .contact__select::-moz-placeholder {
  color: rgba(245, 232, 211, 0.3);
}
.contact__input::placeholder, .contact__textarea::placeholder, .contact__select::placeholder {
  color: rgba(245, 232, 211, 0.3);
}
.contact__textarea {
  height: 140px;
  resize: vertical;
  line-height: 1.85;
}
.contact__select {
  cursor: pointer;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}
.contact__success-msg {
  display: none;
  text-align: center;
  padding: 3rem 0;
}
.contact__success-msg-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact__success-msg-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.contact__success-msg-text {
  color: #8a7060;
}
.contact option {
  color: #2d1b0e;
}
.contact option:hover {
  background-color: #2d1b0e;
  color: #f5e8d3;
}

.careers {
  padding: 160px 0 9rem;
}
.careers__hero {
  text-align: center;
  margin-bottom: 9rem;
}
.careers__hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.careers__hero-title em {
  color: #e8a84c;
  font-style: italic;
}
.careers__hero-text {
  font-size: 1.375rem;
  color: rgba(245, 232, 211, 0.6);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.85;
}
.careers__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 9rem;
}
@media (max-width: 1024px) {
  .careers__values {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .careers__values {
    grid-template-columns: 1fr;
  }
}
.careers__value {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.careers__value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.careers__value-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.careers__value-text {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.6);
  line-height: 1.85;
}
.careers__list-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 3rem;
  text-align: center;
}
.careers__jobs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.careers__job {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  cursor: pointer;
  transition: border-color 300ms ease, transform 300ms ease;
}
.careers__job:hover {
  border-color: rgba(196, 123, 43, 0.4);
  transform: translateX(6px);
}
.careers__job.is-open {
  border-color: rgba(196, 123, 43, 0.35);
  transform: translateX(6px);
}
.careers__job-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  width: 100%;
}
@media (max-width: 768px) {
  .careers__job-header {
    grid-template-columns: 1fr;
  }
}
.careers__job-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.careers__job-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196, 123, 43, 0.35);
  color: rgba(196, 123, 43, 0.85);
  font-size: 0.75rem;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
  flex-shrink: 0;
}
.is-open .careers__job-toggle-icon {
  transform: rotate(180deg);
  background: rgba(196, 123, 43, 0.12);
  border-color: rgba(196, 123, 43, 0.6);
}
.careers__job-separator {
  height: 1px;
  background: rgba(196, 123, 43, 0.15);
  margin: 0 3rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.is-open .careers__job-separator {
  transform: scaleX(1);
}
.careers__job-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.is-open .careers__job-panel {
  max-height: 800px;
  opacity: 1;
}
.careers__job-body {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .careers__job-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.careers__job-section-title {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196, 123, 43, 0.9);
  margin-bottom: 0.75rem;
}
.careers__job-section-title + .careers__job-section-title {
  margin-top: 2rem;
}
.careers__job-desc {
  font-size: 1rem;
  color: rgba(245, 232, 211, 0.65);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.careers__job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.careers__job-list li {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.6);
  line-height: 1.85;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.careers__job-list li::before {
  content: "◦";
  color: rgba(196, 123, 43, 0.8);
  flex-shrink: 0;
  margin-top: 0.05em;
}
.careers__job-footer {
  padding: 0 3rem 3rem;
  display: flex;
  justify-content: flex-end;
}
.careers__job-dept {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #c47b2b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.careers__job-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  color: #f5e8d3;
  margin-bottom: 0.75rem;
}
.careers__job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.careers__job-tag {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.1em;
}
.careers__job-tag::before {
  content: "◦ ";
  color: #c47b2b;
}

.credits {
  padding: 160px 0 9rem;
  text-align: center;
}
.credits__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 3rem;
}
.credits__title em {
  color: #e8a84c;
  font-style: italic;
}
.credits__subtitle {
  font-size: 1.375rem;
  color: rgba(245, 232, 211, 0.6);
  margin-bottom: 9rem;
}
.credits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .credits__grid {
    grid-template-columns: 1fr;
  }
}
.credits__item {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 16px;
  padding: 3rem;
  text-align: left;
  transition: border-color 300ms ease;
}
.credits__item:hover {
  border-color: rgba(196, 123, 43, 0.4);
}
.credits__item-cat {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #c47b2b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.credits__item-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  color: #f5e8d3;
  margin-bottom: 0.5rem;
}
.credits__item-url {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  word-break: break-all;
}
.credits__note {
  margin-top: 6rem;
  font-size: 1rem;
  color: rgba(245, 232, 211, 0.5);
  font-style: italic;
  max-width: 500px;
  margin-inline: auto;
}

.legal {
  padding: 160px 0 9rem;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.legal__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.legal__date {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}
.legal__section {
  margin-bottom: 4.5rem;
}
.legal__section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #f5e8d3;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(196, 123, 43, 0.15);
}
.legal__text {
  font-size: 1rem;
  color: rgba(245, 232, 211, 0.65);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal__text strong {
  color: #f5e8d3;
}
.legal__text a {
  color: #c47b2b;
  text-decoration: underline;
  text-decoration-color: rgba(196, 123, 43, 0.4);
  transition: color 300ms ease;
}
.legal__text a:hover {
  color: #e8a84c;
}
.legal__nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}
.legal__nav button {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 232, 211, 0.5);
  border: 1px solid rgba(245, 232, 211, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 300ms ease;
}
.legal__nav button:hover, .legal__nav button.active {
  color: #c47b2b;
  border-color: #c47b2b;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__card {
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.15);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
}
.testimonials__card::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  color: #c47b2b;
  line-height: 1;
  opacity: 0.3;
}
.testimonials__text {
  font-size: 1rem;
  color: rgba(245, 232, 211, 0.75);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a2912, #c47b2b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f5e8d3;
  flex-shrink: 0;
}
.testimonials__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: #f5e8d3;
  margin-bottom: 2px;
}
.testimonials__role {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.1em;
}
.testimonials__stars {
  color: #c47b2b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter {
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 41, 18, 0.6) 0%, rgba(26, 15, 8, 0.8) 70%);
  border-top: 1px solid rgba(196, 123, 43, 0.15);
  border-bottom: 1px solid rgba(196, 123, 43, 0.15);
  padding: 9rem 0;
  text-align: center;
}
.newsletter__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.newsletter__title em {
  color: #e8a84c;
  font-style: italic;
}
.newsletter__text {
  color: rgba(245, 232, 211, 0.6);
  font-size: 1.375rem;
  margin-bottom: 3rem;
}
.newsletter__form {
  display: flex;
  max-width: 440px;
  margin-inline: auto;
  gap: 0;
  border: 1px solid rgba(196, 123, 43, 0.45);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 300ms ease;
}
.newsletter__form:focus-within {
  border-color: #e8a84c;
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 2rem;
  color: #f5e8d3;
  font-family: "Crimson Pro", "Times New Roman", serif;
  font-size: 1rem;
  outline: none;
}
.newsletter__input::-moz-placeholder {
  color: rgba(245, 232, 211, 0.35);
}
.newsletter__input::placeholder {
  color: rgba(245, 232, 211, 0.35);
}
.newsletter__submit {
  background: #c47b2b;
  color: #1a0f08;
  padding: 1rem 3rem;
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 300ms ease;
}
.newsletter__submit:hover {
  background: #e8a84c;
}
.newsletter__note {
  margin-top: 1rem;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.06em;
}

.footer {
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(196, 123, 43, 0.15);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5e8d3;
  margin-bottom: 1rem;
}
.footer__logo span {
  color: #c47b2b;
  font-style: italic;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.5);
  line-height: 1.85;
  max-width: 220px;
  margin-bottom: 2rem;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(196, 123, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #8a7060;
  transition: color 300ms ease, border-color 300ms ease;
}
.footer__social:hover {
  color: #e8a84c;
  border-color: #c47b2b;
}
.footer__col-title {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c47b2b;
  margin-bottom: 1.5rem;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col-link {
  font-size: 0.875rem;
  color: rgba(245, 232, 211, 0.55);
  transition: color 300ms ease;
}
.footer__col-link:hover {
  color: #f5e8d3;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 123, 43, 0.15);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.06em;
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-link {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #8a7060;
  letter-spacing: 0.06em;
  transition: color 300ms ease;
}
.footer__legal-link:hover {
  color: #c47b2b;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal--visible {
  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;
}

.toast {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 900;
  background: #22130a;
  border: 1px solid rgba(196, 123, 43, 0.45);
  border-radius: 16px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
  max-width: 340px;
}
.toast--visible {
  transform: translateY(0);
  opacity: 1;
}
.toast__icon {
  font-size: 1.75rem;
}
.toast__text {
  font-size: 0.875rem;
  color: #f5e8d3;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .toast {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}

.back-top {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196, 123, 43, 0.15);
  border: 1px solid rgba(196, 123, 43, 0.45);
  color: #c47b2b;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: all 300ms ease;
}
.back-top:hover {
  background: #c47b2b;
  color: #1a0f08;
}/*# sourceMappingURL=main.css.map */