:root {
  --bg: #f5f0ea;
  --panel: rgba(255, 255, 255, 0.7);
  --text: #171717;
  --muted: #5f5a56;
  --accent: #d96d3b;
  --accent-dark: #b75228;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 20px 40px rgba(21, 17, 15, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Geneva, sans-serif;
  background: linear-gradient(180deg, #f8f4ef 0%, #f0e7e1 100%);
  color: var(--text);
}

body.intro-active {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
  place-items: center;
  background: #000000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  visibility: visible;
}

.intro-overlay.is-fading {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-10%);
  opacity: 1;
  transition: opacity 1s ease;
}

.intro-video.is-fading-out {
  opacity: 0;
}

.page-fade-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.page-fade-overlay.is-fading {
  opacity: 0;
}

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

button,
a {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  width: min(1100px, calc(100% - 32px));
  margin: 20px auto 0;
}

.menu {
  display: grid;
  grid-template-columns: auto repeat(4, max-content);
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  width: max-content;
  max-width: none;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: scale(var(--menu-scale, 1));
  transform-origin: top left;
}
.spacer {
  height: 2rem;
}
.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--text);
  text-decoration: none;
  font-size: var(--menu-font-size, 0.95rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;

  border: 1px solid transparent;
  border-radius: 999px;
  transform-style: preserve-3d;
  transition: transform 0.32s ease, background 0.2s ease, color 0.2s ease;
  perspective: 800px;
}

.menu a img {
  width: auto;

  height: 2.9rem;

  max-width: none;
  aspect-ratio: auto;

}

.menu a:first-child {
  justify-self: start;
}

.menu a:not(:first-child) {
  border: 3px solid var(--line);
  padding-left: var(--menu-text-padding, 2.5rem);
  padding-right: var(--menu-text-padding, 2.5rem);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.menu a:hover,
.menu a:focus-visible {
  background: var(--text);
  color: white;
  outline: none;
  transform: rotateX(360deg);
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s ease, color 0.2s ease;
}

.menu a:nth-child(1):hover,
.menu a:nth-child(1):focus-visible {
  border-color: #ffcc00;
}

.menu a:nth-child(2):hover,
.menu a:nth-child(2):focus-visible {
  border-color: #007aff;
}

.menu a:nth-child(3):hover,
.menu a:nth-child(3):focus-visible {
  border-color: #ff9500;
}

.menu a:nth-child(4):hover,
.menu a:nth-child(4):focus-visible {
  border-color: #34c759;
}

.menu a:nth-child(5):hover,
.menu a:nth-child(5):focus-visible {
  border-color: #af52de;
}

.menu-logo {
  margin-bottom: 0.75rem;
}

.menu-main a:nth-child(1):hover,
.menu-main a:nth-child(1):focus-visible {
  border-color: #007aff;
}

.menu-main a:nth-child(2):hover,
.menu-main a:nth-child(2):focus-visible {
  border-color: #ff9500;
}

.menu-main a:nth-child(3):hover,
.menu-main a:nth-child(3):focus-visible {
  border-color: #34c759;
}

.menu-main a:nth-child(4):hover,
.menu-main a:nth-child(4):focus-visible {
  border-color: #af52de;
}

.page-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 32px auto 72px;
  display: grid;
  gap: 1.25rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.instagram-media {
  width: 50%!important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(1.2rem, 3vw, 2rem) !important;
  background: var(--panel) !important;
  border: 1px solid var(--line) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow) !important;
}

.instagram-row {
  display:inline-flex !important;
  gap: 1.25rem !important;
  max-width: 100%;
  overflow-x: hidden;

}

.panel.section-flash {
  animation: section-flash 0.9s ease-out;
}

@keyframes section-flash {
  0%,
  100% {
    background: var(--panel);
  }

  20%,
  55% {
    background: var(--flash-color);
  }
}

.hero {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.hero-copy {
  display: none;
}

.eyebrow,
.section-tag {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero-copy h1,
.content h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  max-width: 560px;
}

.hero-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  min-width: 140px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  height: auto;
  padding: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: none;
  display: block;
  border-radius: 12px;
}


.content {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 0.5rem;
}

.checkout-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

.checkout-box strong {
  display: block;
  margin-bottom: 0.25rem;
}

.checkout-box span {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 760px) {

  .instagram-row {
  display:block!important;

}



  .instagram-media {
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .hero {
    grid-template-columns: 1fr;
  }
.menu a img{
  height: 3.8rem;
}
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-box {
    flex-direction: column;
    align-items: flex-start;
  }

}

