/* Poker Offline page styles */

.poker-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
  padding-block: var(--space-8);
  background-color: var(--color-burgundy);
  overflow: hidden;
}

.poker-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.poker-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poker-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(128, 0, 32, 0.55);
}

.poker-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  color: var(--color-cream-ink);
  text-align: left;
}

.poker-hero__content > * {
  max-width: 66.666%;
}

.poker-hero__eyebrow {
  font-size: var(--text-small);
  line-height: var(--leading-small);
  letter-spacing: 0.08em;
  color: var(--color-cream-ink);
  margin-block-end: var(--space-4);
}

.poker-hero h1 {
  color: var(--color-cream-ink);
  font-size: var(--text-h1);
  line-height: var(--leading-h1);
  margin-block-end: var(--space-5);
}

.poker-hero__lead {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  margin-block-end: var(--space-4);
}

.poker-hero__note {
  color: var(--color-cream-ink);
  opacity: 0.9;
  margin-block-end: 0;
}

.poker-section {
  padding-block: var(--space-8);
}

.poker-section--cream {
  background-color: var(--color-cream);
  color: var(--color-ink);
}

.poker-section--burgundy {
  background-color: var(--color-burgundy);
  color: var(--color-cream-ink);
}

.poker-section--concrete-light {
  background-color: var(--color-concrete-light);
  color: var(--color-ink);
}

.poker-section--concrete {
  background-color: var(--color-concrete);
  color: var(--color-cream-ink);
}

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

.poker-section__content {
  grid-column: span 8;
  min-width: 0;
}

.poker-section__aside {
  grid-column: span 4;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-block-start: var(--space-5);
}

.poker-section__media {
  grid-column: span 4;
  min-width: 0;
}

.poker-section__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.poker-section__grid--image-right .poker-section__content {
  grid-column: span 7;
}

.poker-section__grid--image-right .poker-section__media {
  grid-column: span 5;
}

.poker-section__grid--image-left .poker-section__content {
  grid-column: span 8;
}

.poker-section__grid--image-left .poker-section__media {
  grid-column: span 4;
}

.poker-section__number {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  line-height: 1;
  color: var(--color-burgundy);
  opacity: 0.25;
  margin-block-end: var(--space-3);
}

.poker-section__number--light {
  color: var(--color-cream-ink);
  opacity: 0.35;
}

.poker-section__marker {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  line-height: 1;
  color: var(--color-burgundy);
  opacity: 0.25;
}

.poker-section__marker--light {
  color: var(--color-cream-ink);
  opacity: 0.35;
}

.poker-section h2 {
  color: inherit;
  margin-block-end: var(--space-5);
}

.poker-section p {
  margin-block-end: var(--space-4);
}

.poker-section ul {
  margin-block-end: var(--space-4);
}

.poker-feature-list {
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-feature-list li {
  padding-inline-start: var(--space-5);
  position: relative;
}

.poker-feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-electric-blue);
  font-weight: 700;
}

.poker-feature-list--light li::before {
  color: var(--color-electric-blue);
}

.poker-cta {
  background-color: var(--color-burgundy);
  color: var(--color-cream-ink);
  padding-block: var(--space-8);
  text-align: center;
}

.poker-cta__inner {
  max-width: 50%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.poker-cta h2 {
  color: var(--color-cream-ink);
  margin-block-end: 0;
}

.poker-cta p {
  margin-block-end: 0;
}

.poker-cta__button {
  margin-block-start: var(--space-3);
}

.poker-cta__phone {
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

.poker-cta__phone a {
  color: var(--color-electric-blue);
}

.poker-cta__phone a:hover {
  color: var(--color-cream-ink);
}

.poker-form-section {
  background-color: var(--color-white);
  color: var(--color-ink);
  padding-block: var(--space-8);
}

.poker-form-section__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-6);
  align-items: start;
}

.poker-form-section__form {
  grid-column: span 6;
  min-width: 0;
}

.poker-form-section__info {
  grid-column: span 6;
  min-width: 0;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  padding: var(--space-5);
}

.poker-form-section h2 {
  margin-block-end: var(--space-4);
}

.poker-form-section h3 {
  margin-block-end: var(--space-3);
}

.poker-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.poker-form__field {
  min-width: 0;
}

.poker-form__field label {
  display: block;
  margin-block-end: var(--space-2);
  font-size: var(--text-small);
  line-height: var(--leading-small);
  font-weight: 600;
}

.poker-form__field input,
.poker-form__field textarea,
.poker-form__field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-1);
  background-color: var(--color-white);
  color: var(--color-ink);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.poker-form__field input:focus,
.poker-form__field textarea:focus,
.poker-form__field select:focus {
  border-color: var(--color-electric-blue);
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
  outline: none;
}

.poker-form__field--checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-2);
}

.poker-form__field--checkbox input[type="checkbox"] {
  width: auto;
  margin-block-start: 4px;
}

.poker-form__field--checkbox label {
  flex: 1;
  margin-block-end: 0;
  font-weight: 400;
}

.poker-form__error {
  color: var(--color-burgundy);
  font-size: var(--text-small);
  line-height: var(--leading-small);
  margin-block-start: var(--space-2);
  margin-block-end: 0;
}

.poker-form__submit {
  align-self: flex-start;
}

.poker-form__status {
  font-size: var(--text-small);
  line-height: var(--leading-small);
  margin-block-end: 0;
  min-height: 1.5em;
}

.poker-form__status--success {
  color: #2e7d32;
}

.poker-form__status--error {
  color: var(--color-burgundy);
}

.poker-contact-list {
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block-end: 0;
}

.poker-contact-list li {
  line-height: var(--leading-body);
}

.poker-contact-list a {
  color: var(--color-electric-blue);
}

.poker-contact-list a:hover {
  color: var(--color-burgundy);
}

@media (max-width: 1024px) {
  .poker-hero__content > * {
    max-width: 75%;
  }

  .poker-cta__inner {
    max-width: 66.666%;
  }

  .poker-section__grid--image-right .poker-section__content,
  .poker-section__grid--image-left .poker-section__content {
    grid-column: span 7;
  }

  .poker-section__grid--image-right .poker-section__media,
  .poker-section__grid--image-left .poker-section__media {
    grid-column: span 5;
  }
}

@media (max-width: 768px) {
  .poker-hero {
    min-height: 400px;
    padding-block: var(--space-6);
  }

  .poker-hero__content > * {
    max-width: 100%;
  }

  .poker-section {
    padding-block: var(--space-7);
  }

  .poker-section__grid,
  .poker-section__grid--image-right,
  .poker-section__grid--image-left {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .poker-section__content,
  .poker-section__grid--image-right .poker-section__content,
  .poker-section__grid--image-left .poker-section__content,
  .poker-section__media,
  .poker-section__grid--image-right .poker-section__media,
  .poker-section__grid--image-left .poker-section__media,
  .poker-section__aside {
    grid-column: 1 / -1;
    width: 100%;
  }

  .poker-section__aside {
    justify-content: flex-start;
    padding-block-start: 0;
  }

  .poker-section__media {
    order: -1;
  }

  .poker-section__marker {
    font-size: var(--text-h2);
  }

  .poker-cta__inner {
    max-width: 100%;
  }

  .poker-form-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .poker-form-section__form,
  .poker-form-section__info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .poker-hero {
    min-height: 360px;
    padding-block: var(--space-5);
  }

  .poker-hero h1 {
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
  }

  .poker-section {
    padding-block: var(--space-6);
  }

  .poker-form__row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .poker-form__submit {
    width: 100%;
  }
}
