/* ================================
   ROOT VARIABLES
================================ */
:root {
  --burgundy: #6B0F2B;
  --burgundy-dark: #4A0A1E;
  --burgundy-light: #F5ECF0;
  --blue: #A8C4D4;
  --blue-pale: #EBF3F8;
  --blush: #C49090;
  --off-white: #FAF8F8;
  --white: #FFFFFF;
  --text-dark: #1A0A0F;
  --text-mid: #5C3D47;
  --border: #E8D8DC;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

/* ================================
   RESET & BASE
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================
   NAVIGATION
================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--burgundy);
  letter-spacing: 0.06em;
}

.nav-logo-text span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-mid);
  font-family: var(--font-sans);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-cta {
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--burgundy-dark);
}

/* ================================
   HERO
================================ */
.hero {
  background: var(--burgundy);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.85;
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
  padding: 13px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-white:hover {
  opacity: 0.9;
}

/* ================================
   TAGLINE STRIP
================================ */
.tagline-strip {
  background: var(--burgundy-dark);
  padding: 0.9rem 2rem;
  text-align: center;
}

.tagline-strip p {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.2em;
  font-family: var(--font-sans);
}

/* ================================
   SECTIONS
================================ */
.section {
  padding: 4rem 0;
  background: var(--white);
}

.section-alt {
  background: var(--off-white);
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-align: center;
  opacity: 0.6;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ================================
   SERVICES
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.service-card {
  background: var(--white);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 0.5px solid var(--border);
  border-radius: 14px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--burgundy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.service-icon i {
  font-size: 20px;
  color: var(--burgundy);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--burgundy);
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ================================
   TIMELINE
================================ */
.timeline {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--blush);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  align-items: start;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-left {
  text-align: right;
  padding-right: 1.5rem;
  padding-top: 6px;
}

.tl-right {
  padding-left: 1.5rem;
  padding-top: 6px;
}

.tl-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}

.tl-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
}

.tl-item h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 5px;
}

.tl-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ================================
   PRICING
================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pricing-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 1.5px solid var(--burgundy);
}

.pricing-badge {
  display: inline-block;
  background: var(--burgundy-light);
  color: var(--burgundy);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.pricing-badge.popular {
  background: var(--burgundy);
  color: var(--white);
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.price {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--burgundy);
  margin: 0.5rem 0 0.3rem;
}

.price span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-mid);
}

.price-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pricing-card ul {
  margin-bottom: 1.25rem;
  flex: 1;
}

.pricing-card ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0.5px solid var(--border);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li i {
  color: var(--burgundy);
  font-size: 14px;
  flex-shrink: 0;
}

.btn-burg {
  background: var(--burgundy);
  color: var(--white);
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-sans);
  text-align: center;
  transition: background 0.2s;
}

.btn-burg:hover {
  background: var(--burgundy-dark);
}

.btn-outline-burg {
  background: transparent;
  color: var(--burgundy);
  border: 0.5px solid var(--burgundy);
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-sans);
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-burg:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* ================================
   TESTIMONIALS
================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.testimonial-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--blush);
  font-size: 14px;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  flex: 1;
}

.t-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.t-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--burgundy);
}

.t-role {
  font-size: 12px;
  color: var(--text-mid);
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
  background: var(--burgundy);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--burgundy-dark);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--blue);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h5 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .tl-item h4 {
    font-size: 13px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .timeline {
    max-width: 100%;
  }

  .tl-left,
  .tl-right {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ================================
   HAMBURGER MENU
================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 0.5px solid var(--border);
    gap: 0;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 0.5px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 15px;
    color: var(--burgundy);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ================================
   CONTACT SECTION
================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
  align-items: start;
}

.contact-form-wrap h3,
.contact-details h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
  background: var(--burgundy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0;
  align-self: flex-start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}

.contact-item a,
.contact-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--white);
}

.contact-form .btn-white {
  width: auto;
  align-self: flex-start;
  padding: 13px 32px;
  border-radius: 25px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--white);
  color: var(--burgundy);
}

.contact-form .btn-white:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}