.home-page {
  overflow: clip;
  background: var(--color-canvas);
}

.home-page .home-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--color-champagne);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-page .home-text-link::after {
  width: 0;
  height: 1px;
  margin-inline-start: 0.5rem;
  background: var(--color-champagne);
  content: "";
  transition: width var(--transition-base);
}

.home-page .home-text-link:hover::after,
.home-page .home-text-link:focus-visible::after {
  width: 1.5rem;
}

.home-hero {
  padding-block: var(--space-6) var(--space-9);
  background: var(--color-deep);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 45rem;
}

.home-hero__copy {
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(90deg, var(--color-deep) 78%, rgba(7, 8, 9, 0.72) 90%, rgba(7, 8, 9, 0) 100%);
}

.home-hero__copy h1,
.home-hero__copy p {
  margin: 0;
}

.home-hero__copy h1 {
  max-width: 42rem;
}

.home-hero__lead {
  max-width: 40rem;
}

.home-hero__actions,
.home-closing__actions {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.home-hero__actions > *,
.home-closing__actions > * {
  min-width: 0;
}

.home-hero__meta {
  max-width: 34rem;
  color: var(--color-text-muted);
  font-size: var(--text-label);
}

.home-hero__media {
  grid-column: 2;
  width: 100%;
  height: 100%;
  min-width: 0;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 9, 0.34), transparent 48%);
  content: "";
  pointer-events: none;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-position: 68% center;
}

.home-rhythm__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--space-8);
}

.home-rhythm__intro,
.home-rhythm__entries {
  min-width: 0;
}

.home-rhythm__intro .lead {
  max-width: 42rem;
}

.home-rhythm__entries {
  display: flex;
  flex-direction: column;
}

.home-rhythm__entry {
  display: grid;
  grid-template-columns: minmax(3.5rem, 0.8fr) minmax(0, 7.2fr);
  gap: var(--space-5);
  min-width: 0;
  padding-block: var(--space-5);
  border-top: var(--border-subtle);
}

.home-rhythm__entry:last-child {
  border-bottom: var(--border-subtle);
}

.home-rhythm__entry-copy {
  min-width: 0;
  max-width: 34rem;
}

.home-rhythm__entry-copy h3,
.home-rhythm__entry-copy p {
  margin: 0;
}

.home-rhythm__entry-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-number {
  color: var(--color-gold);
  font-size: var(--text-utility);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.home-menu-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: calc(var(--space-6) + var(--space-4));
  align-items: center;
}

.home-menu-teaser__media {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
}

.home-menu-teaser__media img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.home-menu-teaser__media figcaption {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  left: var(--space-4);
  z-index: 1;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-gold);
  color: var(--color-text);
  font-size: var(--text-utility);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-menu-teaser__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.home-menu-teaser__copy h2,
.home-menu-teaser__copy p {
  margin: 0;
}

.home-menu-teaser__lead {
  max-width: 38rem;
}

.home-menu-teaser__directions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.home-direction {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
}

.home-direction h3,
.home-direction p,
.home-direction .eyebrow {
  margin: 0;
}

.home-direction h3 {
  font-size: 1.3rem;
}

.home-direction p {
  font-size: 0.875rem;
  line-height: 1.55;
}

.home-wine {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-panel);
}

.home-wine__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-wine__backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 28, 29, 0.96), rgba(23, 28, 29, 0.84));
  content: "";
}

.home-wine__backdrop img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.home-wine__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-7);
}

.home-wine__intro {
  width: min(100%, 38rem);
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.home-wine__intro .lead {
  margin-block-end: 0;
}

.home-wine__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.home-wine-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  border-top: var(--border-gold);
  background: rgba(7, 8, 9, 0.78);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.home-wine-card h3,
.home-wine-card p {
  margin: 0;
}

.home-wine-card:hover {
  border-color: var(--color-champagne);
  transform: translateY(-2px);
}

.home-lounge {
  position: relative;
  isolation: isolate;
  min-height: 38.75rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-deep);
}

.home-lounge__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-lounge__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 9, 0.86) 0%, rgba(7, 8, 9, 0.56) 42%, rgba(7, 8, 9, 0.18) 100%);
  content: "";
}

.home-lounge__image img {
  width: 100%;
  height: 100%;
  object-position: 68% center;
}

.home-lounge__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.home-lounge__panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  grid-column: 1;
  background: rgba(23, 28, 29, 0.94);
}

.home-lounge__panel h2,
.home-lounge__panel p {
  margin: 0;
}

.home-lounge__main {
  max-width: 34rem;
}

.home-lounge__secondary {
  max-width: 30rem;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-gold);
}

.home-private__intro {
  width: min(100%, 40rem);
  min-width: 0;
}

.home-private__intro .lead {
  margin-block-end: var(--space-7);
}

.home-private__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
}

.home-private-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-panel);
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.home-private-card h3,
.home-private-card p,
.home-private-card .eyebrow {
  margin: 0;
}

.home-private-card .button {
  margin-top: auto;
}

.home-private-card:hover {
  background: var(--color-raised);
}

.home-deco__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr) minmax(0, 2fr);
  gap: var(--space-5);
  align-items: start;
}

.home-deco__main-image,
.home-deco__detail-image {
  width: 100%;
  min-width: 0;
}

.home-deco__main-image {
  aspect-ratio: 4 / 3;
}

.home-deco__main-image img {
  width: 100%;
  height: 100%;
}

.home-deco__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  padding-top: var(--space-5);
}

.home-deco__copy h2,
.home-deco__copy p {
  margin: 0;
}

.home-deco__lead {
  max-width: 36rem;
}

.home-deco__points {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
}

.home-deco-point {
  display: grid;
  grid-template-columns: minmax(2.25rem, 0.7fr) minmax(0, 5fr);
  gap: var(--space-3);
  min-width: 0;
  padding-block: var(--space-4);
  border-top: var(--border-subtle);
}

.home-deco-point:last-child {
  border-bottom: var(--border-subtle);
}

.home-deco-point h3,
.home-deco-point p {
  margin: 0;
}

.home-deco-point > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-2);
}

.home-deco-point p {
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-deco__detail-image {
  align-self: end;
  aspect-ratio: 2 / 3;
  margin-bottom: var(--space-7);
}

.home-deco__detail-image img {
  width: 100%;
  height: 100%;
  object-position: 72% center;
}

.home-events__panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-7);
}

.home-events__intro {
  width: min(100%, 44rem);
  min-width: 0;
}

.home-events__intro .lead {
  margin-block-end: 0;
}

.home-events__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.home-event-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: var(--border-gold);
}

.home-event-item h3,
.home-event-item p {
  margin: 0;
}

.home-event-item--action .button {
  margin-top: auto;
}

.home-contact__panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-7);
}

.home-contact__intro {
  width: min(100%, 38rem);
  min-width: 0;
}

.home-contact__intro .lead {
  margin-block-end: 0;
}

.home-contact__details {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: var(--space-5);
}

.home-contact-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: var(--border-gold);
}

.home-contact-detail h3,
.home-contact-detail p,
.home-contact-detail .eyebrow {
  margin: 0;
}

.home-contact-detail__value {
  max-width: 100%;
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.home-contact-detail a.home-contact-detail__value {
  color: var(--color-champagne);
}

.home-contact__cta {
  min-height: 3rem;
}

.home-closing {
  position: relative;
  overflow: hidden;
  background: var(--color-deep);
  text-align: center;
}

.home-closing::before,
.home-closing::after {
  position: absolute;
  width: min(16vw, 12rem);
  height: min(16vw, 12rem);
  border: 1px solid var(--color-line);
  content: "";
  transform: rotate(45deg);
}

.home-closing::before {
  top: -8rem;
  left: -5rem;
}

.home-closing::after {
  right: -5rem;
  bottom: -8rem;
}

.home-closing__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 42rem);
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.home-closing__content h2,
.home-closing__content p,
.home-closing__content .eyebrow {
  margin: 0;
}

.home-closing__content .lead {
  max-width: 32rem;
}

.home-closing__actions {
  justify-content: center;
}

@media (max-width: 62.5rem) {
  .home-hero__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: auto;
  }

  .home-hero__copy {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 32rem;
    background: linear-gradient(90deg, rgba(7, 8, 9, 0.98) 0%, rgba(7, 8, 9, 0.86) 58%, rgba(7, 8, 9, 0.42) 100%);
  }

  .home-hero__media {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 32rem;
  }

  .home-rhythm__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-6);
  }

  .home-rhythm__intro,
  .home-rhythm__entries {
    grid-column: 1 / -1;
  }

  .home-menu-teaser__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-6);
  }

  .home-menu-teaser__media,
  .home-menu-teaser__copy {
    grid-column: 1 / -1;
  }

  .home-menu-teaser__directions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-menu-teaser__directions > :nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-wine__cards,
  .home-private__cards,
  .home-events__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-wine__cards > :nth-child(3),
  .home-private__cards > :nth-child(3),
  .home-events__items > :nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-lounge {
    display: block;
    min-height: 0;
    padding-block: var(--space-7);
  }

  .home-lounge__image {
    position: static;
    width: min(100% - (var(--container-gutter) * 2), var(--container-max));
    aspect-ratio: 16 / 9;
    margin: var(--space-6) auto 0;
  }

  .home-lounge__image::after {
    background: rgba(7, 8, 9, 0.18);
  }

  .home-lounge__inner {
    display: block;
  }

  .home-lounge__panel {
    width: min(100%, 55rem);
  }

  .home-deco__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-deco__main-image,
  .home-deco__copy,
  .home-deco__detail-image {
    grid-column: 1 / -1;
  }

  .home-deco__detail-image {
    aspect-ratio: 3 / 2;
    margin: 0;
  }

  .home-contact__details {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-contact-detail--address {
    grid-column: 1 / -1;
  }

  .home-contact-detail--phone,
  .home-contact-detail--email {
    grid-column: span 3;
  }
}

@media (max-width: 43.75rem) {
  .home-hero {
    padding-block: var(--space-6) var(--space-7);
  }

  .home-hero__grid {
    display: flex;
    flex-direction: column;
  }

  .home-hero__copy {
    min-height: 0;
    padding: var(--space-6) 0;
    background: transparent;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .home-hero__lead {
    font-size: 1rem;
  }

  .home-hero__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .home-hero__media::after {
    display: none;
  }

  .home-hero__actions,
  .home-closing__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions .button,
  .home-closing__actions .button {
    width: 100%;
  }

  .home-hero__actions .home-text-link,
  .home-closing__actions .home-text-link {
    justify-content: center;
  }

  .home-rhythm__entry {
    grid-template-columns: minmax(2.75rem, auto) minmax(0, 1fr);
    gap: var(--space-3);
  }

  .home-menu-teaser__grid,
  .home-rhythm__grid {
    display: flex;
    flex-direction: column;
  }

  .home-menu-teaser__copy {
    align-items: stretch;
  }

  .home-menu-teaser__media {
    order: 2;
  }

  .home-menu-teaser__directions,
  .home-wine__cards,
  .home-private__cards,
  .home-events__items,
  .home-contact__details {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-menu-teaser__directions > :nth-child(3),
  .home-wine__cards > :nth-child(3),
  .home-private__cards > :nth-child(3),
  .home-events__items > :nth-child(3),
  .home-contact-detail--address,
  .home-contact-detail--phone,
  .home-contact-detail--email {
    grid-column: 1;
  }

  .home-wine__content,
  .home-events__panel,
  .home-contact__panel {
    gap: var(--space-6);
  }

  .home-wine__intro {
    text-align: left;
  }

  .home-wine-card,
  .home-private-card {
    padding: var(--space-5);
  }

  .home-wine-card:hover {
    transform: none;
  }

  .home-lounge {
    padding-block: var(--space-7);
  }

  .home-lounge__panel {
    padding: var(--space-5);
  }

  .home-lounge__image {
    width: 100%;
    margin-top: var(--space-5);
  }

  .home-deco__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }

  .home-deco__main-image,
  .home-deco__detail-image,
  .home-deco__copy {
    width: 100%;
  }

  .home-deco__copy {
    padding-top: 0;
  }

  .home-deco__detail-image {
    order: 3;
    align-self: stretch;
    margin-left: 0;
    width: 100%;
  }

  .home-hero__media img,
  .home-lounge__image img,
  .home-deco__detail-image img {
    object-position: center;
  }

  .home-deco-point {
    grid-template-columns: minmax(2.25rem, auto) minmax(0, 1fr);
  }

  .home-contact__cta {
    width: 100%;
    min-height: 3rem;
  }

  .home-closing__content {
    align-items: stretch;
  }

  .home-closing__content h2 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .home-closing__content .eyebrow,
  .home-closing__content h2,
  .home-closing__content .lead {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-text-link::after {
    transition: none;
  }

  .home-wine-card:hover {
    transform: none;
  }
}

ul { list-style: none !important; }
.nav-toggle { flex-direction: column; }

/* mobile-media-center */
@media (max-width: 48rem) {
  .media-frame,
  .image-frame,
  [class*="__media"],
  [class*="__visual"] {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .media-frame > img,
  .media-frame img,
  .media-frame video,
  .image-frame img,
  [class*="__media"] img,
  [class*="__visual"] img,
  [class*="hero"] > img,
  figure img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* mobile-photo-center */
@media (max-width: 56.25rem) {
  img,
  video {
    object-position: center !important;
  }

  .image-frame,
  .media-frame,
  .card__media,
  [class*='__media'] {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    justify-self: stretch;
    overflow: hidden;
  }

  .image-frame img,
  .media-frame img,
  .media-frame video,
  .card__media img,
  [class*='__media'] img,
  [class*='hero'] img,
  [class*='hero__image'] {
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center !important;
  }
}
