@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=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --parchment: #FAF7F0;
  --parchment-dark: #F0EDE5;
  --ink-black: #2C2C2C;
  --charcoal: #4A4A4A;
  --mustard: #D4A72C;
  --mustard-light: #E5B73B;
  --mustard-dark: #B08A1F;
  --sepia: #8B7355;
  --rust: #A0522D;
  --cream: #FFFDF7;
  --border-dark: #3D3D3D;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background-color: var(--parchment);
  color: var(--ink-black);
  line-height: 1.7;
  padding-top: 64px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink-black);
}

.rdm-navbar {
  background-color: rgba(250, 247, 240, 0.97) !important;
  border-bottom: 2px solid var(--charcoal);
  backdrop-filter: blur(8px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.rdm-logo-nav {
  height: 40px;
  width: auto;
}

.rdm-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.rdm-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  color: var(--charcoal);
  font-size: 1.4rem;
}

.rdm-toggler:focus {
  box-shadow: none;
}

.rdm-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-black) !important;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s ease;
}

.rdm-nav-link:hover {
  color: var(--mustard-dark) !important;
}

.rdm-icon-link {
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: color 0.2s ease;
  text-decoration: none;
}

.rdm-icon-link:hover {
  color: var(--mustard-dark);
}

.rdm-hero {
  padding: 2rem 0 2.5rem;
}

.rdm-masthead-badge {
  display: inline-block;
  padding: 0.35rem 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
}

.rdm-masthead-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--mustard-dark);
}

.rdm-hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

.rdm-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--ink-black);
  margin-bottom: 0.25rem;
}

.rdm-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--mustard-dark);
  margin-bottom: 1rem;
}

.rdm-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 280px;
  margin: 1rem auto;
}

.rdm-ornament::before,
  .rdm-ornament::after {
  content: '';
  flex: 1;
  height: 2px;
  background-color: var(--charcoal);
  opacity: 0.3;
}

.rdm-ornament-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 280px;
  margin: 1rem auto;
}

.rdm-ornament-gold::before,
  .rdm-ornament-gold::after {
  content: '';
  flex: 1;
  height: 2px;
  background-color: var(--mustard-dark);
  opacity: 0.5;
}

.rdm-diamond {
  width: 8px;
  height: 8px;
  background-color: var(--mustard);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.rdm-hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto 0.75rem;
}

.rdm-gold-rule {
  width: 80px;
  height: 2px;
  background-color: var(--mustard);
}

.rdm-hero-img-wrap {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--charcoal);
}

.rdm-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: sepia(15%) contrast(1.05);
  transition: filter 0.3s ease;
}

.rdm-hero-img:hover {
  filter: sepia(5%) contrast(1.1);
}

.rdm-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background-color: rgba(44, 44, 44, 0.75);
}

.rdm-hero-caption p {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0;
}

.rdm-cta-box {
  background-color: var(--cream);
  border: 3px double var(--border-dark);
  padding: 1.5rem;
}

.rdm-cta-text {
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.rdm-text-gold {
  color: var(--mustard-dark);
}

.rdm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.rdm-btn-dark {
  background-color: var(--charcoal);
  color: var(--cream);
}

.rdm-btn-dark:hover {
  background-color: var(--ink-black);
  color: var(--cream);
}

.rdm-btn-gold {
  background-color: var(--mustard);
  color: var(--ink-black);
}

.rdm-btn-gold:hover {
  background-color: var(--mustard-dark);
  color: var(--ink-black);
}

.rdm-section-rule {
  height: 1px;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(74, 74, 74, 0.15);
}

.rdm-section {
  padding: 3rem 0;
}

.rdm-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--mustard-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.rdm-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.rdm-badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.75rem;
  background-color: var(--mustard);
  color: var(--ink-black);
  margin-bottom: 1rem;
}

.rdm-p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.rdm-drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  float: left;
  font-size: 3.2em;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--mustard-dark);
  font-weight: 700;
}

.rdm-card {
  background: var(--cream);
  border: 1px solid rgba(74, 74, 74, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rdm-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.rdm-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: sepia(15%) contrast(1.05);
  transition: filter 0.3s ease;
}

.rdm-card:hover .rdm-card-img {
  filter: sepia(5%) contrast(1.1);
}

.rdm-card-body {
  padding: 1rem;
}

.rdm-card-caption {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-style: italic;
  text-align: center;
  color: var(--sepia);
  margin-bottom: 0;
}

.rdm-quote-box {
  background-color: var(--cream);
  border-left: 3px solid var(--mustard);
  padding: 1rem 1.25rem;
}

.rdm-quote-box p {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0;
}

.rdm-ejes-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mustard-dark);
  margin-bottom: 0.5rem;
}

.rdm-ejes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rdm-ejes-list li {
  font-size: 0.75rem;
  color: var(--charcoal);
  padding: 0.15rem 0;
}

.rdm-tiny-dot {
  font-size: 0.35rem;
  color: var(--mustard-dark);
  margin-right: 0.4rem;
  vertical-align: middle;
}

.rdm-claves-box {
  background-color: var(--cream);
  border: 3px double var(--mustard-dark);
  padding: 1rem 1.25rem;
  text-align: center;
}

.rdm-claves-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mustard-dark);
  margin-bottom: 0.4rem;
}

.rdm-claves-text {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0;
  line-height: 1.6;
}

.rdm-contact {
  padding: 3rem 0;
}

.rdm-contact-box {
  background-color: var(--cream);
  border: 3px double var(--border-dark);
  padding: 2.5rem 2rem;
}

.rdm-contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.rdm-contact-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--mustard-dark);
  margin-bottom: 1.25rem;
}

.rdm-p-small {
  font-size: 0.75rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.rdm-link {
  font-weight: 600;
  color: var(--mustard-dark);
  text-decoration: underline;
}

.rdm-footer {
  background-color: var(--ink-black);
  padding: 3rem 0 1.5rem;
}

.rdm-footer-logo {
  height: 60px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0.9);
}

.rdm-footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.rdm-footer-motto {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--mustard-light);
}

.rdm-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  margin-bottom: 0.75rem;
}

.rdm-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rdm-footer-list li {
  padding: 0.2rem 0;
}

.rdm-footer-link {
  font-size: 0.75rem;
  color: rgba(250, 248, 240, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rdm-footer-link:hover {
  color: var(--mustard-light);
}

.rdm-footer-text {
  font-size: 0.75rem;
  color: rgba(250, 248, 240, 0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

.rdm-footer-bottom {
  border-top: 1px solid rgba(250, 248, 240, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}

.rdm-footer-bottom p {
  font-size: 0.7rem;
  color: rgba(250, 248, 240, 0.5);
  margin-bottom: 0;
}

.rdm-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background-color: var(--charcoal);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  border-radius: 0;
}

.rdm-scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

.rdm-scroll-top:hover {
  background-color: var(--mustard-dark);
  color: var(--ink-black);
}

@media (min-width: 768px) {
  .rdm-hero-title {
    font-size: 4.5rem;
  }

  .rdm-hero-subtitle {
    font-size: 3rem;
  }

  .rdm-hero-img {
    height: 350px;
  }

  .rdm-hero-logo {
    height: 120px;
  }

  .rdm-section-title {
    font-size: 2rem;
  }

  .rdm-card-img {
    height: 240px;
  }

  .rdm-section {
    padding: 4rem 0;
  }

  .rdm-contact {
    padding: 4rem 0;
  }
}

@media (min-width: 992px) {
  .rdm-hero-title {
    font-size: 5.5rem;
  }

  .rdm-hero-subtitle {
    font-size: 3.8rem;
  }

  .rdm-hero-img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .rdm-drop-cap::first-letter {
    font-size: 2.5em;
  }
}
