:root {
  --bg: #FAF7F4;
  --bg-grad-1: #FAF7F4;
  --bg-grad-2: #F2E6DD;
  --primary: #C8816A;
  --primary-dark: #A86952;
  --secondary: #8FA888;
  --text: #2C2C2C;
  --muted: #6b6660;
  --footer: #1E1710;
  --card-bg: rgba(255, 255, 255, 0.6);
  --card-border: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 4px 14px rgba(60, 40, 30, 0.06);
  --shadow-md: 0 10px 30px rgba(60, 40, 30, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 244, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: rgba(44,44,44,0.08);
  box-shadow: 0 2px 14px rgba(60,40,30,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
}
.brand svg { width: 22px; height: 22px; color: var(--primary); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 247, 244, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(44,44,44,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    width: 100%;
  }
  .nav-links a.active::after { display: none; }
}

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
@media (max-width: 760px) { section { padding: 64px 0; } }

.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF1EA 0%, #F5E3D7 50%, #EFD5C4 100%);
  padding: 120px 0 130px;
}
.hero-paw {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 480px;
  opacity: 0.07;
  color: var(--primary);
  pointer-events: none;
}
.hero-paw-2 {
  position: absolute;
  left: -40px;
  top: 40px;
  width: 200px;
  opacity: 0.05;
  color: var(--primary);
  pointer-events: none;
  transform: rotate(-20deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
}
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(120, 70, 50, 0.25);
  border: 6px solid rgba(255,255,255,0.6);
  aspect-ratio: 4 / 3;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 880px) {
  .hero { padding: 90px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { text-align: center; }
  .hero-desc { margin: 0 auto; }
}

/* ===== FEATURE / IMAGE STRIP ===== */
.feature-section {
  background: linear-gradient(180deg, #F5EFE8 0%, #FAF7F4 100%);
  padding: 96px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.feature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.7);
}
.feature-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover img { transform: scale(1.04); }
.feature-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,23,16,0) 45%, rgba(30,23,16,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.feature-card .overlay-text {
  color: #fff;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { aspect-ratio: 4 / 3; }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: linear-gradient(180deg, #FAF7F4 0%, #F5EFE8 100%);
  padding: 72px 0;
}
.intro-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.intro-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.intro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.intro-card .emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.intro-card .label {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
}
@media (max-width: 640px) {
  .intro-row { grid-template-columns: 1fr; }
}

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, #F5EFE8 0%, #FAF7F4 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .icon {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(200, 129, 106, 0.12);
  border-radius: 16px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, #FAF1EA 0%, #F5E3D7 100%);
  padding: 96px 0 72px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: 12px;
}
.page-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .updated {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--primary-dark);
  background: rgba(200,129,106,0.1);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(180deg, #FAF7F4 0%, #F5EFE8 100%);
}
.about-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.about-card p {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-card p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .about-card { padding: 36px 24px; }
}

/* ===== LEGAL ===== */
.legal-section { background: var(--bg); }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.legal-content p { margin-bottom: 18px; color: var(--text); }
.legal-content h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--primary-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content .contact-block {
  margin-top: 12px;
  padding: 20px 22px;
  background: rgba(143, 168, 136, 0.10);
  border-radius: 14px;
  border-left: 3px solid var(--secondary);
}
.legal-content .contact-block p { margin-bottom: 4px; }
@media (max-width: 640px) {
  .legal-content { padding: 36px 24px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer);
  color: #d8cfc7;
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tag {
  font-size: 0.9rem;
  color: #a89c91;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a89c91;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col p, .footer-col a {
  display: block;
  color: #d8cfc7;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #8b8077;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Fade-in on scroll ===== */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
