:root {
  --bg: #0d0f12;
  --panel: #f4ede1;
  --ink: #171717;
  --muted: #5f5b57;
  --gold: #dfca71;
  --gold-deep: #bca352;
  --line: rgba(23, 23, 23, 0.14);
  --radius: 22px;
  --container: 1220px;
  --ease: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
  background: radial-gradient(circle at 10% -20%, #222831 0%, var(--bg) 45%, #0a0a0b 100%);
}

body {
  min-height: 100vh;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(#fff 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 12, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #111;
  font-weight: 800;
}

.logo-copy {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-copy strong {
  letter-spacing: 0.08em;
  font-size: 1.02rem;
}

.logo-copy em {
  font-style: normal;
  color: #ddd4c4;
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: #f2eee6;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.86rem;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.phone {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 154px;
  border-radius: 999px;
  padding: 0.86rem 1.3rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  font-weight: 700;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  background: linear-gradient(140deg, var(--gold) 0%, #f7e7a7 50%, var(--gold-deep) 100%);
  color: #151515;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(223, 202, 113, 0.28);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(223, 202, 113, 0.7);
}

.btn-dark {
  background: #191919;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

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

.hero {
  position: relative;
  padding-top: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 0 58%, rgba(223, 202, 113, 0.72) 58% 100%);
}

.hero-shell {
  background: var(--panel);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.swipe-hint {
  display: none;
  margin: 0;
  padding: 0.5rem 0.9rem 0.85rem;
  font-size: 0.78rem;
  color: #4a463f;
  text-align: center;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.hero-slider.is-dragging {
  cursor: grabbing;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  padding: clamp(1rem, 2.8vw, 2.8rem) clamp(1rem, 4.6vw, 4.6rem);
  opacity: 0;
  transform: translateX(65px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-copy .eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.84rem;
}

.hero-copy h1,
.hero-copy h2,
.flavor-title,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7.4vw, 8.1rem);
}

.hero-copy h2 {
  font-size: clamp(2rem, 5.4vw, 5rem);
  margin-bottom: 0.85rem;
}

.hero-text {
  max-width: 560px;
  line-height: 1.75;
  margin: 0 0 1.3rem;
  color: #393633;
}

.hero-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual .shape {
  position: absolute;
  width: min(86%, 420px);
  bottom: -8%;
  right: 2%;
  opacity: 0.85;
}

.hero-visual .product {
  width: min(88%, 500px);
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.28));
  animation: float 5.2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-controls {
  min-height: 92px;
  display: grid;
  grid-template-columns: 66px 1fr 66px;
  align-items: center;
  background: #121212;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.arrow {
  height: 100%;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.arrow:hover {
  color: var(--gold);
}

.thumbs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.thumb {
  width: 57px;
  height: 57px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.thumb.is-active {
  border-color: var(--gold);
}

.slogan-strip {
  background: #121318;
  color: #f0e7d4;
  border-top: 1px solid rgba(223, 202, 113, 0.24);
  border-bottom: 1px solid rgba(223, 202, 113, 0.24);
  overflow: hidden;
}

.ticker {
  display: flex;
  white-space: nowrap;
}

.ticker span {
  display: inline-block;
  padding: 0.8rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  animation: ticker 18s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.about {
  background: linear-gradient(180deg, #f7f0e5 0%, #efe3cf 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.3rem, 3.5vw, 3rem);
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 500px;
}

.media-stack .blob {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(95%, 500px);
  opacity: 0.78;
}

.media-stack .main {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(80%, 460px);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.badge {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
}

h3 {
  font-size: clamp(2rem, 3.9vw, 3.5rem);
  margin-bottom: 1rem;
}

.content p {
  margin: 0 0 0.95rem;
  color: #3d3935;
  line-height: 1.8;
}

.mini-stats {
  margin: 1.2rem 0 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.mini-stats article {
  padding: 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.mini-stats strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.mini-stats span {
  font-size: 0.82rem;
  color: #5f5a55;
}

.luxury-features {
  background: linear-gradient(180deg, #f6efe2 0%, #f0dfbf 100%);
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.luxury-grid article {
  border-radius: 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.92) 100%);
  padding: 1rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.luxury-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12);
}

.luxury-grid h4,
.luxury-grid p {
  margin: 0;
}

.luxury-grid p {
  margin-top: 0.5rem;
  color: #5e5852;
}

.branches {
  background: linear-gradient(180deg, #111319 0%, #191c23 100%);
  color: #f1ecdf;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-text {
  margin: 0;
  color: #d8d1c2;
}

.branch-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.branch-card {
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(223, 202, 113, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(6px);
}

.branch-card h4,
.branch-card p {
  margin: 0;
}

.branch-card h4 {
  font-size: 1.16rem;
  color: var(--gold);
}

.branch-card p {
  margin: 0.42rem 0 0.8rem;
  font-size: 0.92rem;
}

.branch-card iframe {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: 14px;
}

.cta-band {
  background: linear-gradient(100deg, #f4eee2 0%, #f0e0bd 100%);
}

.cta-inner {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flavor-page {
  background: radial-gradient(circle at 80% -20%, #2b1f11 0%, #121116 46%, #09090a 100%);
}

.flavor-hero {
  padding-top: 3.6rem;
  background: linear-gradient(180deg, #f7f0e2 0%, #eddcbe 100%);
}

.flavor-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flavor-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.flavor-sub {
  max-width: 640px;
  line-height: 1.7;
  color: #3f3b37;
}

.flavor-badge-card {
  min-width: 180px;
  border-radius: 20px;
  background: #151515;
  color: #fff;
  border: 1px solid rgba(223, 202, 113, 0.45);
  padding: 1.2rem;
  text-align: center;
}

.flavor-badge-card span,
.flavor-badge-card em {
  display: block;
  color: #d2cab9;
}

.flavor-badge-card strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 2.2rem;
  color: var(--gold);
}

.flavor-list-wrap {
  background: linear-gradient(180deg, #11131a 0%, #090a0d 100%);
}

.flavor-groups {
  display: grid;
  gap: 1.1rem;
}

.flavor-group {
  border-radius: 18px;
  border: 1px solid rgba(223, 202, 113, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 1rem;
}

.flavor-group-head {
  margin-bottom: 0.85rem;
}

.flavor-group-head h3 {
  margin: 0;
  font-size: 1.9rem;
  color: #fff1cc;
}

.flavor-group-head p {
  margin: 0.35rem 0 0;
  color: #d6ccb7;
}

.flavor-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.flavor-item {
  border-radius: 14px;
  border: 1px solid rgba(223, 202, 113, 0.28);
  background: linear-gradient(135deg, rgba(223, 202, 113, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: #f6f0e4;
  padding: 0.74rem 0.8rem;
  font-size: 0.9rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease, border-color var(--ease), box-shadow var(--ease);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flavor-item.show {
  transform: translateY(0);
  opacity: 1;
}

.flavor-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

.flavor-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(223, 202, 113, 0.2);
  border: 1px solid rgba(223, 202, 113, 0.55);
  font-size: 0.9rem;
}

.flavor-name {
  flex: 1;
}

.contact-panel {
  background: linear-gradient(180deg, #f6eddc 0%, #efe2c9 100%);
}

.contact-panel .section-text {
  color: #4e4a44;
}

.contact-form {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  padding: 1rem;
}

.form-status {
  display: none;
  margin: 0 0 0.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.88rem;
}

.form-status.ok {
  display: block;
  background: rgba(60, 177, 121, 0.15);
  border: 1px solid rgba(60, 177, 121, 0.5);
  color: #245f42;
}

.form-status.error {
  display: block;
  background: rgba(194, 72, 72, 0.12);
  border: 1px solid rgba(194, 72, 72, 0.5);
  color: #7a2626;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.8rem;
}

.contact-form span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: #4e4942;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(23, 23, 23, 0.2);
  padding: 0.72rem 0.82rem;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(223, 202, 113, 0.2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  background: #0b0c10;
  color: #f4efdf;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer h4,
.footer p {
  margin: 0;
}

.footer-links a {
  display: block;
  color: #e9d588;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes mobilePop {
  0% {
    transform: translateY(18px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1140px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav {
    display: flex;
    position: absolute;
    top: 90px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(10, 10, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-bg {
    background: linear-gradient(180deg, transparent 0 66%, rgba(223, 202, 113, 0.75) 66% 100%);
  }

  .slide {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-copy {
    text-align: center;
    padding-top: 1rem;
  }

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

  .hero-slider {
    min-height: 700px;
  }

  .hero-visual {
    min-height: 310px;
    margin-top: 0.8rem;
  }

  .hero-visual .shape {
    width: min(90%, 350px);
    right: 50%;
    transform: translateX(50%);
    bottom: -30%;
  }

  .hero-visual .product {
    width: min(96%, 330px);
  }

  .two-col,
  .branch-cards,
  .luxury-grid,
  .flavor-cards {
    grid-template-columns: 1fr;
  }

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

  .media-stack {
    min-height: 380px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .flavor-hero-inner,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap {
    min-height: 160px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-shell {
    border-radius: 22px;
  }

  .hero-slider {
    min-height: 660px;
  }

  .hero-controls {
    min-height: 84px;
    grid-template-columns: 54px 1fr 54px;
  }

  .thumb {
    width: 52px;
    height: 52px;
  }

  .swipe-hint {
    display: block;
  }

  .touch-device .hero-copy,
  .touch-device .hero-visual,
  .touch-device .section-head,
  .touch-device .branch-card,
  .touch-device .luxury-grid article {
    animation: mobilePop 0.55s ease both;
  }

  .touch-device .branch-card:nth-child(2),
  .touch-device .luxury-grid article:nth-child(2) {
    animation-delay: 0.08s;
  }

  .touch-device .branch-card:nth-child(3),
  .touch-device .luxury-grid article:nth-child(3) {
    animation-delay: 0.16s;
  }

  .touch-device .branch-card:nth-child(4) {
    animation-delay: 0.24s;
  }
}
