:root {
  --bg: #070a10;
  --text: #f2eee8;
  --muted: #b8afa2;
  --line: #303640;
  --gold: #d7aa6b;
  --steel: #5f7d7d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 170, 107, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 24%, rgba(95, 125, 125, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(215, 170, 107, 0.18), transparent 30%),
    repeating-linear-gradient(90deg, #05080f 0, #05080f 15px, #07101a 15px, #07101a 35px);
  background-attachment: fixed;
}

input,
select,
button {
  font-family: inherit;
}

body.page-fade {
  opacity: 0;
  transition: opacity 260ms ease;
}

body.page-fade.is-ready {
  opacity: 1;
}

body.page-fade.is-leaving {
  opacity: 0;
}

a {
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1360px, 96vw);
  margin-inline: auto;
}

.header {
  border-bottom: 1px solid rgba(215, 170, 107, 0.3);
  background: rgba(7, 10, 16, 0.92);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.logo {
  text-decoration: none;
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 0.87rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: #d2c8ba;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #efe2cf;
  margin: 0.32rem 0;
}

.page,
.block {
  margin-top: 1.05rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", "Manrope", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(4.2rem, 10vw, 9rem);
}

.hero h1 {
  max-width: 8ch;
  background: linear-gradient(180deg, #fff7ec 0%, #e7cda6 52%, #a46f3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 70px rgba(215, 170, 107, 0.12);
}

h2 {
  font-size: clamp(2.3rem, 5.8vw, 4.9rem);
}

.hero {
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: min(760px, calc(100vh - 96px));
  padding: clamp(1.1rem, 4vw, 3.5rem);
  background: linear-gradient(145deg, rgba(8, 12, 17, 0.9), rgba(13, 23, 29, 0.78));
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 90px rgba(0, 0, 0, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 82px);
  opacity: 0.7;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.95;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
}

.hero-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #080f18;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 35%, rgba(4, 7, 12, 0.52)),
    radial-gradient(circle at 22% 16%, rgba(215, 170, 107, 0.18), transparent 16rem);
}

.hero-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero:hover .hero-media img {
  transform: scale(1.04);
}

.hero-chip {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  margin: 0;
  border: 1px solid rgba(215, 170, 107, 0.5);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(4, 7, 12, 0.8);
  color: #dfc6a7;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(215, 170, 107, 0.34);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  color: #d8c1a2;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: clamp(1.14rem, 1.6vw, 1.5rem);
  margin: 1rem 0 0;
}

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  max-width: 680px;
}

.hero-proof span {
  border: 1px solid rgba(215, 170, 107, 0.22);
  border-radius: 14px;
  padding: 0.72rem 0.8rem;
  background: rgba(5, 10, 16, 0.42);
  color: #d7c9b8;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-proof strong {
  display: block;
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1;
  color: #e6c491;
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 340px;
}

.location-actions .btn {
  width: 100%;
  text-align: center;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.82rem 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.btn-gold {
  background: linear-gradient(180deg, #dfbc85, #c59358);
  color: #1d150f;
  border-color: #b8864a;
  box-shadow: 0 10px 30px rgba(197, 147, 88, 0.18);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.02);
}

.btn:hover {
  border-color: rgba(215, 170, 107, 0.68);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel,
.card,
.product-card,
.brand-story,
.controls {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 14, 21, 0.86);
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background:
    radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(215, 170, 107, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(215, 170, 107, 0.14), transparent 34%, rgba(95, 125, 125, 0.12));
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card:hover {
  border-color: rgba(215, 170, 107, 0.46);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(215, 170, 107, 0.08) inset;
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

.js-enabled .reveal-item {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(22px);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.panel,
.card {
  padding: clamp(1rem, 1.6vw, 1.35rem);
}

.panel-link {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-link:hover {
  border-color: rgba(215, 170, 107, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.panel-link:focus-visible {
  outline: 2px solid rgba(215, 170, 107, 0.75);
  outline-offset: 2px;
}

.panel-link-btn {
  justify-self: start;
  margin-top: auto;
  min-width: 220px;
  text-align: center;
}

.blog-hero {
  display: grid;
  gap: 0.7rem;
}

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

.blog-card {
  display: grid;
  gap: 0.7rem;
}

.blog-tag {
  margin: 0;
  color: #d5b583;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
}

.blog-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.blog-list.ordered {
  padding-left: 1.3rem;
}

.article-layout {
  max-width: 980px;
}

.article-card {
  display: grid;
  gap: 0.75rem;
}

.article-card h1 {
  margin: 0;
}

.article-hero-media {
  margin: 0;
  border: 1px solid rgba(215, 170, 107, 0.35);
  border-radius: 14px;
  overflow: hidden;
}

.article-hero-media img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.article-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.related-block {
  display: grid;
  gap: 0.75rem;
}

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

.blog-card h3 {
  margin: 0;
  line-height: 1.16;
}

.cards {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cards .card {
  min-height: 245px;
  display: grid;
  align-content: end;
  position: relative;
  background:
    linear-gradient(145deg, rgba(13, 21, 30, 0.96), rgba(7, 12, 18, 0.9)),
    radial-gradient(circle at 80% 0%, rgba(215, 170, 107, 0.18), transparent 15rem);
}

.cards .card:nth-child(1) {
  grid-column: span 5;
}

.cards .card:nth-child(2) {
  grid-column: span 4;
}

.cards .card:nth-child(3) {
  grid-column: span 3;
}

.card-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(230, 196, 145, 0.36);
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.cards .card h3 {
  max-width: 11ch;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
}

.cards .card p {
  max-width: 34ch;
  color: var(--muted);
}

.brand-rail {
  overflow: hidden;
  border: 1px solid rgba(215, 170, 107, 0.24);
  border-radius: 18px;
  background: rgba(5, 9, 15, 0.72);
}

.brand-rail-track {
  display: flex;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  min-width: max-content;
  padding: 0.55rem 1rem;
  color: rgba(242, 238, 232, 0.2);
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 6vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  animation: rail-shift 32s linear infinite;
}

.brand-rail-track span:nth-child(odd) {
  color: rgba(230, 196, 145, 0.24);
}

@keyframes rail-shift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-32%);
  }
}

.service-card {
  width: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: rgba(215, 170, 107, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.service-card:focus-visible {
  outline: 2px solid rgba(215, 170, 107, 0.7);
  outline-offset: 2px;
}

.price {
  color: var(--gold);
  font-weight: 800;
}

.text-link {
  color: #e4c190;
  text-decoration: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.signature-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 680px;
  border: 1px solid rgba(215, 170, 107, 0.28);
  border-radius: 28px;
  padding: clamp(1.1rem, 4.2vw, 3.4rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 170, 107, 0.18), transparent 22rem),
    radial-gradient(circle at 86% 50%, rgba(95, 125, 125, 0.18), transparent 26rem),
    linear-gradient(145deg, rgba(10, 15, 23, 0.94), rgba(7, 12, 18, 0.84));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.signature-panel::after {
  content: "VINTAGE BRO";
  position: absolute;
  right: -0.15em;
  bottom: -0.25em;
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(4rem, 16vw, 12rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.signature-copy,
.signature-board {
  position: relative;
  z-index: 1;
}

.signature-copy .lead {
  max-width: 54ch;
}

.signature-steps {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
}

.signature-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.8rem;
  align-items: start;
  border: 1px solid rgba(215, 170, 107, 0.18);
  border-radius: 16px;
  padding: 0.82rem;
  background: rgba(4, 8, 14, 0.34);
}

.signature-steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(215, 170, 107, 0.38);
  color: #e6c491;
  font-family: "Oswald", "Manrope", sans-serif;
}

.signature-steps h3 {
  font-size: 1.35rem;
}

.signature-steps p {
  grid-column: 2;
  margin: -0.2rem 0 0;
  color: var(--muted);
}

.signature-board {
  min-height: 590px;
  display: grid;
  place-items: center;
}

.signature-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 170, 107, 0.28);
  border-radius: 24px;
  background: #080f18;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.signature-shot img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.35s ease;
}

.signature-shot:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.signature-shot-main {
  width: 62%;
  height: 82%;
  right: 16%;
  top: 6%;
}

.signature-shot-main figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  border: 1px solid rgba(215, 170, 107, 0.45);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  background: rgba(4, 7, 12, 0.76);
  color: #e6c491;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signature-shot-side {
  width: 34%;
  height: 45%;
  left: 0;
  top: 18%;
  transform: rotate(-4deg);
}

.signature-shot-mini {
  width: 38%;
  height: 34%;
  right: 0;
  bottom: 2%;
  transform: rotate(3deg);
}

.home-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(215, 170, 107, 0.45);
  color: #e7d5bd;
  background: rgba(7, 12, 18, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.controls {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.booking-panel {
  padding: 1rem;
}

.booking-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-grid label,
.booking-picker {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #c4b9aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-picker {
  grid-column: 1 / -1;
}

.booking-lookup {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(215, 170, 107, 0.2);
}

.slot-title {
  margin: 0;
}

.calendar-days,
.time-slots {
  display: grid;
  gap: 0.55rem;
}

.calendar-days {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.time-slots {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.date-chip,
.time-chip {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a1018;
  color: var(--text);
  padding: 0.55rem 0.35rem;
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.date-chip span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.date-chip.is-active,
.time-chip.is-active {
  border-color: rgba(215, 170, 107, 0.7);
  background: rgba(215, 170, 107, 0.2);
}

.time-chip.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.date-chip.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.controls label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #c4b9aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

select,
input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #080e16;
  color: var(--text);
  padding: 0.62rem 0.7rem;
  font: inherit;
}

.brand-story {
  padding: 1rem;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
}

.brand-story p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.brand-logo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1d140d;
  background: linear-gradient(180deg, #e2c292, #bf8d53);
}

.products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 260px));
  justify-content: center;
}

.home-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 14, 21, 0.86);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-summary {
  cursor: pointer;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(58, 85, 85, 0) 0%, rgba(58, 85, 85, 0.35) 78%, rgba(58, 85, 85, 0.65) 100%);
}

.product-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  background: linear-gradient(180deg, rgba(40, 60, 63, 0) 0%, rgba(40, 60, 63, 0.44) 70%, rgba(40, 60, 63, 0.75) 100%);
}

.product-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.product-thumbs {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  gap: 0.35rem;
}

.gallery-thumb {
  border: 1px solid rgba(215, 170, 107, 0.45);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: rgba(5, 10, 16, 0.9);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 42px;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: rgba(215, 170, 107, 0.95);
}

@media (hover: hover) {
  .product-card:hover {
    border-color: rgba(215, 170, 107, 0.5);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  }

  .product-card:hover .product-image-wrap::before {
    opacity: 1;
  }

  .product-card:hover .product-image-wrap img {
    transform: scale(1.08);
    filter: saturate(1.07);
  }
}

.catalog-card {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: card-in 0.45s ease forwards;
  animation-delay: calc(var(--card-order, 0) * 50ms);
}

@keyframes card-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.8rem;
}

.product-brand {
  margin: 0;
  color: #d5b583;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.product-content h3 {
  font-size: 1.3rem;
  margin-top: 0.3rem;
  line-height: 1.15;
}

.home-products .product-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reserve-action {
  margin-top: auto;
  padding-top: 0.65rem;
  display: grid;
  gap: 0.55rem;
}

.reserve-open-btn {
  width: 100%;
}

.reserve-status {
  margin: 0;
  color: var(--muted);
  min-height: 1.15rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 8, 14, 0.72);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  width: min(420px, 100%);
  border: 1px solid rgba(215, 170, 107, 0.35);
  background: linear-gradient(180deg, rgba(10, 16, 24, 0.98), rgba(7, 12, 18, 0.98));
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
  max-width: calc(100% - 52px);
}

.modal-close {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

.modal-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.modal-form label {
  display: grid;
  gap: 0.3rem;
}

.modal-status {
  margin: 0;
  color: var(--muted);
  min-height: 1.1rem;
}

.product-modal-card {
  width: min(880px, 100%);
  max-height: calc(100vh - 1.5rem);
  overflow: auto;
}

.product-modal-body {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.9rem;
}

.product-modal-gallery {
  display: grid;
  gap: 0.55rem;
}

#product-modal-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.product-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 0.45rem;
}

.product-modal-thumbs:empty {
  display: none;
}

.product-modal-thumb {
  border: 1px solid rgba(215, 170, 107, 0.35);
  border-radius: 8px;
  background: rgba(8, 12, 18, 0.92);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.product-modal-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.product-modal-thumb.is-active {
  border-color: rgba(215, 170, 107, 0.9);
}

.product-modal-info {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

#product-modal-reserve {
  width: 100%;
}

.product-desc,
.product-meta,
.empty,
.admin-status {
  color: var(--muted);
}

.admin-form {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-status {
  margin: 0.6rem 0 0;
}

.admin-form label {
  display: grid;
  gap: 0.35rem;
}

.wide {
  grid-column: 1 / -1;
}

.admin-list {
  display: grid;
  gap: 0.8rem;
}

.admin-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
}

.admin-item img {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  object-fit: cover;
}

.admin-item-content h3 {
  font-size: 1.25rem;
}

.footer {
  text-align: center;
  color: #cfb89a;
  margin: 3rem 0 1.4rem;
}

.floating-telegram {
  position: fixed;
  right: max(1rem, calc((100vw - 1360px) / 2));
  bottom: 1rem;
  z-index: 35;
  display: grid;
  gap: 0.1rem;
  min-width: 210px;
  border: 1px solid rgba(215, 170, 107, 0.45);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  background: linear-gradient(135deg, rgba(215, 170, 107, 0.95), rgba(179, 119, 62, 0.94));
  color: #1b120b;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 38px rgba(215, 170, 107, 0.16);
}

.floating-telegram span {
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.floating-telegram strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards,
  .grid-2,
  .signature-panel {
    grid-template-columns: 1fr;
  }

  .cards .card {
    grid-column: 1 / -1;
  }

  .signature-board {
    min-height: 460px;
  }

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

  .related-grid {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(215, 170, 107, 0.2);
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.92rem;
  }

  .nav.is-open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 0.65rem 0;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    line-height: 1.48;
    background-attachment: scroll;
    padding-bottom: 4.7rem;
  }

  .badge {
    display: none;
  }

  .container {
    width: min(100% - 0.8rem, 1360px);
  }

  .page,
  .block {
    margin-top: 0.65rem;
  }

  .hero {
    min-height: auto;
    border-radius: 20px;
    padding: 1rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-media img {
    min-height: 300px;
  }

  .hero-canvas {
    opacity: 0.55;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .signature-panel {
    border-radius: 22px;
    min-height: auto;
  }

  .signature-board {
    min-height: auto;
    display: grid;
    gap: 0.7rem;
  }

  .signature-shot {
    position: relative;
    width: 100%;
    height: auto;
    inset: auto;
    transform: none;
  }

  .signature-shot img {
    aspect-ratio: 4 / 5;
  }

  .section-head .btn {
    width: 100%;
    text-align: center;
  }

  .controls,
  .brand-story,
  .admin-form,
  .admin-item,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .calendar-days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-body {
    grid-template-columns: 1fr;
  }

  .product-modal-gallery {
    order: 1;
  }

  .product-modal-info {
    order: 2;
  }

  .modal-head h2 {
    font-size: 1.05rem;
  }

  .actions .btn,
  .admin-item .btn {
    width: 100%;
    text-align: center;
  }

  .floating-telegram {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    min-width: 0;
    place-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled .reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
