/* Classic Dining Room - Home page styles */

.home-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: #1E293B;
  padding: 1.5rem;
}

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

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02);
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.28) 0%, rgba(30, 41, 59, 0.55) 100%);
}

.home-hero__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  background-color: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #0891B2;
}

.home-hero__panel h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.home-hero__panel p {
  max-width: 560px;
  margin: 0;
  color: #475569;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.home-hero__actions .btn {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 40rem) {
  .home-hero {
    min-height: 80vh;
    padding: 2.5rem;
  }

  .home-hero__panel {
    padding: 2.5rem;
    gap: 1.25rem;
  }

  .home-hero__actions .btn {
    flex: 0 1 auto;
    max-width: none;
  }
}

.home-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.home-intro__copy {
  max-width: 720px;
  min-width: 0;
}

.home-intro__copy h2 {
  margin-block-end: 1.25rem;
}

.home-intro__copy p {
  margin-block-end: 1rem;
}

.home-intro__quote {
  margin-block-start: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #0891B2;
  border-inline-start-color: #06B6D4;
}

.home-intro__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.home-intro__clay-mark {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-intro__clay-layer {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-intro__clay-layer--back {
  transform: rotate(45deg);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-color: rgba(6, 182, 212, 0.25);
}

.home-intro__clay-layer--front {
  transform: rotate(45deg) scale(0.72);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

@media (min-width: 48rem) {
  .home-intro__layout {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 3rem;
  }

  .home-intro__visual {
    justify-content: flex-end;
  }
}

.home-event-types__heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-block-end: 2.5rem;
}

.home-event-types__heading h2 {
  margin-block-end: 0.75rem;
}

.home-event-types__heading p {
  color: #475569;
  margin: 0;
}

.home-event-types__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.home-event-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  min-width: 0;
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.home-event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.15), 0 4px 6px -4px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-event-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #0891B2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-event-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.home-event-card h3 {
  margin: 0;
}

.home-event-card p {
  margin: 0;
  color: #475569;
}

.home-event-card__link {
  margin-block-start: 0.5rem;
  color: #0891B2;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 200ms ease-in-out;
}

.home-event-card__link:hover {
  color: #06B6D4;
}

@media (min-width: 40rem) {
  .home-event-types__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .home-event-types__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-event-card {
    padding: 2rem;
  }
}

.home-corporate__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.home-corporate__copy {
  max-width: 600px;
  min-width: 0;
}

.home-corporate__copy h2 {
  margin-block-end: 1rem;
}

.home-corporate__copy > p {
  margin-block-end: 1.5rem;
  color: #475569;
}

.home-corporate__list {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-corporate__list li {
  padding-inline-start: 1.5rem;
  position: relative;
}

.home-corporate__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #06B6D4;
}

.home-corporate__list h3 {
  margin-block-end: 0.25rem;
}

.home-corporate__list p {
  margin: 0;
  color: #475569;
}

.home-corporate__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0891B2;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 200ms ease-in-out;
}

.home-corporate__cta:hover {
  color: #06B6D4;
}

.home-corporate__media {
  min-width: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-corporate__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02);
  transition: transform 200ms ease-in-out;
}

.home-corporate__media:hover img {
  transform: scale(1.02);
}

@media (min-width: 48rem) {
  .home-corporate__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .home-corporate__media img {
    height: 100%;
    min-height: 360px;
  }
}

.home-personal__heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-block-end: 2.5rem;
}

.home-personal__heading h2 {
  margin-block-end: 0.75rem;
}

.home-personal__heading p {
  color: #475569;
  margin: 0;
}

.home-personal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.home-personal-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.home-personal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.15), 0 4px 6px -4px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-personal-card__media {
  width: 100%;
  overflow: hidden;
}

.home-personal-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02);
  transition: transform 200ms ease-in-out;
}

.home-personal-card:hover .home-personal-card__media img {
  transform: scale(1.02);
}

.home-personal-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-personal-card__body h3 {
  margin: 0;
}

.home-personal-card__body p {
  margin: 0;
  color: #475569;
}

@media (min-width: 48rem) {
  .home-personal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .home-personal-card__media img {
    height: 200px;
  }

  .home-personal-card__body {
    padding: 2rem;
  }
}

.home-poker__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.home-poker__media {
  min-width: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-poker__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02);
}

.home-poker__copy {
  max-width: 600px;
  min-width: 0;
}

.home-poker__copy h2 {
  margin-block-end: 1rem;
}

.home-poker__copy > p {
  margin-block-end: 1.5rem;
  color: #475569;
}

.home-poker__list {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-poker__list li {
  padding-inline-start: 1.5rem;
  position: relative;
}

.home-poker__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #06B6D4;
}

.home-poker__list h3 {
  margin-block-end: 0.25rem;
}

.home-poker__list p {
  margin: 0;
  color: #475569;
}

.home-poker__notice {
  background-color: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  color: #1E293B;
  line-height: 1.5;
}

.home-poker__notice strong {
  color: #0891B2;
}

@media (min-width: 48rem) {
  .home-poker__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .home-poker__media img {
    height: 100%;
    min-height: 360px;
  }
}

.home-process__heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-block-end: 2.5rem;
}

.home-process__heading h2 {
  margin-block-end: 0.75rem;
}

.home-process__heading p {
  color: #475569;
  margin: 0;
}

.home-process__timeline {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.home-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.home-process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.15), 0 4px 6px -4px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-process-step__number {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(180deg, #06B6D4 0%, #0891B2 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-process-step__content {
  min-width: 0;
}

.home-process-step__content h3 {
  margin-block-end: 0.25rem;
}

.home-process-step__content p {
  margin: 0;
  color: #475569;
  max-width: 500px;
}

@media (min-width: 40rem) {
  .home-process__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .home-process__timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-process-step {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
  }
}

.home-hosts__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.home-hosts__copy {
  max-width: 720px;
  min-width: 0;
}

.home-hosts__copy h2 {
  margin-block-end: 1rem;
}

.home-hosts__copy > p {
  margin-block-end: 1.5rem;
  color: #475569;
}

.home-hosts__list {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-hosts__list li {
  padding-inline-start: 1.5rem;
  position: relative;
}

.home-hosts__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #06B6D4;
}

.home-hosts__list h3 {
  margin-block-end: 0.25rem;
}

.home-hosts__list p {
  margin: 0;
  color: #475569;
}

.home-hosts__quote {
  margin-block-start: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #0891B2;
  border-inline-start-color: #06B6D4;
}

.home-hosts__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.home-hosts__clay-icon {
  width: min(100%, 200px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #0891B2;
}

.home-hosts__clay-icon svg {
  width: 4rem;
  height: 4rem;
}

@media (min-width: 48rem) {
  .home-hosts__layout {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 3rem;
  }

  .home-hosts__visual {
    justify-content: flex-end;
  }
}

.home-venue {
  position: relative;
  padding-block: 4rem;
  overflow: hidden;
}

.home-venue__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-venue__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02);
}

.home-venue__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.35) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.home-venue__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.home-venue__panel {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.home-venue__panel h2 {
  margin: 0;
}

.home-venue__panel > p {
  margin: 0;
  color: #475569;
  max-width: 520px;
}

.home-venue__list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  text-align: start;
}

.home-venue__list li {
  padding-inline-start: 1.5rem;
  position: relative;
}

.home-venue__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #06B6D4;
}

.home-venue__list h3 {
  margin-block-end: 0.25rem;
}

.home-venue__list p {
  margin: 0;
  color: #475569;
}

.home-venue__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0891B2;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 200ms ease-in-out;
}

.home-venue__cta:hover {
  color: #06B6D4;
}

@media (min-width: 48rem) {
  .home-venue {
    padding-block: 6rem;
  }

  .home-venue__panel {
    padding: 2.5rem;
    gap: 1.25rem;
  }
}

.home-gallery__heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-block-end: 2.5rem;
}

.home-gallery__heading h2 {
  margin-block-end: 0.75rem;
}

.home-gallery__heading p {
  color: #475569;
  margin: 0;
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.home-gallery-item {
  min-width: 0;
  margin: 0;
}

.home-gallery-item__media {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-gallery-item__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02);
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.home-gallery-item:hover .home-gallery-item__media img {
  transform: scale(1.02);
}

.home-gallery-item figcaption {
  margin-block-start: 0.75rem;
  text-align: center;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.5;
}

.home-gallery__action {
  display: flex;
  justify-content: center;
  margin-block-start: 2rem;
}

@media (min-width: 40rem) {
  .home-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .home-gallery-item__media img {
    height: 250px;
  }
}

.home-faq__container {
  max-width: 720px;
  margin-inline: auto;
}

.home-faq__heading {
  text-align: center;
  margin-block-end: 2.5rem;
}

.home-faq__heading h2 {
  margin-block-end: 0.75rem;
}

.home-faq__heading p {
  color: #475569;
  margin: 0;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-faq-item {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.home-faq-item__trigger {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: start;
  font-weight: 600;
  color: #1E293B;
  transition: background-color 200ms ease-in-out;
}

.home-faq-item__trigger:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.home-faq-item__icon {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  display: inline-block;
}

.home-faq-item__icon::before,
.home-faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 2px;
  background-color: #0891B2;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease-in-out;
}

.home-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item__trigger[aria-expanded="true"] .home-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq-item__answer {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
}

.home-faq-item__answer p {
  margin: 0;
}

.home-enquiry__container {
  display: flex;
  justify-content: center;
}

.home-enquiry__panel {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-enquiry__heading {
  text-align: center;
}

.home-enquiry__heading h2 {
  margin-block-end: 0.75rem;
}

.home-enquiry__heading p {
  color: #475569;
  margin: 0;
}

.home-enquiry__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-enquiry__field {
  min-width: 0;
}

.home-enquiry__optional {
  font-weight: 400;
  color: #475569;
}

.home-enquiry__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.home-enquiry__submit {
  width: 100%;
}

.home-enquiry__success {
  margin: 0;
  color: #0891B2;
  font-weight: 600;
}

.home-enquiry__error {
  margin: 0;
  color: #B91C1C;
  font-weight: 600;
}

@media (min-width: 48rem) {
  .home-enquiry__panel {
    padding: 2.5rem;
  }

  .home-enquiry__submit {
    width: auto;
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__panel,
  .home-event-card,
  .home-personal-card,
  .home-process-step,
  .home-corporate__media img,
  .home-personal-card__media img,
  .home-gallery-item__media img {
    transition: none;
  }
}
