:root {
  --cream: #f7f0e6;
  --paper: #fffaf3;
  --ink: #4a2f1c;
  --brown: #6b4423;
  --rose: #c9a08a;
  --blush: #e8b4b8;
  --ribbon: #e39aa8;
  --line: #e6d4c4;
  --shadow: 0 18px 50px rgba(75, 47, 28, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 0;
}

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

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

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(227, 154, 168, 0.22), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(201, 160, 138, 0.18), transparent 28%);
  z-index: 0;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  padding-top: max(0.85rem, env(safe-area-inset-top));
  background: rgba(247, 240, 230, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px #fff;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
}

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

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 8px;
  background: var(--ink);
}

.hero,
.about,
.menu,
.gallery,
.order {
  padding: 4.5rem 6vw;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 78px);
}

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

h1,
h2 {
  font-family: "Lora", serif;
  line-height: 1.15;
  color: var(--brown);
}

h1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.lead,
.about p,
.section-head p,
.order p {
  max-width: 56ch;
  color: #6a5343;
}

.hero-actions,
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--brown);
  color: #fff8ef;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--brown);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-photo {
  width: min(100%, 420px);
  margin-left: auto;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.logo-seal {
  position: absolute;
  width: 150px;
  left: 0;
  bottom: 18px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 2;
  background: #fff;
}

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

.about-photo img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  margin-top: 0.6rem;
  font-style: italic;
  color: #8a7262;
}

.highlights li {
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.section-head {
  text-align: center;
  margin: 0 auto 2rem;
}

.section-head p,
.section-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.chip.is-active {
  background: var(--brown);
  color: #fff8ef;
  border-color: var(--brown);
}

.menu-grid {
  display: grid;min(100%, 250px)
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(75, 47, 28, 0.06);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.card h3 {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.card p {
  color: #7a6354;
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ribbon);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.shot {
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 18px;
}

.shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shot:hover img {
  transform: scale(1.05);
}

.order-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  text-align: left;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
}

.fine,
.muted {
  color: #8a7262;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.footer {
  text-align: center;
  padding: 2.5rem 6vw 5.5rem;
}

.footer img {
  width: 84px;
  height: 84px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  margin-top: 0.8rem;
  font-weight: 700;
}

.whats-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.whats-float svg {
  width: 30px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(40, 24, 16, 0.86);
  display: grid;
  place-items: center;
  z-index: 30;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightwidth: 100%;
  max-height: 86vh;
  width: auto
  max-height: 86vh;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
}
ader {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero,
  .about,
  .menu,
  .gallery,
  .order {
    padding: 2.4rem 1rem 3rem;
  }

  .hero,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo {
    width: min(100%, 340px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .logo-seal {
    width: 92px;
    left: max(0px, calc(50% - 170px));
    bottom: 10px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 1rem 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav a {
    padding: 0.85rem 0.4rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .highlights {
    justify-content: center;
  }

  .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.3rem;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
    min-height: 42px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shot img {
    height: 160px;
  }

  .order-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .order-card .btn {
    width: 100%;
  }

  .footer {
    padding: 2rem 1rem 6.5rem;
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  }

  .lightbox {
    padding: 3.5rem 0.75rem 1rem;
  }

  .lightbox-close {
    top: max(8px, env(safe-area-inset-top));
    right: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .brand span {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .shot img {
    height: 140px;
  }
}

@media (max-width: 380px) {
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .shot img {
    height: 200px
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
