:root {
  --navy-950: #081221;
  --navy-900: #0d1b30;
  --navy-850: #12213a;
  --navy-800: #182c4a;
  --gold-500: #bc9e56;
  --gold-400: #d4bb7e;
  --gold-300: #ead7aa;
  --cream-50: #fffdf8;
  --cream-100: #fbf5ea;
  --cream-200: #f2e8d8;
  --cream-300: #e7dcc8;
  --ink-900: #1b1c21;
  --ink-700: #53555d;
  --ink-500: #767983;
  --danger-500: #a43a2b;
  --success-500: #2f7e58;
  --header-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", system-ui, sans-serif;
  --primary-color: var(--cream-50);
  --secondary-color: var(--navy-900);
  --accent-color: var(--gold-500);
  --text-color: var(--ink-900);
  --bg-color: var(--cream-100);
  --gold-crayola: var(--gold-500);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background:
    radial-gradient(circle at top left, rgba(188, 158, 86, 0.18), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(13, 27, 48, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f6eee2 100%);
  line-height: 1.6;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

.hero-section {
  min-height: 100vh;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(8, 18, 33, 0.92) 15%, rgba(8, 18, 33, 0.72) 52%, rgba(8, 18, 33, 0.9) 100%),
    var(--hero-image) center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
}

.hero-section::before {
  width: 340px;
  height: 340px;
  top: 120px;
  right: -80px;
  background: rgba(212, 187, 126, 0.16);
}

.hero-section::after {
  width: 240px;
  height: 240px;
  bottom: 40px;
  left: -60px;
  background: rgba(212, 187, 126, 0.12);
}

nav {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 14px 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8, 18, 33, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(16px);
}

nav.scrolled {
  background: rgba(8, 18, 33, 0.86);
  border-color: rgba(212, 187, 126, 0.18);
  box-shadow: 0 18px 44px rgba(8, 18, 33, 0.34);
}

nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

nav .logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-copy strong {
  font-family: var(--header-font);
  font-size: 1.9rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.logo-copy span {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  gap: clamp(12px, 1.8vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav ul > li {
  display: flex;
  align-items: center;
}

nav a {
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 4px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  transition: transform 0.22s ease;
}

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

nav a:hover::after {
  transform: scaleX(1);
}

.hero-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: end;
  gap: 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 720px;
}

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 187, 126, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-300);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-text h1 {
  margin: 18px 0 14px;
  font-family: var(--header-font);
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  font-weight: 600;
  text-wrap: balance;
}

.hero-text p {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-link:hover {
  transform: translateY(-2px);
}

.hero-link-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
}

.hero-link-secondary {
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-brand-card {
  justify-self: end;
  width: min(380px, 100%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 18, 33, 0.52);
  border: 1px solid rgba(212, 187, 126, 0.18);
  border-radius: 30px;
  padding: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.hero-brand-card img {
  width: min(100%, 280px);
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.hero-brand-copy {
  display: grid;
  gap: 6px;
}

.hero-brand-label {
  color: var(--gold-300);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-brand-copy strong {
  font-family: var(--header-font);
  font-size: 2.1rem;
  line-height: 0.95;
}

.hero-brand-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.brand-overview {
  width: min(1180px, calc(100% - 40px));
  margin: -70px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 27, 48, 0.08);
  box-shadow: 0 28px 60px rgba(13, 27, 48, 0.1);
  position: relative;
  z-index: 2;
}

.brand-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 26px;
}

.brand-overview-copy {
  align-self: center;
}

.brand-overview-copy h2,
.menu-section h2,
.brand-showcase .section-title,
.site-footer .logo {
  font-family: var(--header-font);
  line-height: 0.96;
  font-weight: 600;
}

.brand-overview-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--navy-900);
}

.brand-overview-copy p {
  color: var(--ink-700);
  font-size: 1.03rem;
}

.brand-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.brand-overview-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 27, 48, 0.06);
  color: var(--navy-900);
  font-weight: 700;
}

.brand-showcase {
  padding: 92px 0 14px;
  background: transparent;
}

.brand-showcase .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.brand-showcase .section-subtitle,
.brand-showcase .section-title,
.brand-showcase .section-text {
  color: var(--navy-900);
}

.brand-showcase .section-subtitle {
  display: inline-block;
  padding: 0;
  background: none;
  border: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-500);
}

.brand-showcase .section-title {
  margin-top: 14px;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  text-wrap: balance;
}

.brand-showcase .section-text {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--ink-700);
}

.section-subtitle::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.brand-showcase .grid-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.brand-showcase .service-card {
  height: 100%;
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 27, 48, 0.08);
  box-shadow: 0 24px 46px rgba(13, 27, 48, 0.08);
}

.brand-showcase .has-before {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.brand-showcase .card-banner {
  border-radius: 22px;
  overflow: hidden;
}

.brand-showcase .card-banner .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-showcase .service-card:hover .img-cover {
  transform: scale(1.05);
}

.brand-showcase .card-content {
  padding: 18px 8px 8px;
}

.brand-showcase .card-title a {
  color: var(--navy-900);
  text-decoration: none;
  font-family: var(--header-font);
  font-size: 2rem;
}

.brand-showcase .btn-text {
  color: var(--gold-500);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.menu-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.menu-section h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: var(--navy-900);
  margin: 16px 0 12px;
}

.section-heading p {
  color: var(--ink-700);
  font-size: 1.02rem;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(13, 27, 48, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy-900);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.filter-btn:hover {
  border-color: rgba(188, 158, 86, 0.34);
  color: var(--gold-500);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--primary-color);
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(13, 27, 48, 0.18);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
}

.menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 27, 48, 0.08);
  box-shadow: 0 24px 54px rgba(13, 27, 48, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-item:hover {
  transform: translateY(-8px);
  border-color: rgba(188, 158, 86, 0.24);
  box-shadow: 0 28px 64px rgba(13, 27, 48, 0.12);
}

.menu-item-img {
  width: 100%;
  height: clamp(210px, 22vw, 230px);
  object-fit: cover;
  display: block;
}

.menu-item-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem 0.74rem;
  border-radius: 999px;
  background: rgba(164, 58, 43, 0.94);
  color: #fff8f1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(164, 58, 43, 0.22);
}

.menu-item-out-of-stock .menu-item-img {
  filter: saturate(0.68) grayscale(0.18);
  opacity: 0.84;
}

.menu-item-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.menu-item h3 {
  color: var(--navy-900);
  line-height: 1.15;
}

.menu-item h3:first-of-type {
  font-size: 1.65rem;
  font-weight: 700;
}

.menu-item h3 + h3 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  font-weight: 800;
}

.menu-item-sizes {
  margin-top: 2px;
  position: relative;
}

.menu-item-sizes[data-enhanced="1"] .size-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.menu-item-sizes .size-select,
.menu-item-sizes .size-trigger {
  width: 100%;
  padding: 0.78rem 2.5rem 0.78rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(13, 27, 48, 0.1);
  background: rgba(13, 27, 48, 0.04);
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-item-sizes .size-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.menu-item-sizes .size-trigger-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-item-sizes .size-trigger-price,
.size-dd-price,
.menu-item .price,
.cart-item-price,
.cart-total {
  font-family: var(--body-font);
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.02em;
}

.menu-item-sizes .size-trigger-price,
.size-dd-price {
  color: var(--gold-500);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-item-sizes::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-item-sizes[data-open="1"]::after {
  transform: translateY(-30%) rotate(225deg);
}

.menu-item-sizes[data-disabled="1"]::after {
  opacity: 0.36;
}

.menu-item-sizes .size-select:hover,
.menu-item-sizes .size-trigger:hover {
  background: rgba(13, 27, 48, 0.06);
  border-color: rgba(188, 158, 86, 0.3);
  transform: translateY(-1px);
}

.menu-item-sizes .size-select:focus,
.menu-item-sizes .size-trigger:focus {
  border-color: rgba(188, 158, 86, 0.48);
  box-shadow: 0 0 0 4px rgba(188, 158, 86, 0.12);
}

.menu-item-sizes .size-select:disabled,
.menu-item-sizes .size-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  background: rgba(13, 27, 48, 0.03);
  transform: none;
  box-shadow: none;
}

.size-dropdown {
  position: fixed;
  z-index: 9999;
  width: 280px;
  max-width: calc(100vw - 24px);
  background: rgba(255, 252, 247, 0.98);
  border: 1px solid rgba(13, 27, 48, 0.1);
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(13, 27, 48, 0.18);
  padding: 8px;
  backdrop-filter: blur(10px);
}

.size-dropdown[hidden] {
  display: none;
}

.size-dropdown-list {
  display: grid;
  gap: 6px;
  max-height: 260px;
  overflow: auto;
  padding-right: 2px;
}

.size-dd-option {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 14px;
  padding: 11px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  text-align: left;
}

.size-dd-option:hover {
  background: rgba(13, 27, 48, 0.05);
  border-color: rgba(188, 158, 86, 0.24);
  transform: translateY(-1px);
}

.size-dd-option:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(188, 158, 86, 0.12);
  border-color: rgba(188, 158, 86, 0.36);
}

.size-dd-option[aria-selected="true"] {
  background: rgba(188, 158, 86, 0.12);
  border-color: rgba(188, 158, 86, 0.28);
}

.size-dd-name {
  font-weight: 700;
  color: var(--navy-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.menu-item .price {
  color: var(--navy-900);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.add-to-cart-btn {
  border: none;
  border-radius: 999px;
  min-width: 48px;
  min-height: 48px;
  padding: 0.68rem 1.06rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 16px 28px rgba(188, 158, 86, 0.2);
}

.add-to-cart-btn:hover {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.add-to-cart-btn:active {
  transform: scale(0.97);
}

.add-to-cart-btn:disabled {
  min-width: 132px;
  background: rgba(13, 27, 48, 0.18);
  color: rgba(8, 18, 33, 0.64);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.cart-nav {
  position: relative;
  margin-left: 8px;
}

#cart-toggle {
  border: 1px solid rgba(212, 187, 126, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--primary-color);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.16s ease, border-color 0.2s ease, background 0.2s ease;
}

#cart-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 187, 126, 0.4);
}

.cart-count {
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 800;
}

.cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(390px, calc(100vw - 24px));
  max-height: min(70vh, 560px);
  background: rgba(255, 252, 247, 0.995);
  border: 1px solid rgba(13, 27, 48, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(13, 27, 48, 0.2);
  padding: 18px 18px 16px;
  z-index: 1000;
  color: var(--navy-900);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cart-dropdown.open {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
}

.cart-dropdown h4 {
  margin: 0;
  text-align: center;
  font-family: var(--header-font);
  font-size: 1.8rem;
}

.cart-list {
  list-style: none;
  display: grid;
  gap: 10px;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0 4px 0 0;
  justify-items: center;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
  touch-action: pan-y;
}

.cart-list::-webkit-scrollbar {
  width: 6px;
}

.cart-list::-webkit-scrollbar-thumb {
  background: rgba(13, 27, 48, 0.18);
  border-radius: 999px;
}

.cart-dropdown:not(.has-items) .cart-list {
  display: none;
  padding-right: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 300px);
  border-bottom: 1px solid rgba(13, 27, 48, 0.08);
  padding: 10px 0;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item-body {
  min-width: 0;
  display: grid;
  gap: 5px;
  width: 100%;
  align-content: center;
  justify-items: start;
  text-align: left;
}

.cart-thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(13, 27, 48, 0.08);
}

.cart-item-name {
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item-meta {
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-item-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(13, 27, 48, 0.05);
  border: 1px solid rgba(13, 27, 48, 0.06);
}

.cart-item-controls button {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(13, 27, 48, 0.08);
  color: var(--navy-900);
  font-weight: 800;
  flex: 0 0 auto;
}

.cart-item-qty,
.cart-empty {
  color: var(--ink-700);
}

.cart-item-qty {
  min-width: 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy-900);
}

.cart-item-price {
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.cart-total {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 27, 48, 0.08);
  text-align: right;
  color: var(--navy-900);
  font-size: 1.28rem;
  font-weight: 700;
}

.cart-empty {
  text-align: center;
  margin: 0;
  font-size: 0.92rem;
}

.cart-actions {
  margin: 0;
  display: flex;
  gap: 10px;
}

.cart-actions button {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(13, 27, 48, 0.08);
  cursor: pointer;
  color: var(--navy-900);
  background: rgba(13, 27, 48, 0.05);
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-actions button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.cart-actions .cart-checkout {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--primary-color);
  border-color: transparent;
}

.toast {
  position: fixed;
  right: -320px;
  bottom: 30px;
  max-width: min(280px, calc(100vw - 24px));
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(8, 18, 33, 0.26);
  opacity: 0;
  transition: right 0.5s ease, opacity 0.5s ease;
  z-index: 2000;
}

.toast.show {
  right: 30px;
  opacity: 1;
}

.site-footer {
  padding: 82px 20px 42px;
  background:
    radial-gradient(circle at top center, rgba(212, 187, 126, 0.2), transparent 30%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.footer-content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: min(200px, 50vw);
  max-height: 220px;
  margin: 0 auto 18px;
  object-fit: contain;
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.28);
}

.site-footer .logo {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 10px;
}

.footer-location {
  font-size: 1.04rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
}

.footer-note {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(212, 187, 126, 0.16);
  border-color: rgba(212, 187, 126, 0.32);
}

.social-btn-text {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-footer .copyright {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
}

.animated-name {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(120deg, #ffffff, var(--gold-300), #ffffff);
  background-size: 220% 220%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 2s linear infinite;
}

.animated-name:hover {
  animation-play-state: paused;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-item.animate-on-scroll {
  transition-delay: calc(0.07s * var(--animation-order));
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 180% 50%; }
}

@media (max-width: 1024px) {
  .brand-showcase {
    display: none;
  }

  .hero-brand-card {
    display: none;
  }

  .menu-section {
    padding: 72px 0 92px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .menu-section h2 {
    font-size: clamp(2.3rem, 6vw, 3.3rem);
  }

  .section-heading p {
    max-width: 40rem;
    font-size: 0.96rem;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-item-img {
    height: clamp(160px, 20vw, 200px);
  }

  .menu-item-badge {
    top: 10px;
    right: 10px;
    padding: 0.34rem 0.56rem;
    font-size: 0.62rem;
  }

  .menu-item-content {
    padding: 18px;
    gap: 8px;
  }

  .menu-item h3:first-of-type {
    font-size: 1.18rem;
  }

  .menu-item h3 + h3 {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .menu-item-sizes .size-select,
  .menu-item-sizes .size-trigger {
    padding: 0.66rem 2.15rem 0.66rem 0.82rem;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .menu-item-sizes .size-trigger-price,
  .size-dd-price {
    font-size: 0.88rem;
  }

  .menu-item .price {
    font-size: 1.12rem;
  }

  .add-to-cart-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.7rem;
  }

  .hero-shell,
  .brand-overview {
    grid-template-columns: 1fr;
  }

  .brand-showcase .grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-kicker,
  .section-eyebrow {
    padding: 6px 10px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  nav {
    width: calc(100% - 20px);
    padding: 10px 12px;
    border-radius: 18px;
    gap: 10px;
    align-items: center;
  }

  nav .logo {
    gap: 8px;
    justify-content: flex-start;
    flex-shrink: 0;
  }

  nav .logo img {
    width: 44px;
    height: 44px;
  }

  .logo-copy strong {
    font-size: 1.15rem;
  }

  .logo-copy span,
  nav a {
    letter-spacing: 0.08em;
  }

  nav ul {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: visible;
  }

  nav ul a,
  #cart-toggle {
    white-space: nowrap;
  }

  nav ul a {
    font-size: 0.78rem;
  }

  .cart-nav {
    width: auto;
    flex-shrink: 0;
    margin-left: 2px;
    overflow: visible;
  }

  #cart-toggle {
    min-height: 38px;
    padding: 8px 10px;
    gap: 6px;
  }

  .cart-dropdown {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 84px);
    left: 10px;
    right: 10px;
    width: auto;
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 96px);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 96px);
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .cart-dropdown.open.has-items {
    bottom: auto;
  }

  .hero-shell {
    width: calc(100% - 24px);
    padding-top: 172px;
    padding-bottom: 56px;
    gap: 18px;
  }

  .hero-text {
    max-width: none;
    text-align: center;
  }

  .hero-text .hero-kicker {
    justify-content: center;
  }

  .hero-text h1 {
    margin: 14px 0 10px;
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 1;
  }

  .hero-text p {
    max-width: none;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 22px;
    justify-content: center;
    gap: 10px;
  }

  .hero-link {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .hero-brand-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding: 18px;
  }

  .hero-brand-card img {
    width: min(100%, 250px);
    max-height: 280px;
  }

  .brand-overview,
  .brand-showcase .container,
  .menu-section {
    width: calc(100% - 24px);
  }

  .brand-overview {
    margin-top: -24px;
    padding: 16px;
    gap: 14px;
  }

  .brand-overview-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .brand-overview-copy h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.95rem, 7vw, 2.55rem);
  }

  .brand-overview-copy p {
    font-size: 0.95rem;
  }

  .brand-overview-tags {
    margin-top: 16px;
    gap: 8px;
  }

  .brand-overview-tags span {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .brand-showcase .grid-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-showcase .service-card {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin: 0;
    gap: 14px;
  }

  .menu-section {
    padding: 64px 0 84px;
  }

  .section-heading {
    max-width: 34rem;
    margin: 0 auto 22px;
  }

  .menu-section h2 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 7.2vw, 2.9rem);
  }

  .section-heading p {
    font-size: 0.94rem;
  }

  .menu-filters {
    gap: 8px;
    margin-bottom: 22px;
  }

  .filter-btn {
    padding: 0.62rem 0.86rem;
    font-size: 0.82rem;
  }

  .menu-item {
    border-radius: 22px;
  }

  .menu-item-content {
    padding: 13px;
    gap: 6px;
  }

  .menu-item-img {
    height: auto;
    aspect-ratio: 1 / 1.05;
  }

  .menu-item-badge {
    top: 10px;
    right: 10px;
    padding: 0.34rem 0.54rem;
    font-size: 0.58rem;
  }

  .menu-item h3:first-of-type {
    font-size: 1rem;
    line-height: 1.22;
  }

  .menu-item h3 + h3 {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .menu-item-sizes .size-select,
  .menu-item-sizes .size-trigger {
    padding: 0.58rem 1.9rem 0.58rem 0.72rem;
    border-radius: 12px;
    font-size: 0.76rem;
  }

  .menu-item-sizes::after {
    right: 12px;
    width: 8px;
    height: 8px;
  }

  .menu-item-sizes .size-trigger-price,
  .size-dd-price {
    font-size: 0.82rem;
  }

  .menu-item .price {
    font-size: 1rem;
  }

  .menu-item-footer {
    gap: 8px;
  }

  .add-to-cart-btn {
    min-width: 38px;
    min-height: 38px;
    padding: 0.45rem 0.66rem;
    font-size: 0.95rem;
  }

  .cart-dropdown {
    left: 10px;
    right: 10px;
  }

  .cart-dropdown h4 {
    font-size: 1.7rem;
  }

  .cart-list {
    max-height: min(320px, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 230px));
  }
}

@media (max-width: 560px) {
  nav {
    width: calc(100% - 12px);
    padding: 8px 10px;
    gap: 8px;
  }

  nav .logo img {
    width: 38px;
    height: 38px;
  }

  .logo-copy {
    display: none;
  }

  nav ul a {
    min-height: auto;
    padding: 0 2px;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
  }

  nav ul a::after {
    display: none;
  }

  .cart-nav {
    margin-left: 0;
    flex-shrink: 0;
  }

  #cart-toggle {
    width: auto;
    min-height: 34px;
    padding: 6px 8px;
  }

  #cart-toggle span:not(.cart-count) {
    display: none;
  }

  .cart-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.66rem;
  }

  .hero-shell {
    width: calc(100% - 16px);
    padding-top: 148px;
    padding-bottom: 50px;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-link {
    width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(2.05rem, 11vw, 2.75rem);
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-brand-card {
    padding: 14px;
    border-radius: 22px;
  }

  .hero-brand-card img {
    width: min(100%, 220px);
    max-height: 240px;
  }

  .hero-brand-copy strong {
    font-size: 1.7rem;
  }

  .brand-overview,
  .brand-showcase .container,
  .menu-section {
    width: calc(100% - 16px);
  }

  .brand-overview {
    margin-top: -18px;
    padding: 12px;
    border-radius: 20px;
  }

  .brand-overview-media img {
    height: auto;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }

  .brand-overview-copy h2 {
    font-size: clamp(1.65rem, 9.5vw, 2.35rem);
  }

  .brand-overview-copy p {
    font-size: 0.89rem;
  }

  .brand-overview-tags span {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .brand-showcase {
    padding-top: 72px;
  }

  .brand-showcase .service-card {
    padding: 12px;
    border-radius: 22px;
  }

  .brand-showcase .card-banner {
    border-radius: 18px;
  }

  .brand-showcase .card-title a {
    font-size: 1.6rem;
  }

  .menu-section {
    padding: 56px 0 76px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .menu-section h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .section-heading p {
    font-size: 0.88rem;
  }

  .menu-filters {
    gap: 6px;
    margin-bottom: 18px;
  }

  .filter-btn {
    padding: 0.56rem 0.72rem;
    font-size: 0.76rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .menu-item {
    border-radius: 20px;
  }

  .menu-item-content {
    padding: 12px;
    gap: 5px;
  }

  .menu-item-img {
    aspect-ratio: 1 / 1;
    max-height: 180px;
  }

  .menu-item h3:first-of-type {
    font-size: 0.92rem;
  }

  .menu-item h3 + h3 {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .menu-item-sizes .size-select,
  .menu-item-sizes .size-trigger {
    padding: 0.52rem 1.7rem 0.52rem 0.66rem;
    border-radius: 11px;
    font-size: 0.68rem;
  }

  .menu-item-sizes .size-trigger-price,
  .size-dd-price {
    font-size: 0.74rem;
  }

  .menu-item .price {
    font-size: 0.92rem;
  }

  .menu-item-footer {
    gap: 6px;
    align-items: center;
  }

  .add-to-cart-btn {
    min-width: 34px;
    min-height: 34px;
    padding: 0.35rem 0.52rem;
    font-size: 0.9rem;
  }

  .add-to-cart-btn:disabled {
    min-width: 88px;
    font-size: 0.64rem;
  }

  .cart-dropdown {
    top: calc(env(safe-area-inset-top, 0px) + 72px);
    left: 8px;
    right: 8px;
    width: auto;
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 80px);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 80px);
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px;
  }

  .cart-dropdown.open.has-items {
    bottom: auto;
  }

  .cart-dropdown h4 {
    font-size: 1.35rem;
  }

  .cart-list {
    max-height: min(300px, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 210px));
    gap: 8px;
  }

  .cart-total {
    font-size: 1.05rem;
  }

  .cart-item {
    gap: 8px;
    padding: 8px 0;
  }

  .cart-thumb {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .cart-item-name {
    font-size: 0.84rem;
  }

  .cart-item-meta {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .cart-item-summary {
    gap: 6px;
  }

  .cart-item-controls button {
    width: 22px;
    height: 22px;
  }

  .cart-item-price {
    font-size: 0.82rem;
  }

  .cart-actions {
    gap: 8px;
  }

  .cart-actions button {
    min-height: 40px;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .toast {
    right: -260px;
    bottom: 18px;
    max-width: calc(100vw - 24px);
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  .toast.show {
    right: 12px;
  }

  .social-links {
    gap: 12px;
  }
}
