:root {
  --ink: #3b2430;
  --berry: #b94d72;
  --rose: #f7d5df;
  --cream: #fffaf7;
  --bg: #fff1f5;
  --muted: #7a6570;
  --border: #efd1da;
  --serif: "Playfair Display", Georgia, serif;
  --body: "Nunito Sans", Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(59, 36, 48, 0.08);
  --shadow-md: 0 12px 28px rgba(59, 36, 48, 0.13);
  --shadow-lg: 0 18px 46px rgba(59, 36, 48, 0.22);
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

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

.section-title {
  margin-bottom: 1.65rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 11vw, 3.8rem);
  font-weight: 800;
  line-height: 0.96;
}

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

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 250, 247, 0.96);
  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;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 800;
  transition: color var(--transition);
}

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

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

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

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

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

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

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

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

.nav-links a {
  display: block;
  padding: 0.75rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-links a:hover {
  background: var(--bg);
  color: var(--berry);
}

.hero {
  position: relative;
  min-height: 94svh;
  padding: 7.5rem 0 3.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(59, 36, 48, 0.18) 0%, rgba(59, 36, 48, 0.48) 46%, rgba(59, 36, 48, 0.9) 100%),
    linear-gradient(90deg, rgba(59, 36, 48, 0.74), rgba(59, 36, 48, 0.08));
}

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

.hero-subtitle {
  margin-bottom: 0.85rem;
  color: #ffdce6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1.15rem;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 16vw, 6.2rem);
  font-weight: 800;
  line-height: 0.88;
  text-wrap: balance;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  background: #25d366;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

.about {
  padding: 4.5rem 0;
  background: var(--bg);
}

.about-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

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

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

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

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--rose);
  color: var(--berry);
  border-radius: 8px;
}

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

.feature-content h3,
.product-card h3,
.info-card h3 {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1;
}

.feature-content p,
.product-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.orders {
  padding: 4.5rem 0;
  background: var(--cream);
}

.orders-intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.orders-intro p:not(.section-subtitle) {
  max-width: 680px;
  color: var(--muted);
}

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

.product-card {
  min-height: 178px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 88px;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.product-copy {
  min-width: 0;
}

.product-card span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.approach-panel {
  position: relative;
  margin-top: 2rem;
  padding: 1.45rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
}

.approach-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 213, 223, 0.2), transparent 46%);
  pointer-events: none;
}

.approach-panel > * {
  position: relative;
}

.approach-kicker {
  margin-bottom: 0.8rem;
  color: #ffdce6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.approach-panel h3 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 3.35rem);
  line-height: 0.98;
}

.approach-panel p:not(.approach-kicker) {
  max-width: 780px;
  color: rgba(255, 250, 247, 0.82);
  font-size: 0.96rem;
}

.approach-panel p + p {
  margin-top: 0.75rem;
}

.gallery {
  padding: 4.5rem 0;
  background: var(--bg);
}

.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;
  overflow: hidden;
  background: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  scroll-snap-align: center;
}

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

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

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

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

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

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

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

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

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

.hours-location {
  padding: 4rem 0;
  background: var(--cream);
}

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

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

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

.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(--border);
  font-size: 0.92rem;
}

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

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

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

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

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

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

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

.contact-info a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.map-section {
  padding: 4.5rem 0 0;
  background: var(--bg);
  text-align: center;
}

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

.map-container iframe {
  display: block;
}

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

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

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

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

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

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(59, 36, 48, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(59, 36, 48, 0.36);
}

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

@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;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0;
    color: var(--cream);
  }

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

  .nav-links a:hover,
  .navbar.scrolled .nav-links a:hover {
    background: transparent;
    color: #ffdce6;
  }

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

  .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;
  }

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

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

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-card {
    padding: 1.45rem;
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 1rem;
  }

  .product-card:nth-child(even) {
    margin-top: 2rem;
  }

  .approach-panel {
    padding: 2rem;
  }

  .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;
  }

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

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

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

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

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

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