@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --burgundy: #5a0a1e;
  --burgundy-light: #7a1a32;
  --gold: #c8a05a;
  --gold-light: #d4b87a;
  --cream: #fdfbf7;
  --cream-dark: #f5f0e8;
  --warm-gray: #6b5b50;
  --charcoal: #2a2420;
  --text: #3a332e;
  --text-light: #8a7d72;
  --border: #e8e0d4;
  --border-dark: #c8a05a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--burgundy);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--cream);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.topbar-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.5px;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.topbar-nav a:hover {
  color: var(--burgundy);
  border-bottom-color: var(--gold);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

main {
  padding-top: 64px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}

.hero-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--cream), transparent);
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
  width: 100%;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--burgundy);
}

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.hero-text strong {
  color: var(--burgundy);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-cta .btn {
  padding: 0.85rem 2rem;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section-alt {
  background: var(--cream-dark);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section h2 {
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
  font-family: 'Cormorant Garamond', serif;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}

.feature-card-img {
  position: relative;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-img img {
  transform: scale(1.03);
}

.feature-card-body {
  padding: 2.5rem 2.5rem 2rem;
}

.feature-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  background: var(--cream-dark);
  color: var(--warm-gray);
  border: 1px solid var(--border);
}

.tag i {
  font-size: 0.65rem;
  color: var(--gold);
}

.feature-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--burgundy);
}

.feature-card-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.feature-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

.feature-card-footer span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-card-footer span i {
  color: var(--gold);
  font-size: 0.75rem;
}

.read-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.read-link:hover {
  color: var(--gold);
  border-bottom-color: var(--burgundy);
  gap: 0.6rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img {
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-img:hover img {
  transform: scale(1.03);
}

.split-text h3 {
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  color: var(--burgundy);
}

.split-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.split-text ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.split-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.split-text ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

.section-quote {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.section-quote i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.section-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
}

.closing-section {
  background: var(--burgundy);
  color: var(--cream);
}

.closing-section .section-eyebrow {
  color: var(--gold-light);
}

.closing-section h2 {
  color: var(--cream);
}

.closing-section .section-desc {
  color: rgba(253, 251, 247, 0.75);
}

.closing-section .btn-gold {
  background: var(--gold);
  color: var(--burgundy);
  border-color: var(--gold);
}

.closing-section .btn-gold:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--burgundy);
}

.closing-section .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
}

.closing-section .btn-outline:hover {
  background: var(--cream);
  color: var(--burgundy);
}

.page-footer {
  background: var(--charcoal);
  color: rgba(253, 251, 247, 0.6);
  padding: 2.5rem 3rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(253, 251, 247, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(253, 251, 247, 0.08);
  color: var(--cream);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--burgundy);
}

@media (max-width: 992px) {
  .topbar-inner {
    padding: 0 1.5rem;
  }
  .topbar-nav {
    display: none;
  }
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-img {
    position: relative;
    width: 100%;
    height: 320px;
    order: -1;
  }
  .hero-img::after {
    display: none;
  }
  .hero-body {
    padding: 3rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section, .section-inner {
    padding: 3rem 1.5rem;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
