@charset "UTF-8";

:root {
  color-scheme: light;
  --ink: #1f1411;
  --ink-soft: #3b2a26;
  --rose: #b15252;
  --rose-dark: #8f3c3c;
  --sand: #f6f1ec;
  --cream: #fcfaf8;
  --clay: #e8ddd6;
  --gold: #d2b48c;
  --shadow-soft: 0 20px 60px rgba(31, 20, 17, 0.18);
  --shadow-card: 0 18px 35px rgba(31, 20, 17, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Arial", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

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

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

.page {
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(212, 176, 140, 0.18), transparent 70%),
    radial-gradient(1000px 500px at 90% 10%, rgba(180, 82, 82, 0.12), transparent 70%),
    var(--sand);
  min-height: 100vh;
}

.container {
  width: min(1160px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

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

.section--soft {
  background: #f1e9e4;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}

.title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.title-xl {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.title-lg {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.title-md {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 25px rgba(177, 82, 82, 0.28);
}

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

.btn-outline {
  border-color: rgba(31, 20, 17, 0.3);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 20, 17, 0.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 248, 0.82);
  border-bottom: 1px solid rgba(31, 20, 17, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-button {
  display: none;
  border: 1px solid rgba(31, 20, 17, 0.15);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
}

.mobile-menu {
  display: none;
  padding: 12px 0 20px;
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(31, 20, 17, 0.08);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.hidden {
  display: none !important;
}

.w-full {
  width: 100%;
}

.w-6 {
  width: 24px;
}

.h-6 {
  height: 24px;
}

.w-5 {
  width: 20px;
}

.h-5 {
  height: 20px;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.gap-4 {
  gap: 16px;
}

.block {
  display: block;
}

.font-bold {
  font-weight: 700;
}

.text-red-500 {
  color: var(--rose);
}

.text-green-500 {
  color: #1b7a55;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 36px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 20, 17, 0.05), rgba(31, 20, 17, 0.35));
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(252, 250, 248, 0.92);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  max-width: 240px;
  z-index: 1;
}

.hero-badge p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(31, 20, 17, 0.06);
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.card li {
  margin-bottom: 8px;
}

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

.soft-panel {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat {
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.testimonial {
  border-left: 3px solid var(--rose);
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery img {
  border-radius: var(--radius-lg);
  height: 240px;
  object-fit: cover;
}

.cta {
  background: linear-gradient(135deg, #2a1d1a, #4c2b28);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.cta .btn {
  justify-self: flex-start;
}

.visit-grid {
  display: grid;
  gap: 28px;
}

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  color: #f5f2ef;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.footer {
  padding: 42px 0;
  background: #1b1210;
  color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 12, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}

.modal-content {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  width: min(520px, 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: none;
  cursor: pointer;
}

.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b1210;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.4s ease;
  z-index: 70;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-cookie.primary {
  background: var(--rose);
  border-color: var(--rose);
}

.translate-y-full {
  transform: translateY(100%);
}

.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: var(--rose);
  color: #fff;
  box-shadow: 0 18px 30px rgba(177, 82, 82, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 55;
}

.fab:hover {
  transform: translateY(-2px);
}

.reveal {
  animation: rise 0.8s ease-out both;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }
}
