/* =============================================
   Golden Notes — Vault Noir / Art Deco Digital
   CSS Completo (sem frameworks)
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Raleway:wght@300;400;500;600;700&display=swap');

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

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

body {
  font-family: 'Raleway', sans-serif;
  background: #080810;
  color: #F5F0E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

button, input, label {
  font-family: 'Raleway', sans-serif;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080810; }
::-webkit-scrollbar-thumb { background: #B8860B; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #DAA520; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; max-width: 1280px; }
}

.gold-text {
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 30%, #FFD700 50%, #DAA520 70%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.art-deco-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #B8860B 20%, #DAA520 50%, #B8860B 80%, transparent);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes growWidth {
  from { width: 0; }
  to   { width: 100%; }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.animate-fade-up.delay-1 { animation-delay: 0.2s; }
.animate-fade-up.delay-2 { animation-delay: 0.4s; }
.animate-fade-up.delay-3 { animation-delay: 0.6s; }
.animate-fade-up.delay-4 { animation-delay: 0.8s; }

.animate-fade-left {
  animation: fadeInLeft 0.7s ease forwards;
  opacity: 0;
}
.animate-fade-right {
  animation: fadeInRight 0.5s ease forwards;
  opacity: 0;
}
.animate-fade-scale {
  animation: fadeInScale 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
}
.header.scrolled {
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(184, 134, 11, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 640px) {
  .header__logo img { height: 48px; }
}
.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header__nav { display: flex; }
}
.header__nav a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #DAA520;
  transition: width 0.3s;
}
.header__nav a:hover { color: #DAA520; }
.header__nav a:hover::after { width: 100%; }

/* Mobile menu */
.header__mobile-btn {
  display: block;
  background: none;
  border: none;
  color: #DAA520;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .header__mobile-btn { display: none; }
}
.header__mobile-nav {
  display: none;
  background: rgba(8, 8, 16, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  padding: 1.5rem 1rem;
  flex-direction: column;
  gap: 1rem;
}
.header__mobile-nav.open { display: flex; }
@media (min-width: 1024px) {
  .header__mobile-nav { display: none !important; }
}
.header__mobile-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}
.header__mobile-nav a:hover { color: #DAA520; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #0a0a18;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay-r {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,16,0.8), rgba(8,8,16,0.4), rgba(8,8,16,0.2));
}
.hero__overlay-b {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,16,0.5), transparent, rgba(8,8,16,0.8));
}

/* Art Deco corners */
.hero__corner {
  position: absolute;
  width: 80px; height: 80px;
  border-color: rgba(184, 134, 11, 0.3);
  border-style: solid;
  border-width: 0;
}
.hero__corner--tl { top: 96px; left: 32px; border-top-width: 1px; border-left-width: 1px; }
.hero__corner--tr { top: 96px; right: 32px; border-top-width: 1px; border-right-width: 1px; }
.hero__corner--bl { bottom: 32px; left: 32px; border-bottom-width: 1px; border-left-width: 1px; }
.hero__corner--br { bottom: 32px; right: 32px; border-bottom-width: 1px; border-right-width: 1px; }

.hero__content {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  max-width: 768px;
}
.hero__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__label-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #B8860B 20%, #DAA520 50%, #B8860B 80%, transparent);
}
.hero__label-text {
  color: #DAA520;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 6rem; } }

.hero__subtitle {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1.125rem;
  font-style: italic;
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
@media (min-width: 640px) { .hero__subtitle { font-size: 1.25rem; } }

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1px solid #B8860B;
  color: #DAA520;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(184, 134, 11, 0.1); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #B8860B;
  color: #080810;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: background 0.3s;
  cursor: pointer;
}
.btn-gold:hover { background: #DAA520; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg {
  color: rgba(184, 134, 11, 0.5);
  width: 24px; height: 24px;
}

/* =============================================
   ABOUT (SOBRE)
   ============================================= */
.about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .about { padding: 8rem 0; } }
.about__bg {
  position: absolute; inset: 0;
}
.about__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.about__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(245, 240, 232, 0.85);
}
.about__inner {
  position: relative;
}
.about__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about__label-line {
  height: 1px; width: 48px;
  background: #B8860B;
}
.about__label-text {
  color: #B8860B;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
}
.about__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}
.about__text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .about__text h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about__text h2 { font-size: 3rem; } }
.about__text h2 span { color: #B8860B; }
.about__text p {
  color: rgba(26, 26, 46, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.about__text p:first-of-type {
  font-size: 1.125rem;
  color: rgba(26, 26, 46, 0.8);
}
.about__text p strong { color: #B8860B; }
.about__text .art-deco-line {
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #B8860B, transparent);
}

.about__coin {
  display: flex;
  justify-content: center;
}
.about__coin-wrapper {
  position: relative;
}
.about__coin-ring {
  position: absolute;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50%;
}
.about__coin-ring--outer {
  inset: -48px;
  border-color: rgba(184, 134, 11, 0.1);
}
.about__coin-ring--inner {
  inset: -24px;
}
.about__coin-wrapper img {
  width: 320px; height: 320px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(184, 134, 11, 0.2);
}
@media (min-width: 1024px) {
  .about__coin-wrapper img { width: 384px; height: 384px; }
}

/* =============================================
   FEATURES (CARACTERÍSTICAS)
   ============================================= */
.features {
  position: relative;
  padding: 6rem 0;
  background: #080810;
}
@media (min-width: 1024px) { .features { padding: 8rem 0; } }

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}
.features__header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.features__header-label .art-deco-line {
  flex: 1;
  max-width: 100px;
}
.features__header-label span {
  color: #DAA520;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
}
.features__header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #F5F0E8;
}
@media (min-width: 640px) { .features__header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .features__header h2 { font-size: 3rem; } }

/* Main cards */
.features__main {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .features__main { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.feature-card {
  position: relative;
  background: #0d0d1a;
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 2rem 2rem 2.5rem;
  transition: border-color 0.5s;
}
@media (min-width: 1024px) { .feature-card { padding: 2.5rem; } }
.feature-card:hover { border-color: rgba(184, 134, 11, 0.5); }

.feature-card__number {
  position: absolute;
  top: -16px; left: 32px;
  background: #B8860B;
  color: #080810;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  letter-spacing: 0.1em;
}
.feature-card__icon {
  color: #DAA520;
  width: 32px; height: 32px;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.feature-card h3 {
  font-size: 1.5rem;
  color: #F5F0E8;
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature-card p {
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  font-size: 0.875rem;
}
.feature-card__line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, #B8860B, transparent);
  transition: width 0.7s;
}
.feature-card:hover .feature-card__line { width: 100%; }

/* Divider */
.features__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.features__divider .art-deco-line { flex: 1; max-width: 200px; }
.features__divider-diamond {
  width: 12px; height: 12px;
  transform: rotate(45deg);
  border: 1px solid rgba(184, 134, 11, 0.5);
}

/* Secondary features */
.features__secondary {
  display: grid;
  border-top: 1px solid rgba(184, 134, 11, 0.1);
}
@media (min-width: 768px) {
  .features__secondary { grid-template-columns: 1fr 1fr; }
}
.secondary-feature {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: background 0.3s;
}
.secondary-feature:hover { background: rgba(184, 134, 11, 0.05); }
.secondary-feature__icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  padding: 0.625rem;
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: #DAA520;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondary-feature__icon svg { width: 20px; height: 20px; }
.secondary-feature h4 {
  font-size: 1.25rem;
  color: #F5F0E8;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.secondary-feature p {
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  position: relative;
  overflow: hidden;
}
.gallery__band {
  position: relative;
  height: 50vh;
  min-height: 400px;
}
.gallery__band > img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__band-overlay {
  position: absolute; inset: 0;
  background: rgba(8, 8, 16, 0.4);
}
.gallery__coin {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__coin img {
  width: 256px; height: 256px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(184, 134, 11, 0.4));
  animation: float 4s ease-in-out infinite;
}
@media (min-width: 640px) { .gallery__coin img { width: 320px; height: 320px; } }
@media (min-width: 1024px) { .gallery__coin img { width: 384px; height: 384px; } }

.gallery__border {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #B8860B, transparent);
}
.gallery__border--top { top: 0; }
.gallery__border--bottom { bottom: 0; }

/* =============================================
   THEORY (TEORIA)
   ============================================= */
.theory {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .theory { padding: 8rem 0; } }
.theory__bg {
  position: absolute; inset: 0;
}
.theory__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.theory__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(8, 8, 16, 0.85);
}
.theory__grid {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .theory__grid { grid-template-columns: 1fr 1.2fr; }
}
.theory__left {
  position: relative;
}
@media (min-width: 1024px) {
  .theory__left { position: sticky; top: 8rem; }
}
.theory__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.theory__label-line { height: 1px; width: 48px; background: #B8860B; }
.theory__label-text {
  color: #DAA520;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
}
.theory__left h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.15;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .theory__left h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .theory__left h2 { font-size: 3.75rem; } }
.theory__left p {
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.theory__left p:last-of-type {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.875rem;
}
.theory__left em { font-style: italic; }

/* Principles */
.theory__principles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.principle {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(184, 134, 11, 0.15);
  background: rgba(8, 8, 16, 0.6);
  backdrop-filter: blur(4px);
  transition: border-color 0.4s, background 0.4s;
}
.principle:hover {
  border-color: rgba(184, 134, 11, 0.4);
  background: rgba(184, 134, 11, 0.05);
}
.principle__number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 134, 11, 0.4);
  color: #DAA520;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  transition: background 0.3s, color 0.3s;
}
.principle:hover .principle__number {
  background: #B8860B;
  color: #080810;
}
.principle h4 {
  font-size: 1.125rem;
  color: #F5F0E8;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.principle p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  background: #060610;
  padding: 5rem 0 3rem;
}
.footer__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 134, 11, 0.5), transparent);
}
.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; }
}

.footer__logo {
  margin-bottom: 2rem;
}
.footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer h3 {
  font-size: 1.125rem;
  color: #F5F0E8;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__contact a,
.footer__contact div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.footer__contact a:hover { color: #DAA520; }
.footer__contact svg { color: #B8860B; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

.footer__menu a {
  display: block;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.footer__menu a:hover { color: #DAA520; }

.footer__newsletter p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__form-label {
  display: block;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer__form-row {
  display: flex;
}
.footer__form-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(184, 134, 11, 0.3);
  padding: 0.75rem 1rem;
  color: #F5F0E8;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}
.footer__form-row input[type="email"]::placeholder {
  color: rgba(245, 240, 232, 0.3);
}
.footer__form-row input[type="email"]:focus {
  border-color: #DAA520;
}
.footer__form-row button {
  padding: 0 1rem;
  background: #B8860B;
  color: #080810;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
}
.footer__form-row button:hover { background: #DAA520; }
.footer__form-row button svg { width: 18px; height: 18px; }

.footer__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  cursor: pointer;
}
.footer__checkbox input {
  margin-top: 2px;
  accent-color: #B8860B;
  width: 16px; height: 16px;
  cursor: pointer;
}
.footer__checkbox span {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
.footer__bottom p:last-child { letter-spacing: 0.1em; }

/* ---- Toast notification ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: #B8860B;
  color: #080810;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- SVG Icons inline ---- */
.icon { display: inline-block; vertical-align: middle; }
