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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ========== VARIABLES ========== */
:root {
  --cream: #FBF3E4;
  --cream-dark: #F0E4CC;
  --terracotta: #C4572A;
  --terracotta-dark: #A3441F;
  --amber: #D99A2B;
  --amber-light: #F0C96A;
  --brown: #2D1B0E;
  --brown-light: #5C3D24;
  --sage: #6B7F5E;
  --sage-light: #8FA47E;
  --white: #FFFDF8;
  --shadow: rgba(45, 27, 14, 0.08);

  --font-display: 'Young Serif', serif;
  --font-body: 'Karla', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --max-width: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ========== BASE ========== */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p {
  max-width: 60ch;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem var(--space-md);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-light);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.nav-wa:hover {
  background: var(--sage-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brown);
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  padding-top: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--brown);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(45, 27, 14, 0.25) 0%,
    rgba(45, 27, 14, 0.55) 60%,
    rgba(45, 27, 14, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  color: var(--cream);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 243, 228, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 243, 228, 0.2);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--amber-light);
  animation: fadeUp 0.8s ease both;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--amber);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  max-width: 14ch;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(251, 243, 228, 0.85);
  max-width: 38ch;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(251, 243, 228, 0.15);
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-meta-item {
  font-size: 0.85rem;
  color: rgba(251, 243, 228, 0.7);
}

.hero-meta-item strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(251, 243, 228, 0.12);
  color: var(--cream);
  border: 1px solid rgba(251, 243, 228, 0.25);
}

.btn-secondary:hover {
  background: rgba(251, 243, 228, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--terracotta);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.about-text h2 {
  color: var(--terracotta);
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-sm);
  color: var(--brown-light);
}

.about-text p:first-of-type {
  font-size: 1.1rem;
  color: var(--brown);
}

/* ========== SPECIALTIES ========== */
.specialties {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: var(--space-xs);
}

.section-header h2 {
  color: var(--brown);
}

.section-header p {
  margin-top: var(--space-xs);
  color: var(--brown-light);
  font-size: 1.05rem;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.specialty-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-4px);
}

.specialty-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.specialty-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-card-img img {
  transform: scale(1.05);
}

.specialty-card-body {
  padding: var(--space-md);
}

.specialty-card-body h3 {
  margin-bottom: 0.4rem;
  color: var(--brown);
}

.specialty-card-body p {
  font-size: 0.9rem;
  color: var(--brown-light);
}

.specialty-card-body .price {
  display: inline-block;
  margin-top: var(--space-xs);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.95rem;
}

/* ========== GALLERY STRIP ========== */
.gallery-strip {
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.gallery-strip-inner {
  display: flex;
  gap: var(--space-sm);
  animation: scroll-left 30s linear infinite;
}

.gallery-strip-inner img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

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

/* ========== REVIEWS ========== */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--brown);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(196, 87, 42, 0.08);
}

.reviews .section-header .label {
  color: var(--amber-light);
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.review-card {
  background: rgba(251, 243, 228, 0.06);
  border: 1px solid rgba(251, 243, 228, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--terracotta);
  opacity: 0.4;
  position: absolute;
  top: 0.6rem;
  left: 1.2rem;
  line-height: 1;
}

.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(251, 243, 228, 0.9);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-sm);
}

.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(251, 243, 228, 0.5);
}

.review-card cite strong {
  display: block;
  color: var(--amber-light);
  font-weight: 600;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(251, 243, 228, 0.06);
  border: 1px solid rgba(251, 243, 228, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-md);
}

.google-rating-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
}

.google-rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.google-rating-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
}

.google-rating-count {
  font-size: 0.85rem;
  color: rgba(251, 243, 228, 0.55);
}

/* ========== INFO / LOCATION ========== */
.info {
  padding: var(--space-2xl) 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.info-card h3 {
  color: var(--terracotta);
  margin-bottom: var(--space-md);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.hours-row .day {
  font-weight: 600;
}

.hours-row .time {
  color: var(--brown-light);
}

.location-address {
  font-size: 1.05rem;
  color: var(--brown-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.location-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.location-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--terracotta);
  font-weight: 500;
  transition: color 0.2s;
}

.location-links a:hover {
  color: var(--terracotta-dark);
}

.location-links svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========== CTA SECTION ========== */
.cta {
  padding: var(--space-2xl) 0;
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.cta p {
  margin: 0 auto var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.cta .btn {
  background: var(--white);
  color: var(--terracotta);
  font-weight: 700;
}

.cta .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  padding: var(--space-lg) 0;
  background: var(--brown);
  color: rgba(251, 243, 228, 0.5);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links a {
  color: rgba(251, 243, 228, 0.5);
  transition: color 0.2s;
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image {
    aspect-ratio: 16 / 10;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 24px var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-meta {
    flex-direction: column;
    gap: var(--space-sm);
  }

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

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .gallery-strip-inner img {
    width: 260px;
    height: 180px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
