/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fdf8f0;
  --cream-dark: #f5ede0;
  --burgundy: #7c1d24;
  --burgundy-light: #a32830;
  --black: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #e8e0d4;
  --white: #ffffff;
  --font-body: 'Literata', Georgia, 'Times New Roman', serif;
  --font-heading: 'Bitter', Georgia, 'Times New Roman', serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--burgundy);
  color: var(--white);
  z-index: 1000;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-text { font-size: 1.25rem; color: var(--burgundy); font-family: var(--font-heading); letter-spacing: 0.1em; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  transition: transform 0.3s ease;
}
.header-hidden { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--burgundy); letter-spacing: -0.01em; }
.logo:hover { color: var(--burgundy-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--burgundy);
}
.nav-toggle-icon, .nav-toggle-icon::before, .nav-toggle-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
  position: relative;
}
.nav-toggle-icon::before, .nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }
.nav-open .nav-toggle-icon { background: transparent; }
.nav-open .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.nav { display: flex; align-items: center; gap: 0.5rem; }
.nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: var(--burgundy); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 240, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 29, 36, 0.03) 0%, transparent 50%, rgba(124, 29, 36, 0.03) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--burgundy);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-light); border-color: var(--burgundy-light); color: var(--white); }
.btn-secondary { background: transparent; color: var(--burgundy); }
.btn-secondary:hover { background: var(--burgundy); color: var(--white); }

/* ===== Section ===== */
.section {
  padding: 5rem 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== Directions ===== */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.direction-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition);
  cursor: default;
}
.direction-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 29, 36, 0.08);
}
.direction-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.direction-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.direction-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 2rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--burgundy);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.testimonial-author { font-weight: 600; font-size: 0.9rem; color: var(--burgundy); }
.testimonial-role { font-size: 0.82rem; color: var(--gray); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.8); margin-left: auto; margin-right: auto; }
.cta-banner .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--burgundy); }

/* ===== About Page Styles ===== */
.page-hero {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--burgundy);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.about-story h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.about-story h2:first-child { margin-top: 0; }
.about-story p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-story blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--burgundy);
  background: var(--cream-dark);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.1rem;
}

/* ===== Contact Page ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: var(--white);
  transition: border-color var(--transition);
  margin-bottom: 1.25rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form .form-status {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-status.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
  font-size: 1.1rem;
}
.contact-info-text { font-size: 0.95rem; }
.contact-info-text a { font-weight: 500; }
.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
  font-weight: 600;
  color: var(--burgundy);
  transition: all var(--transition);
  font-size: 0.85rem;
}
.contact-social a:hover { background: var(--burgundy); color: var(--white); }

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col p { font-size: 0.88rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== Animations on Scroll ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Magazine Pull Quote ===== */
.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--burgundy);
  text-align: center;
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem 0;
  border-top: 2px solid var(--gray-light);
  border-bottom: 2px solid var(--gray-light);
}

/* ===== Services / Partners List ===== */
.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.partner-badge {
  padding: 0.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--burgundy);
  transition: all var(--transition);
}
.partner-badge:hover { border-color: var(--burgundy); background: var(--cream-dark); }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
