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

:root {
  --bg:        #f5f0e8;
  --surface:   #ede7d9;
  --surface-2: #e0d8c8;
  --border:    #cfc7b4;
  --dark:      #1a1510;
  --dark-2:    #2e2820;
  --accent:    #8b4513;
  --accent-2:  #b8651a;
  --text:      #1a1510;
  --muted:     #6b5e4e;
  --muted-2:   #9c8e7e;
  --font:      'Satoshi', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--dark); }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* === ANIMATIONS === */
.animate {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* === NAV === */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  position: sticky;
  top: 0;
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.logo-accent { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-right a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--bg) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--bg) !important; }

/* === SECTION LABEL === */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 3rem;
}

/* === HERO === */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  gap: 5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 1.75rem;
}

.accent-text { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  background: var(--dark);
  color: var(--bg);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { background: var(--accent); color: var(--bg); transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn.full { width: 100%; text-align: center; margin-top: 0.5rem; }

.btn-ghost {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-ghost:hover { color: var(--dark); }

.hero-image { position: relative; }

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: sepia(15%) contrast(1.05);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-width: 130px;
}

.badge-num {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--bg);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  color: var(--muted-2);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* === SERVICES === */
.services {
  padding: 9rem 0 8rem;
  background: var(--dark);
  color: #e8e2d8;
}

.services .section-label { color: #6b6050; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid #2e2820;
}

.service-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid #2e2820;
  border-bottom: 1px solid #2e2820;
}

.service-item:nth-child(-n+3) { border-top: 1px solid #2e2820; }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.service-top h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #e8e2d8;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}

.service-item p {
  color: #6b6050;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* === GALLERY === */
.gallery {
  padding: 8rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: sepia(10%) contrast(1.05);
  transition: filter 0.3s, transform 0.3s;
}

.gallery-grid img:hover { filter: sepia(0%) contrast(1.1); transform: scale(1.01); }
.gallery-grid img:first-child { grid-row: span 2; }

/* === ABOUT === */
.about {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 4px;
  filter: sepia(15%) contrast(1.05);
}

.about-text .section-label { margin-bottom: 1rem; }

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  flex: 1;
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
  margin-right: 1.5rem;
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === BOOK === */
.book {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 7rem;
  align-items: start;
}

.book-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--dark);
}

.book-text > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }

.hours {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--muted); }
.hours-row span:last-child { font-weight: 600; color: var(--dark); }

.address {
  font-size: 0.85rem;
  color: var(--muted-2);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

input, textarea, select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }

/* === FOOTER === */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #6b6050;
}

.footer-copy a { color: var(--accent-2); font-weight: 500; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero, .about-grid, .book-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .hero { min-height: auto; padding-top: 5rem; }
  .hero-image img { height: 360px; }
  .hero-badge { right: 0; bottom: -16px; }
  .service-grid { grid-template-columns: 1fr; border-left: none; }
  .service-item { border-left: none; border-right: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid img:first-child { grid-row: span 1; height: 200px; }
  .gallery-grid img { height: 200px; }
  nav { padding: 1.25rem 1.5rem; }
  .nav-right a:not(.nav-cta) { display: none; }
  .container { padding: 0 1.5rem; }
  h1 { font-size: 2.4rem; }
  .services { padding: 6rem 0; }
}
