/* ===== CSS Variables ===== */
:root {
  --background: #f7f5f2;
  --foreground: #1a1410;
  --card: #f2ede8;
  --primary: #4a3423;
  --primary-foreground: #f7f5f2;
  --secondary: #e8dfd4;
  --muted: #e0d8ce;
  --muted-foreground: #6b5d50;
  --accent: #b8860b;
  --wood-dark: #2a1f14;
  --wood-medium: #4d3a28;
  --cream: #ebe5dc;
  --cream-dark: #d9d0c3;
  --gold: #d4a853;
  --gold-dark: #a67c3d;
  --border: #d4c8b8;
  --radius: 0.5rem;
  --shadow-wood: 0 10px 40px -10px rgba(42, 31, 20, 0.3);
  --shadow-card: 0 4px 20px -4px rgba(42, 31, 20, 0.15);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-10px) translateX(-50%); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-hero {
  background: var(--gold);
  color: var(--wood-dark);
  font-weight: 600;
  border: 2px solid rgba(166, 124, 61, 0.2);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-hero:hover {
  background: var(--gold-dark);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  font-weight: 500;
}

.btn-hero-outline:hover {
  background: rgba(235, 229, 220, 0.1);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(235, 229, 220, 0.4);
}

.btn-outline-light:hover {
  background: rgba(235, 229, 220, 0.1);
}

.btn-xl {
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.btn-full {
  width: 100%;
  margin-top: 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(42, 31, 20, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: rgba(235, 229, 220, 0.8);
  font-family: var(--font-body);
  transition: color 0.3s;
}

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

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--cream);
  padding: 0.5rem;
  cursor: pointer;
}

.nav-mobile {
  padding: 1rem;
  margin-top: 1rem;
  background-color: rgb(0, 0, 0);
  transition: 1s ease-in-out;
}

.nav-mobile a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.47);
  display: block;
  padding: 0.75rem 0;
  color: rgba(235, 229, 220, 0.8);
  font-family: var(--font-body);
}

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

.nav-mobile .btn {
  margin-top: 0.5rem;
  display: flex;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo {
    font-size: 1.75rem;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 31, 20, 0.95) 0%, rgba(77, 58, 40, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
  max-width: 800px;
}

.hero-tagline {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: rgba(235, 229, 220, 0.9);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(235, 229, 220, 0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.info-item svg {
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(235, 229, 220, 0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: rgba(235, 229, 220, 0.6);
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-description {
    font-size: 1.25rem;
  }
}

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

/* ===== Section Styles ===== */
.section-tag {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  text-align: center;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: center;
}

.section-title-light {
  color: var(--cream);
}

.section-subtitle {
  color: var(--muted-foreground);
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-subtitle-light {
  color: rgba(235, 229, 220, 0.8);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ===== About Section ===== */
.about {
  padding: 6rem 0;
  background: var(--background);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--foreground);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

/* ===== Services Section ===== */
.services {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-wood);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(74, 52, 35, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.1);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-family: var(--font-body);
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2rem;
  width: 8rem;
  height: 8rem;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  filter: blur(40px);
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
  background: rgba(74, 52, 35, 0.05);
  border-radius: 50%;
  filter: blur(40px);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.review-card {
  background: rgba(242, 237, 232, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 200, 184, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.quote-icon {
  color: rgba(212, 168, 83, 0.3);
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-body);
  color: rgba(26, 20, 16, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--foreground);
}

.author-rating {
  display: flex;
  gap: 0.125rem;
  margin-top: 0.25rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(74, 52, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Contact Section ===== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: rgba(235, 229, 220, 0.1);
  border: 1px solid rgba(235, 229, 220, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(235, 229, 220, 0.9);
  transition: color 0.3s;
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(212, 168, 83, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.6);
}

.contact-value {
  font-family: var(--font-body);
  font-weight: 500;
}

.contact-address {
  font-family: var(--font-body);
  line-height: 1.7;
}

.service-areas-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.6);
  margin: 1.5rem 0 0.75rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(235, 229, 220, 0.1);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.8);
}

.hours-list {
  flex: 1;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  padding: 0.5rem 0;
}

.hours-row span:first-child {
  color: rgba(235, 229, 220, 0.8);
}

.hours-row span:last-child {
  color: var(--cream);
  font-weight: 500;
}

.open-badge {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(212, 168, 83, 0.2);
  border-radius: 0.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.9);
}

.open-badge strong {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--wood-dark);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.7);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.7);
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

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

.footer-links span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links .divider {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(235, 229, 220, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(235, 229, 220, 0.5);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-links {
    flex-direction: row;
  }
  
  .footer-links .divider {
    display: inline;
    color: rgba(235, 229, 220, 0.3);
  }
}
