:root {
  --background: #efe4d5;
  --card: #fffaf3;
  --ink: #3f322b;
  --muted: #76675e;
  --accent: #b37b62;
  --accent-dark: #81523f;
  --accent-soft: #dfb6a0;
  --ring: rgba(129, 82, 63, 0.18);
  --shadow-soft: 0 1.5rem 4rem rgba(63, 50, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--background);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 243, 0.95), transparent 34rem),
    linear-gradient(135deg, #efe4d5 0%, #f8efe4 45%, #dcc7b4 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 228, 213, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(129, 82, 63, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 0 0 0.35rem var(--ring);
  transition: transform 160ms ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--accent);
  color: var(--card);
}

.page-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  gap: 3rem;
}

.hero-card {
  position: relative;
  width: min(100%, 46rem);
  padding: clamp(2rem, 6vw, 4.75rem);
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.9)),
    url('./public/graphics/hero-background-texture.jpg') center/cover;
  border: 1px solid rgba(129, 82, 63, 0.14);
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(63, 50, 43, 0.16);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto 12% -4.5rem;
  height: 9rem;
  background: radial-gradient(ellipse, rgba(179, 123, 98, 0.18), transparent 68%);
  pointer-events: none;
}

.logo-wrap {
  position: relative;
  z-index: 1;
  width: 7.25rem;
  height: 7.25rem;
  margin: 0 auto 1.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: #fffdf8;
  box-shadow: 0 0 0 0.75rem var(--ring);
  animation: gentle-float 7s ease-in-out infinite;
}

.logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: -0.02em;
  text-align: center;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.intro {
  max-width: 34rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.6;
}

.cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin: 2rem auto 0;
  padding: 1.35rem;
  border: 1px solid rgba(129, 82, 63, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 250, 243, 0.74);
  box-shadow: var(--shadow-soft);
}

.cta-panel p {
  margin: 0;
  color: var(--ink);
  font-family: Arial, sans-serif;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fffaf3;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0.65rem 1.5rem rgba(129, 82, 63, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:focus,
.button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0.85rem 1.8rem rgba(129, 82, 63, 0.3);
}

.button-large {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.05rem;
}

.note {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-highlights {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(129, 82, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.76);
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.section-intro {
  max-width: 36rem;
  margin: -0.5rem auto 2rem;
  text-align: center;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-section {
  width: min(100%, 52rem);
  padding: 2rem;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(129, 82, 63, 0.12);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.about-content {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-categories h3 {
  margin-bottom: 1rem;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.5rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.category-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.gallery-section {
  width: min(100%, 64rem);
  padding: 3rem 1rem;
  text-align: center;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-tab {
  padding: 0.5rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(129, 82, 63, 0.15);
  border-radius: 999px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gallery-tab:hover,
.gallery-tab:focus {
  background: rgba(239, 228, 213, 0.7);
  border-color: var(--accent);
}

.gallery-tab.active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--card);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card);
  transition: transform 160ms ease;
}

.gallery-item:focus,
.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-loading,
.gallery-empty {
  grid-column: 1 / -1;
  margin: 2rem 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.top-posts-section {
  width: min(100%, 100%);
  overflow: hidden;
  padding: 2.5rem 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.86), rgba(239, 228, 213, 0.48), rgba(255, 250, 243, 0.86));
  border-block: 1px solid rgba(129, 82, 63, 0.08);
}

.top-posts-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.top-posts-header h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent-dark);
  margin: 0;
}

.top-posts-badge {
  background: var(--accent);
  color: var(--card);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.top-posts-rail-wrapper {
  position: relative;
}

.top-posts-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 1rem;
  cursor: grab;
}

.top-posts-rail::-webkit-scrollbar {
  display: none;
}

.top-posts-rail.grabbing {
  cursor: grabbing;
  scroll-behavior: auto;
}

.top-post-card {
  position: relative;
  flex: 0 0 280px;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 0.65rem 1.5rem rgba(63, 50, 43, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.top-post-card:focus,
.top-post-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.top-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-post-engagement {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0.75rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 200ms ease;
}

.top-post-card:focus .top-post-engagement,
.top-post-card:hover .top-post-engagement {
  opacity: 1;
}

.top-posts-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.top-posts-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid rgba(129, 82, 63, 0.15);
  color: var(--accent-dark);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease, background 160ms ease;
  z-index: 2;
}

.top-posts-rail-wrapper:hover .top-posts-nav {
  opacity: 1;
}

.top-posts-nav:hover {
  background: var(--accent);
  color: var(--card);
}

.top-posts-nav.prev {
  left: 0.5rem;
}

.top-posts-nav.next {
  right: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .top-posts-rail {
    scroll-behavior: auto;
  }
  .logo-wrap,
  .top-post-card,
  .top-post-card:focus,
  .top-post-card:hover {
    animation: none;
    transition: none;
    transform: none;
  }
  .top-post-engagement {
    transition: none;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .top-post-card {
    flex: 0 0 200px;
  }
}

.reviews-section {
  width: min(100%, 64rem);
  padding: 3rem 1rem;
  text-align: center;
}

.reviews-rail-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews-rail {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-rail::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem;
  width: max-content;
}

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(129, 82, 63, 0.1);
  border-radius: 1.15rem;
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.review-image-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--background);
}

.review-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-quote {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.review-author {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-empty {
  color: var(--muted);
  font-style: italic;
  padding: 2rem;
}

.reviews-control {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(129, 82, 63, 0.2);
  background: var(--card);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.reviews-control:hover,
.reviews-control:focus {
  background: rgba(239, 228, 213, 0.7);
  border-color: var(--accent);
}

.reviews-control svg {
  width: 1rem;
  height: 1rem;
}

@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reviews-track {
    scroll-snap-type: none;
  }
  .reviews-rail {
    scroll-snap-type: none;
  }

  .logo-wrap,
  .button,
  .gallery-item,
  .order-step,
  .reviews-control,
  .button-instagram {
    animation: none;
    transition: none;
  }
}

.how-to-order-section {
  width: min(100%, 52rem);
  padding: 2rem;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(129, 82, 63, 0.12);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.order-steps {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  counter-reset: order-step;
}

.order-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid rgba(129, 82, 63, 0.1);
  transition: transform 160ms ease, border-color 160ms ease;
}

.order-step:hover,
.order-step:focus-within {
  border-color: rgba(129, 82, 63, 0.22);
  transform: translateY(-2px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent-dark);
  color: var(--card);
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 999px;
}

.step-content h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-content a {
  color: var(--accent-dark);
  font-weight: 600;
}

.payment-methods {
  margin: 2rem 0;
  padding: 1.25rem;
  text-align: center;
  background: rgba(239, 228, 213, 0.5);
  border-radius: 1rem;
}

.payment-methods h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--accent-dark);
}

.payment-methods p {
  margin: 0;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.order-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(179, 123, 98, 0.16), rgba(255, 250, 243, 0.7));
}

.order-cta-kicker {
  margin: 0 0 0.85rem;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.faq-section {
  width: min(100%, 44rem);
  padding: 2rem;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(129, 82, 63, 0.12);
  border-radius: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(129, 82, 63, 0.12);
  border-radius: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-section {
  width: min(100%, 36rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background: rgba(255, 250, 243, 0.85);
  border: 1px solid rgba(129, 82, 63, 0.15);
  border-radius: 2rem;
  box-shadow: 0 1rem 4rem rgba(63, 50, 43, 0.1);
}

.contact-form {
  margin: 1.5rem 0;
  text-align: left;
}

.form-group-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--card);
  border: 1px solid rgba(129, 82, 63, 0.2);
  border-radius: 0.75rem;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2376675e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-error {
  display: block;
  margin-top: 0.35rem;
  color: #c0392b;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  min-height: 1.2em;
}

.form-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.button-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fffaf3;
  font-family: Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.65rem 1.5rem rgba(129, 82, 63, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button-submit:focus,
.button-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0.85rem 1.8rem rgba(129, 82, 63, 0.3);
}

.button-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.form-success {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 1rem;
  text-align: center;
}

.form-success p {
  margin: 0.5rem 0 0;
  color: #27ae60;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-privacy {
  margin-top: 0.75rem;
  text-align: center;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
}

.success-icon {
  width: 2rem;
  height: 2rem;
  color: #27ae60;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(129, 82, 63, 0.15);
}

.contact-instagram-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(239, 228, 213, 0.6);
  border-radius: 999px;
}

.contact-instagram-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.35rem;
  object-fit: cover;
}

.contact-instagram-handle {
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-intro {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-options {
  margin: 1.5rem 0;
}

.button-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding: 0 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 0.35rem 1rem rgba(220, 39, 67, 0.25);
}

.button-instagram:focus,
.button-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(220, 39, 67, 0.35);
}

.instagram-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer {
  width: 100%;
  margin-top: 3rem;
  padding: 2.5rem 1rem;
  background: rgba(255, 250, 243, 0.6);
  border-top: 1px solid rgba(129, 82, 63, 0.1);
}

.footer-content {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  border-radius: 999px;
}

.footer-brand p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(239, 228, 213, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(129, 82, 63, 0.1);
    display: none;
  }

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

  .nav-menu a {
    padding: 0.75rem 1rem;
  }

  .about-section,
  .how-to-order-section {
    padding: 1.5rem;
  }

  .order-step {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .category-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 0.75rem;
  }

  .gallery-section {
    padding: 2rem 0.75rem;
  }

  .gallery-tabs {
    gap: 0.35rem;
  }

  .gallery-tab {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
  }
}