:root {
  --bg: #f7f1eb;
  --bg-alt: #efe6dc;
  --paper: rgba(255,255,255,.74);
  --text: #2f211f;
  --muted: #71544c;
  --primary: #6b3b2f;
  --primary-dark: #411d15;
  --accent: #d5b999;
  --border: rgba(107, 59, 47, 0.15);
  --shadow: 0 20px 45px rgba(44, 22, 17, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1120px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f7f1eb 0%, #f0e6db 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 5rem 0; }
.alt-bg { background: rgba(255,255,255,.45); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(247, 241, 235, 0.75);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.brand-top {
  display: block;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: .9;
  font-weight: 700;
}
.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  color: var(--muted);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(34,18,14,.78) 0%, rgba(34,18,14,.48) 45%, rgba(34,18,14,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.hero-card {
  max-width: 630px;
  background: rgba(25, 13, 11, .42);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 30px;
  color: #fff8f1;
  box-shadow: var(--shadow);
}
.eyebrow,
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
}
.eyebrow { color: #f3d7b7; }
.hero h1,
.section-heading h2,
.contact-copy h2,
.welcome-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: .95;
  margin: .6rem 0 1rem;
}
.hero h1 { font-size: clamp(3.1rem, 7vw, 5.7rem); }
.hero p,
.section-heading p,
.welcome-text p,
.feature-card p,
.specialty-card p,
.contact-copy p,
.social-link-card p {
  line-height: 1.7;
  color: inherit;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0d7bc);
  color: var(--primary-dark);
  box-shadow: 0 14px 24px rgba(213, 185, 153, .25);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.two-col,
.contact-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}
.welcome-image img,
.video-frame,
.social-card,
.contact-form,
.feature-card,
.specialty-card {
  box-shadow: var(--shadow);
}
.welcome-image img {
  border-radius: var(--radius);
  min-height: 460px;
  object-fit: cover;
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-heading.left {
  margin-inline: 0;
  text-align: left;
}
.section-heading h2,
.contact-copy h2,
.welcome-text h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.section-tag { color: var(--primary); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.info-item {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.info-item strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--primary);
}
.info-item-full { grid-column: 1 / -1; }

.feature-grid,
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.feature-card,
.specialty-card,
.social-card,
.contact-form {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-card {
  padding: 1.6rem;
}
.feature-card h3,
.specialty-card h3,
.social-card h3 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}
.specialty-card {
  overflow: hidden;
}
.specialty-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.specialty-card div { padding: 1.35rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.video-block { display: grid; gap: 1.5rem; }
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-card { padding: 1.5rem; }
.facebook-embed iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  background: #fff;
}
.social-link-card {
  min-height: 360px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fff7ee, #f1e1d2);
  padding: 2rem;
}
.social-link-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 22px;
}

.contact-copy { align-self: start; }
.contact-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}
.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .5rem;
  color: var(--muted);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 59, 47, .18);
  border-radius: 16px;
  background: #fff;
  padding: .95rem 1rem;
  color: var(--text);
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.site-footer {
  background: #241614;
  color: #f4e7d9;
  padding: 1.4rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer a { color: #f7d7b4; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .22);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 9, 8, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 120;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(100%, 1080px);
  max-height: 88vh;
  border-radius: 18px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .two-col,
  .contact-grid,
  .social-grid,
  .feature-grid,
  .specialties-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    min-width: 220px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }

  .hero {
    min-height: 78vh;
  }
  .hero-card {
    max-width: 100%;
  }

  .welcome-image img,
  .gallery-item img { min-height: auto; height: auto; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .nav-wrap { min-height: 72px; }
  .brand-name { font-size: 1.7rem; }
  .hero-card { padding: 1.35rem; border-radius: 24px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(34,18,14,.72) 0%, rgba(34,18,14,.54) 55%, rgba(34,18,14,.35) 100%); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
}
