/* ========================================
   CSS Variables & Reset
======================================== */
:root {
  --color-obsidian: #151312;
  --color-ink: #25211f;
  --color-sage: #76836b;
  --color-clay: #b06f52;
  --color-rose: #d8b2a3;
  --color-ivory: #f6f1ea;
  --color-paper: #fffaf3;
  --color-muted: #706761;
  --color-border: #ded2c5;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(21, 19, 18, 0.07);
  --shadow-md: 0 10px 24px rgba(21, 19, 18, 0.12);
  --shadow-lg: 0 18px 46px rgba(21, 19, 18, 0.18);
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-ivory);
  color: var(--color-ink);
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-clay);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 12vw, 3.25rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--color-obsidian);
  margin-bottom: 1.75rem;
}

.section-divider {
  width: 4.5rem;
  height: 2px;
  background: var(--color-clay);
  margin: 0 auto;
}

/* ========================================
   Navbar
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 250, 243, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.nav-container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--color-paper);
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--color-obsidian);
}

.logo-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 250, 243, 0.12);
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.65rem;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-paper);
  transition: background var(--transition), transform var(--transition);
}

.navbar.scrolled .mobile-menu-btn {
  background: transparent;
  border-color: var(--color-border);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--color-obsidian);
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.2rem;
}

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

.nav-links a {
  display: block;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: var(--color-ivory);
  color: var(--color-clay);
}

/* ========================================
   Hero
======================================== */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 7.5rem 0 3rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 57% center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 19, 18, 0.24) 0%, rgba(21, 19, 18, 0.58) 48%, rgba(21, 19, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(21, 19, 18, 0.72), rgba(21, 19, 18, 0.16));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  color: var(--color-paper);
  padding: 0 1.25rem;
  text-align: left;
}

.hero-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-rose);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 18vw, 6rem);
  font-weight: 700;
  line-height: 0.86;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.hero-description {
  max-width: 34rem;
  font-size: 1rem;
  color: rgba(255, 250, 243, 0.88);
  margin-bottom: 1.65rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  background: var(--color-paper);
  color: var(--color-obsidian);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

/* ========================================
   About
======================================== */
.about {
  padding: 4.5rem 0;
  background: var(--color-ivory);
}

.about .container {
  max-width: 1040px;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  gap: 2.25rem;
}

.about-text {
  color: var(--color-muted);
  margin-bottom: 1.15rem;
}

.about-text:first-child {
  font-size: 1.05rem;
  color: var(--color-ink);
}

.about-features {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: #efe4d9;
  color: var(--color-clay);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h3,
.practice-card h3,
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-obsidian);
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ========================================
   Practice
======================================== */
.practice {
  padding: 4.5rem 0;
  background: var(--color-paper);
}

.practice-grid {
  display: grid;
  gap: 1rem;
}

.practice-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
}

.practice-card span {
  display: block;
  color: var(--color-sage);
  font-weight: 800;
  margin-bottom: 1rem;
}

.practice-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.quote-band {
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--color-border);
}

.quote-band p {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 9vw, 3rem);
  line-height: 1;
  color: var(--color-clay);
  max-width: 880px;
}

/* ========================================
   Gallery
======================================== */
.gallery {
  padding: 4.5rem 0;
  background: var(--color-ivory);
  text-align: left;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.gallery-track-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  scrollbar-width: none;
}

.gallery-track-container::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 86%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  scroll-snap-align: center;
  background: var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-nav {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.gallery-nav:hover {
  background: var(--color-obsidian);
  border-color: var(--color-obsidian);
}

.gallery-nav:hover svg {
  stroke: var(--color-paper);
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-obsidian);
  transition: stroke var(--transition);
}

.gallery-indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.gallery-indicator {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--color-clay);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-indicator.active,
.gallery-indicator:hover {
  width: 28px;
  background: var(--color-clay);
}

/* ========================================
   Info
======================================== */
.hours-location {
  padding: 4rem 0;
  background: var(--color-paper);
}

.info-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.info-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  background: var(--color-obsidian);
  color: var(--color-paper);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 26px;
  height: 26px;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child,
.address-info {
  color: var(--color-muted);
}

.hours-list li span:last-child {
  font-weight: 800;
  color: var(--color-obsidian);
  text-align: right;
}

.address-info {
  font-style: normal;
  margin-bottom: 1rem;
}

.contact-info {
  display: grid;
  gap: 0.65rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-ink);
  font-weight: 800;
}

.contact-info svg {
  width: 19px;
  height: 19px;
  color: var(--color-clay);
}

/* ========================================
   Reviews
======================================== */
.reviews {
  padding: 4.5rem 0;
  background: var(--color-ivory);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.25rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
  color: var(--color-clay);
}

.review-stars svg {
  width: 17px;
  height: 17px;
}

.review-card blockquote {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--color-sage);
  color: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.author-name {
  font-weight: 800;
  color: var(--color-obsidian);
}

/* ========================================
   Map & Footer
======================================== */
.map-section {
  padding: 4.5rem 0 0;
  background: var(--color-paper);
  text-align: center;
}

.map-container {
  margin-top: 2rem;
  filter: saturate(80%) contrast(92%);
}

.map-container iframe {
  display: block;
}

.footer {
  padding: 3rem 0 2rem;
  background: var(--color-obsidian);
  color: var(--color-paper);
}

.footer-content {
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 250, 243, 0.14);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  opacity: 0.72;
  font-size: 0.9rem;
}

.social-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--color-paper);
  border-color: var(--color-paper);
  color: var(--color-obsidian);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
}

.social-links svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.58;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(21, 19, 18, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(21, 19, 18, 0.34);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

/* ========================================
   Responsive
======================================== */
@media (min-width: 720px) {
  .container,
  .nav-container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-links a {
    color: var(--color-paper);
    padding: 0;
    border-radius: 0;
  }

  .navbar.scrolled .nav-links a {
    color: var(--color-ink);
  }

  .nav-links a:hover,
  .navbar.scrolled .nav-links a:hover {
    background: transparent;
    color: var(--color-rose);
  }

  .hero {
    min-height: 96vh;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 0 5rem;
  }

  .hero-content {
    margin-left: max(1.75rem, calc((100vw - 1160px) / 2 + 1.75rem));
    padding: 0;
  }

  .hero-slide {
    background-position: center;
  }

  .about,
  .practice,
  .gallery,
  .reviews {
    padding: 6.5rem 0;
  }

  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: start;
  }

  .practice-grid,
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .info-card,
  .review-card,
  .practice-card {
    padding: 1.65rem;
  }

  .gallery {
    text-align: center;
  }

  .gallery-wrapper {
    margin-top: 2rem;
  }

  .gallery-track-container {
    overflow: hidden;
    scroll-snap-type: none;
  }

  .gallery-track {
    gap: 1.25rem;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 0.65rem);
    scroll-snap-align: none;
  }

  .gallery-nav {
    display: flex;
  }

  .gallery-indicators {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    align-items: center;
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .gallery-item {
    flex: 0 0 calc(33.333% - 0.85rem);
  }

  .hero-description {
    font-size: 1.12rem;
  }
}

@media (max-width: 380px) {
  .nav-logo {
    font-size: 1.12rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-btn {
    width: 100%;
  }
}
