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

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

:root {
  --ivory: #F5F0E8;
  --dark-brown: #1A1208;
  --burgundy: #6B1F1F;
  --primary-text: #1A1208;
  --secondary-text: #6B6355;
  --card-bg: #EDE8DF;
  --border: #D8D0C4;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--ivory);
  color: var(--primary-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Cursor */
body {
  cursor: none;
}

.custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--burgundy);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
  transition: width 0.2s, height 0.2s;
}

.custom-cursor.active {
  width: 20px;
  height: 20px;
  opacity: 1;
}

@media (hover: none) {
  .custom-cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* Page Load Animation */
body.page-load {
  animation: pageLoadFade 0.6s ease-out;
}

@keyframes pageLoadFade {
  from {
    opacity: 0;
    background-color: #FFFFFF;
  }
  to {
    opacity: 1;
    background-color: var(--ivory);
  }
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  background-color: var(--ivory);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s ease;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-text);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--burgundy);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-cta:hover {
  background-color: var(--burgundy);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--ivory);
  z-index: 99;
  transition: right 0.3s ease;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--primary-text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .mobile-cta {
  display: block;
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--burgundy);
  color: var(--white);
  text-align: center;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 5%;
  min-height: 100vh;
  background-color: var(--ivory);
}

.hero-content {
  padding: 2rem;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9vw;
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--secondary-text);
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-solid {
  background-color: var(--burgundy);
  color: var(--ivory);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-solid:hover {
  background-color: #5a1818;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--burgundy);
  background-color: transparent;
  color: var(--burgundy);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--burgundy);
  border-radius: 2px;
  position: relative;
  z-index: 1;
  box-shadow: -12px 12px 0 0 rgba(107, 31, 31, 0.15);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.3), rgba(245, 240, 232, 0.1));
  z-index: 0;
  border-radius: 2px;
}

/* Ticker Section */
.ticker-section {
  background-color: var(--ivory);
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  gap: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-text);
  white-space: nowrap;
}

.ticker-item:nth-child(even) {
  font-style: italic;
}

.ticker-separator {
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: var(--burgundy);
  margin: 0 1.5rem;
}

.ticker-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Statement Section */
.statement-section {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
}

.section-number {
  position: absolute;
  top: 2rem;
  left: 5%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 700;
  opacity: 0.04;
  color: var(--white);
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.section-body {
  font-size: 1.05rem;
  color: #D0C7B8;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-line {
  font-size: 1rem;
  color: #C48888;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* Parallax Break */
.parallax-break {
  height: 350px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.parallax-break::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(245, 240, 232, 0.5), rgba(245, 240, 232, 0.5));
  z-index: 1;
}

.parallax-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  text-align: center;
  z-index: 2;
  position: relative;
  line-height: 1.4;
  max-width: 90%;
}

/* Services Section */
.services-section {
  background-color: var(--ivory);
  padding: 6rem 5%;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--burgundy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-left: 3px solid var(--burgundy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-text);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 6rem 5%;
  position: relative;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.step-desc {
  font-size: 0.9rem;
  color: #D0C7B8;
  line-height: 1.6;
}

/* Lead Capture */
.lead-capture {
  background-color: var(--ivory);
  padding: 4rem 5%;
  display: flex;
  justify-content: center;
}

.lead-card {
  background-color: var(--white);
  border: 1.5px solid var(--burgundy);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  border-radius: 2px;
}

.lead-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-text);
}

.lead-subtext {
  font-size: 1rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  gap: 1rem;
}

.lead-input {
  flex: 1;
  border: 1px solid var(--border);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--primary-text);
}

.lead-input::placeholder {
  color: #B0A89C;
}

.lead-submit {
  background-color: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.lead-submit:hover {
  background-color: #5a1818;
}

.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary-text);
}

.success-message.show {
  display: block;
}

.success-message p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--ivory);
  padding: 6rem 5%;
  position: relative;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-text);
  flex: 1;
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 4rem 5% 2rem;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.85rem;
  color: #D0C7B8;
}

.footer-section h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-section a {
  display: inline-block;
  color: #D0C7B8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--burgundy);
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: var(--burgundy);
  color: var(--white);
}

.whatsapp-btn {
  background-color: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-weight: 600;
}

.whatsapp-btn:hover {
  background-color: #5a1818;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  bordered-top: 1px solid #2A2A2A;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #B0A89C;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background-color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 50;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #5a1818;
  transform: translateY(-3px);
}

/* Scroll Fade In */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0s;
}

.stagger-2 {
  transition-delay: 0.1s;
}

.stagger-3 {
  transition-delay: 0.2s;
}

.stagger-4 {
  transition-delay: 0.3s;
}

.stagger-5 {
  transition-delay: 0.4s;
}

.stagger-6 {
  transition-delay: 0.5s;
}

.stagger-7 {
  transition-delay: 0.6s;
}

/* Section Label Animation */
.animated-label {
  position: relative;
  display: inline-block;
}

.animated-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--burgundy);
  animation: drawLine 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-left {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 1.1rem;
  color: var(--white);
}

.contact-right {
  background-color: var(--ivory);
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  border: 1px solid var(--border);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--primary-text);
  background-color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #B0A89C;
}

.form-submit {
  background-color: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-submit:hover {
  background-color: #5a1818;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.contact-success.show {
  display: block;
}

.contact-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--primary-text);
}

/* Investor Form */
.investor-hero {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 6rem 5%;
  text-align: center;
}

.investor-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.investor-hero-subtext {
  font-size: 1.2rem;
  color: #D0C7B8;
}

.investor-form-section {
  background-color: var(--ivory);
  padding: 4rem 5%;
}

.investor-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.investor-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--burgundy);
}

.checkbox-item label {
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--primary-text);
}

.form-select {
  border: 1px solid var(--border);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--primary-text);
  background-color: var(--white);
}

/* About Page */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 5%;
  min-height: 100vh;
}

.about-image {
  position: relative;
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--burgundy);
  border-radius: 2px;
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--burgundy);
  border-radius: 2px;
  z-index: -1;
}

.about-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-bio {
  font-size: 1.05rem;
  color: var(--secondary-text);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-values {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.value-item {
  position: relative;
  padding-top: 1rem;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 60px;
  height: 1.5px;
  background-color: var(--burgundy);
}

.value-text {
  font-weight: 600;
  color: var(--primary-text);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services Page */
.services-page-section {
  background-color: var(--ivory);
  padding: 6rem 5%;
  position: relative;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.services-page-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  cursor: pointer;
}

.services-page-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.services-page-card-content {
  padding: 2rem;
}

.services-page-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-page-card-desc {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

.services-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Service Detail Pages */
.service-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 4rem 5% 3rem;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(245, 240, 232, 0.4), rgba(245, 240, 232, 0.4));
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-content-section {
  background-color: var(--ivory);
  padding: 4rem 5%;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--primary-text);
}

.service-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--primary-text);
}

.service-content p {
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-cta {
  display: inline-block;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 5%;
    min-height: auto;
  }

  .hero-headline {
    font-size: 6vw;
  }

  .hero-image-container {
    min-height: 300px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

  .parallax-quote {
    font-size: 1.8rem;
  }

  .contact-wrapper,
  .about-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 1rem 5%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-solid,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 4vw;
  }

  .section-number {
    font-size: 5rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .ticker-item {
    padding: 0 1rem;
    font-size: 0.8rem;
  }

  .parallax-quote {
    font-size: 1.3rem;
  }

  .contact-heading {
    font-size: 2.5rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
