.home-page {
  background: var(--color-canvas);
}

.home-page .section {
  overflow: hidden;
}

.home-page .eyebrow {
  margin-block-end: var(--space-3);
}

.home-page .home-text-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-ivory);
  font-size: var(--text-utility);
  font-weight: 700;
  line-height: var(--leading-utility);
  text-decoration-color: var(--color-copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.home-page .home-text-link:hover,
.home-page .home-text-link:focus-visible {
  color: var(--color-amber);
  text-decoration-color: var(--color-amber);
}

.home-page .home-media-frame {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: var(--border-copper);
  background: var(--color-surface-deep);
}

.home-page .home-media-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.home-page .home-media-frame:hover img,
.home-page .home-media-frame:focus-visible img {
  transform: scale(1.04);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: var(--space-5);
}

.home-hero__copy {
  grid-column: span 7;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.home-hero__copy > * {
  min-width: 0;
  margin: 0;
}

.home-hero__copy .eyebrow {
  margin: 0;
}

.home-hero__copy h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: var(--leading-display);
}

.home-hero__lead {
  max-width: 54ch;
}

.home-hero__highlight {
  color: var(--color-amber);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: var(--leading-lead);
}

.home-hero__actions {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.home-hero__actions > * {
  min-width: 0;
}

.home-hero__media {
  grid-column: span 5;
  min-width: 0;
  aspect-ratio: 4 / 5;
  align-self: end;
}

.home-rhythms__intro {
  width: 41.6667%;
  min-width: 0;
}

.home-rhythms__intro .lead {
  max-width: 49ch;
}

.home-rhythms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.home-rhythm {
  min-width: 0;
  padding-left: var(--space-5);
  border-left: var(--border-copper);
}

.home-rhythm--felt {
  border-left-color: var(--color-emerald);
  background: linear-gradient(90deg, rgba(23, 98, 78, 0.34), transparent 78%);
}

.home-rhythm__number,
.home-visit__step-number,
.home-path__number {
  color: var(--color-amber);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: var(--leading-meta);
}

.home-rhythm h3 {
  max-width: 17ch;
}

.home-rhythm p:not(.home-rhythm__number) {
  max-width: 36ch;
}

.home-food__heading,
.home-wine__heading,
.home-space__heading,
.home-lounge__heading,
.home-moments__intro,
.home-visit__heading,
.home-paths__heading {
  min-width: 0;
}

.home-food__heading,
.home-wine__heading,
.home-space__heading,
.home-lounge__heading {
  width: 50%;
}

.home-food__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.home-food__media {
  grid-column: span 5;
  min-width: 0;
  aspect-ratio: 4 / 3;
}

.home-food__copy {
  grid-column: span 3;
  min-width: 0;
}

.home-food__copy .lead {
  max-width: 50ch;
}

.home-food__copy p:not(.lead) {
  max-width: 52ch;
}

.home-food__menu {
  grid-column: span 4;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-5);
}

.home-food__menu > * {
  min-width: 0;
  margin: 0;
}

.home-food__menu-row {
  min-width: 0;
  padding-bottom: var(--space-5);
  border-bottom: var(--border-subtle);
}

.home-food__menu-row:hover {
  border-bottom-color: var(--color-amber);
}

.home-food__menu-row h3 {
  max-width: 16ch;
}

.home-food__menu-row p:not(.eyebrow) {
  max-width: 34ch;
}

.home-wine__heading {
  width: 50%;
}

.home-wine__media {
  aspect-ratio: 16 / 6;
  margin-top: var(--space-7);
}

.home-wine__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.home-wine__copy {
  grid-column: span 7;
  min-width: 0;
}

.home-wine__copy .lead,
.home-wine__copy p:not(.lead) {
  max-width: 56ch;
}

.home-wine__panel {
  grid-column: span 5;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
}

.home-wine__panel > * {
  min-width: 0;
  margin: 0;
}

.home-wine__panel p:not(.eyebrow) {
  max-width: 40ch;
}

.home-wine__panel .button {
  width: 100%;
}

.home-wine__quote {
  width: 58.3333%;
  max-width: 42ch;
  margin-top: var(--space-6);
}

.home-space__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.home-space__visual {
  grid-column: span 8;
  min-width: 0;
}

.home-space__image-link {
  aspect-ratio: 4 / 3;
}

.home-space__caption {
  max-width: 52ch;
  margin-top: var(--space-5);
}

.home-space__notes {
  grid-column: span 4;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-6);
}

.home-space__notes > * {
  min-width: 0;
  margin: 0;
}

.home-space__note p {
  max-width: 36ch;
}

.home-space__note.panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.home-space__note.panel > * {
  min-width: 0;
  margin: 0;
}

.home-lounge__panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding: var(--space-6);
  border: var(--border-copper);
  background: var(--color-emerald);
  box-shadow: var(--shadow-panel);
}

.home-lounge__intro {
  grid-column: span 7;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.home-lounge__intro > * {
  min-width: 0;
  margin: 0;
}

.home-lounge__intro p {
  color: var(--color-ivory);
  max-width: 52ch;
}

.home-lounge__media {
  grid-column: span 5;
  min-width: 0;
  aspect-ratio: 3 / 4;
}

.home-lounge__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.home-lounge__fact {
  min-width: 0;
  padding-top: var(--space-5);
  border-top: var(--border-copper);
}

.home-lounge__fact:hover {
  border-top-color: var(--color-amber);
}

.home-lounge__fact h3 {
  max-width: 17ch;
}

.home-lounge__fact p:not(.eyebrow) {
  max-width: 34ch;
}

.home-lounge__action {
  margin-top: var(--space-6);
}

.home-moments__intro {
  width: 41.6667%;
}

.home-moments__intro p:not(.eyebrow) {
  max-width: 50ch;
}

.home-moments__figure {
  width: 100%;
  min-width: 0;
  margin-top: var(--space-6);
}

.home-moments__figure .home-media-frame {
  aspect-ratio: 16 / 7;
}

.home-moments__figure figcaption {
  max-width: 70ch;
}

.home-moments__figure figcaption a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration-color: var(--color-amber);
}

.home-visit__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.home-visit__address,
.home-visit__contact {
  min-width: 0;
}

.home-visit__address h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-visit__address p {
  max-width: 44ch;
}

.home-visit__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  border: var(--border-copper);
  box-shadow: var(--shadow-panel);
}

.home-visit__contact > * {
  min-width: 0;
  margin: 0;
}

.home-visit__contact p:not(.eyebrow) {
  max-width: 44ch;
}

.home-visit__contact-links {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

.home-visit__contact-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--color-ivory);
  font-weight: 700;
}

.home-visit__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.home-visit__step {
  min-width: 0;
  padding-top: var(--space-5);
  border-top: var(--border-subtle);
}

.home-visit__step h3 {
  max-width: 17ch;
}

.home-visit__step p:not(.home-visit__step-number) {
  max-width: 30ch;
}

.home-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.home-path {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  border: var(--border-copper);
  background: var(--color-surface);
  box-shadow: var(--shadow-panel);
  color: var(--color-white);
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.home-path > * {
  min-width: 0;
  margin: 0;
}

.home-path:hover,
.home-path:focus-visible {
  border-color: var(--color-amber);
  background: var(--color-surface-deep);
  transform: scale(1.02);
}

.home-path--felt {
  border-bottom: 3px solid var(--color-emerald);
}

.home-path h3 {
  max-width: 17ch;
}

.home-path p {
  max-width: 34ch;
}

.home-path__link {
  margin-top: auto;
  color: var(--color-ivory);
  font-size: var(--text-utility);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-copper);
  text-underline-offset: 0.24em;
}

.home-path:hover .home-path__link,
.home-path:focus-visible .home-path__link {
  color: var(--color-amber);
  text-decoration-color: var(--color-amber);
}

.home-closing {
  padding-top: var(--space-8);
}

.home-closing .container {
  border-top: var(--border-copper);
  padding-top: var(--space-7);
}

.home-closing__content {
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.home-closing__content > * {
  min-width: 0;
  margin: 0;
}

.home-closing__content p:not(.eyebrow) {
  max-width: 48ch;
}

.home-closing__actions {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.home-closing__actions > * {
  min-width: 0;
}

@media (max-width: 1050px) {
  .home-food__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-food__media,
  .home-food__copy,
  .home-food__menu {
    grid-column: auto;
  }

  .home-food__copy,
  .home-food__menu {
    grid-row: auto;
  }

  .home-food__copy {
    grid-column: 2;
  }

  .home-food__menu {
    grid-column: 2;
  }
}

@media (max-width: 1023px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .home-hero__media {
    grid-column: auto;
  }

  .home-hero__media {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .home-rhythms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-rhythm:last-child {
    grid-column: 1 / -1;
  }

  .home-space__grid {
    grid-template-columns: 1fr;
  }

  .home-space__visual,
  .home-space__notes {
    grid-column: auto;
  }

  .home-space__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-lounge__panel {
    grid-template-columns: 1fr;
  }

  .home-lounge__intro,
  .home-lounge__media {
    grid-column: auto;
  }

  .home-lounge__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 959px) {
  .home-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-path:last-child {
    grid-column: 1 / 2;
  }
}

@media (max-width: 900px) {
  .home-wine__grid {
    grid-template-columns: 1fr;
  }

  .home-wine__copy,
  .home-wine__panel {
    grid-column: auto;
  }

  .home-wine__quote {
    width: 100%;
  }

  .home-moments__intro {
    width: 66.6667%;
  }
}

@media (max-width: 860px) {
  .home-visit__cards {
    grid-template-columns: 1fr;
  }

  .home-visit__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-visit__step:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .home-lounge__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .home-page .section {
    padding-block: var(--space-8);
  }

  .home-hero__copy h1 {
    font-size: clamp(2.625rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .home-hero__lead,
  .home-rhythms__intro,
  .home-food__heading,
  .home-wine__heading,
  .home-space__heading,
  .home-lounge__heading,
  .home-moments__intro,
  .home-visit__heading,
  .home-paths__heading,
  .home-closing__content {
    width: 100%;
  }

  .home-hero__actions,
  .home-closing__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions > *,
  .home-closing__actions > * {
    width: 100%;
  }

  .home-hero__actions .home-text-link,
  .home-closing__actions .home-text-link {
    justify-content: flex-start;
  }

  .home-rhythms__grid,
  .home-food__grid,
  .home-space__notes,
  .home-visit__steps,
  .home-paths__grid {
    grid-template-columns: 1fr;
  }

  .home-rhythm:last-child,
  .home-food__copy,
  .home-food__menu,
  .home-visit__step:last-child,
  .home-path:last-child {
    grid-column: auto;
  }

  .home-rhythm {
    padding-top: var(--space-5);
    padding-left: 0;
    border-top: var(--border-copper);
    border-left: 0;
  }

  .home-rhythm--felt {
    padding-left: var(--space-4);
    border-top-color: var(--color-emerald);
    border-left: 3px solid var(--color-emerald);
    background: none;
  }

  .home-food__grid {
    margin-top: var(--space-6);
  }

  .home-food__media {
    grid-row: 2;
  }

  .home-food__copy {
    grid-row: 1;
  }

  .home-food__menu {
    grid-row: 3;
    padding: var(--space-5);
  }

  .home-wine__media {
    aspect-ratio: 16 / 9;
    margin-top: var(--space-6);
  }

  .home-space__grid,
  .home-lounge__panel {
    margin-top: var(--space-6);
  }

  .home-space__notes {
    gap: var(--space-5);
  }

  .home-lounge__panel {
    padding: var(--space-5);
  }

  .home-moments__figure .home-media-frame {
    aspect-ratio: 4 / 3;
  }

  .home-visit__cards,
  .home-paths__grid {
    margin-top: var(--space-6);
  }

  .home-visit__contact {
    padding: var(--space-5);
  }

  .home-closing .container {
    padding-top: var(--space-6);
  }
}

@media (max-width: 389px) {
  .home-hero__actions,
  .home-closing__actions {
    gap: var(--space-3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-media-frame img,
  .home-page .home-text-link,
  .home-page .home-path {
    transition: none;
  }

  .home-page .home-media-frame:hover img,
  .home-page .home-media-frame:focus-visible img,
  .home-page .home-path:hover,
  .home-page .home-path:focus-visible {
    transform: none;
  }
}

.home-page ul { list-style: none !important; }
