:root {
  --phv-surface: #f7f5f0;
  --phv-surface-alt: #fff8f5;
  --phv-text: #1f1b18;
  --phv-muted: #5b4137;
  --phv-accent: #9e3d00;
  --phv-footer: #e1d8d3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--phv-surface);
  color: var(--phv-text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.perfecthive-body .elementor {
  margin: 0;
}

.phv-header-shell {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(31, 27, 24, 0.12);
  background: rgba(247, 245, 240, 0.84);
  backdrop-filter: blur(14px);
}

.phv-header {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.phv-brand {
  font-family: "Epilogue", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-size: 1.35rem;
}

.phv-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.phv-nav a {
  font-family: "Epilogue", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-decoration: none;
  opacity: 0.82;
}

.phv-nav a:hover,
.phv-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--phv-accent);
}

.phv-cta {
  text-decoration: none;
  font-family: "Epilogue", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #c64f00 0%, #9e3d00 100%);
  border-radius: 0.4rem;
  padding: 0.65rem 0.9rem;
}

.phv-mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--phv-text);
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.1rem 0.3rem;
}

.phv-mobile-menu {
  display: none;
}

.phv-mobile-menu.is-open {
  display: block;
  border-top: 1px solid rgba(31, 27, 24, 0.12);
  padding: 0.75rem 1.5rem 1.1rem;
  background: rgba(247, 245, 240, 0.96);
}

.phv-mobile-menu a {
  display: block;
  text-decoration: none;
  font-family: "Epilogue", sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  padding: 0.45rem 0;
}

.phv-footer-shell {
  background: var(--phv-footer);
}

.phv-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr minmax(240px, 1.2fr);
  gap: 1.8rem;
}

.phv-footer h4 {
  margin: 0 0 0.7rem;
  font-family: "Epilogue", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phv-footer p,
.phv-footer a {
  margin: 0;
  color: var(--phv-muted);
  text-decoration: none;
  line-height: 1.7;
}

.phv-footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.phv-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Epilogue", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.phv-footer-social .material-symbols-outlined {
  font-size: 1rem;
}

.phv-footer-signup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phv-footer-signup h5 {
  margin: 0;
  color: var(--phv-accent);
  font-family: "Epilogue", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phv-footer-signup-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phv-footer-signup input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(91, 65, 55, 0.28);
  border-radius: 0.5rem;
  background: var(--phv-surface);
  color: var(--phv-text);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

.phv-footer-signup input::placeholder {
  color: rgba(31, 27, 24, 0.38);
}

.phv-footer-signup button {
  border: 0;
  border-radius: 0.5rem;
  background: var(--phv-accent);
  color: #fff;
  padding: 0.75rem;
  cursor: pointer;
  box-shadow: 0 0.75rem 1.6rem rgba(158, 61, 0, 0.16);
}

.phv-footer-signup .phv-form-status {
  grid-column: 1 / -1;
}

.phv-footer small {
  grid-column: 1 / -1;
  display: block;
  opacity: 0.7;
  padding-top: 1rem;
}

.phv-page {
  width: 100%;
  overflow-x: clip;
}

.elementor-widget-html.phv-beer-style-runtime {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.phv-page-event-detail {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.phv-ed-hero-title {
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.phv-page img {
  max-width: 100%;
}

.phv-page img.absolute.inset-0.w-full.h-full.object-cover {
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  width: 100% !important;
}

.phv-home-hero-media {
  height: 100vh;
  inset: 0 0 auto;
  overflow: hidden;
  pointer-events: none;
  position: absolute !important;
  width: 100% !important;
  z-index: 0;
}

.phv-home-hero-media + .elementor-widget-html {
  position: relative;
  z-index: 1;
}

.phv-home-hero-media .elementor-widget-container,
.phv-home-hero-media picture,
.phv-home-hero-media img {
  height: 100% !important;
  width: 100% !important;
}

.phv-home-hero-media img {
  display: block;
  filter: brightness(0.85) contrast(1.05);
  max-width: none !important;
  object-fit: cover;
  object-position: center;
}

.phv-native.e-con,
.phv-native .e-con {
  --container-default-padding-block-start: 0;
  --container-default-padding-inline-end: 0;
  --container-default-padding-block-end: 0;
  --container-default-padding-inline-start: 0;
  --padding-block-start: 0;
  --padding-inline-end: 0;
  --padding-block-end: 0;
  --padding-inline-start: 0;
  --gap: 0;
}

.phv-native .hidden {
  display: none !important;
}

.phv-native .block {
  display: block !important;
}

.phv-native .inline-block {
  display: inline-block !important;
}

.phv-native .inline-flex {
  display: inline-flex !important;
  flex-direction: row !important;
}

.phv-native.e-con.inline-flex,
.phv-native .e-con.inline-flex {
  flex: 0 0 auto !important;
  width: auto !important;
}

.phv-native .flex {
  display: flex !important;
  flex-direction: row !important;
}

.phv-native .grid {
  display: grid !important;
}

.phv-native .flex-row {
  flex-direction: row !important;
}

.phv-native .flex-col {
  flex-direction: column !important;
}

@media (min-width: 640px) {
  .phv-native .sm\:flex-row {
    flex-direction: row !important;
  }
}

.phv-native .leading-\[0\.85\] {
  line-height: 0.85 !important;
}

.phv-native .leading-\[0\.9\] {
  line-height: 0.9 !important;
}

.phv-native .leading-none {
  line-height: 1 !important;
}

.phv-native .tracking-tighter {
  letter-spacing: -0.05em !important;
}

@media (min-width: 768px) {
  .phv-native .md\:flex-row {
    flex-direction: row !important;
  }

  .phv-native .md\:flex-col {
    flex-direction: column !important;
  }

  .phv-native .md\:items-end {
    align-items: flex-end !important;
  }

  .phv-native .md\:flex-row.justify-between > .elementor-element:not(.w-full):not([class*="w-["]) {
    flex: 0 0 auto !important;
    width: auto !important;
  }

  .phv-native .md\:flex-row.justify-between > .elementor-element:last-child {
    margin-left: auto !important;
  }
}

.phv-native .items-start {
  align-items: flex-start !important;
}

.phv-native .items-center {
  align-items: center !important;
}

.phv-native .items-end {
  align-items: flex-end !important;
}

.phv-native .justify-start {
  justify-content: flex-start !important;
}

.phv-native .justify-center {
  justify-content: center !important;
}

.phv-native .justify-end {
  justify-content: flex-end !important;
}

.phv-native .justify-between {
  justify-content: space-between !important;
}

@keyframes phv-ig-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.phv-instagram-live {
  width: 100%;
}

.phv-ig-strip {
  overflow: hidden;
  width: 100%;
}

.phv-ig-marquee {
  animation: phv-ig-scroll 54s linear infinite;
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.phv-ig-strip:hover .phv-ig-marquee {
  animation-play-state: paused;
}

.phv-ig-card {
  aspect-ratio: 1 / 1;
  background: #efeee7;
  border-radius: 0.5rem;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  width: min(72vw, 360px);
}

.phv-ig-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.phv-ig-overlay {
  align-items: center;
  background: rgba(27, 28, 21, 0.36);
  color: #fff;
  display: flex;
  font-family: "Epilogue", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 0.5rem;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.12em;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  transition: opacity 200ms ease;
}

.phv-ig-card:hover .phv-ig-overlay,
.phv-ig-card:focus-visible .phv-ig-overlay {
  opacity: 1;
}

.phv-ig-empty {
  margin: 0 auto;
  max-width: 48rem;
  padding: 4rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .phv-ig-card {
    width: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phv-ig-marquee {
    animation: none;
    overflow-x: auto;
  }
}

.phv-native .phv-ig-marquee {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.phv-native .phv-ig-card {
  flex: 0 0 auto !important;
  width: min(72vw, 360px) !important;
}

@media (min-width: 768px) {
  .phv-native .phv-ig-card {
    width: 360px !important;
  }
}

.phv-native .flex:not(.flex-col) > .elementor-element:not(.w-full):not([class*="w-["]) {
  width: auto;
}

.phv-native .flex:not(.flex-col) > .elementor-widget-heading {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

.phv-page-home .elementor-widget-heading.text-6xl:not([class*="md:text-9xl"]) .elementor-heading-title {
  white-space: nowrap !important;
}

.phv-native .phv-header,
.phv-native .phv-nav,
.phv-native .phv-footer-social,
.phv-native .phv-footer-signup-row {
  flex-direction: row !important;
}

.phv-native .phv-header {
  align-items: center !important;
  justify-content: space-between !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1440px !important;
  padding: 1rem 1.5rem !important;
  width: 100% !important;
}

.phv-native .phv-header > .elementor-element,
.phv-native .phv-nav > .elementor-element,
.phv-native .phv-cta-desktop,
.phv-native .phv-cta {
  flex: 0 0 auto !important;
  width: auto !important;
}

.phv-native .phv-nav {
  align-items: center !important;
  gap: 1.2rem !important;
}

.phv-native .phv-brand,
.phv-native .phv-nav a,
.phv-native .phv-cta {
  min-height: 0 !important;
  text-decoration: none !important;
}

.phv-native .phv-brand .elementor-widget-text-editor,
.phv-native .phv-nav a .elementor-widget-text-editor,
.phv-native .phv-cta .elementor-widget-text-editor {
  width: auto !important;
}

.phv-native .phv-cta {
  align-items: center !important;
  background: linear-gradient(180deg, #c64f00 0%, #9e3d00 100%) !important;
  color: #fff !important;
  display: inline-flex !important;
  line-height: 1 !important;
  padding: 0.65rem 0.9rem !important;
}

@media (min-width: 901px) {
  .phv-native .phv-header > .elementor-widget-text-editor {
    display: none !important;
  }
}

.phv-native .phv-footer {
  display: grid !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1440px !important;
  padding: 3.4rem 1.5rem 2rem !important;
  width: 100% !important;
}

.phv-native .phv-footer > .e-con {
  --gap: 0;
  align-self: start !important;
  gap: 0 !important;
}

.phv-native .phv-footer .elementor-widget-heading {
  margin-bottom: 0.7rem !important;
}

.phv-native .phv-footer .phv-footer-social {
  gap: 0.85rem !important;
  margin-top: 0.75rem !important;
}

.phv-native .phv-footer > .elementor-widget-text-editor:last-child {
  grid-column: 1 / -1;
  opacity: 0.7;
  padding-top: 1rem;
}

.phv-native .bg-primary {
  background-color: #782c00 !important;
}

.phv-native .bg-primary-container {
  background-color: #9e3d00 !important;
}

.phv-native .bg-surface {
  background-color: #fff8f5 !important;
}

.phv-native .bg-surface-container,
.phv-native .bg-surface-container-low {
  background-color: #f3ecea !important;
}

.phv-native .text-primary,
.phv-native .text-primary-container {
  color: #9e3d00 !important;
}

.phv-native .text-on-primary,
.phv-native .text-on-primary-container {
  color: #ffffff !important;
}

.phv-native .text-on-surface {
  color: #1d1b1a !important;
}

.phv-native .text-on-surface-variant {
  color: #574239 !important;
}

.phv-native .text-tertiary {
  color: #4a4a4a !important;
}

.phv-native .elementor-widget-phv-booking-form button,
.phv-native .elementor-widget-phv-contact-form button,
.phv-native .elementor-widget-phv-newsletter-form button {
  background: linear-gradient(90deg, #782c00 0%, #9e3d00 100%) !important;
  color: #fff !important;
}

.phv-native .elementor-widget-phv-newsletter-form {
  align-self: start !important;
  display: block !important;
  width: 100% !important;
}

.phv-native .elementor-widget-phv-newsletter-form .elementor-widget-container {
  width: 100% !important;
}

.phv-native .elementor-widget-phv-newsletter-form form {
  align-items: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  max-width: 100% !important;
  width: 100% !important;
}

.phv-native .elementor-widget-phv-newsletter-form .phv-footer-signup-row {
  align-items: stretch !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem !important;
  width: 100% !important;
}

.phv-native .elementor-widget-phv-newsletter-form input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  min-height: 2.75rem !important;
  padding: 0.75rem 1rem !important;
}

.phv-native .elementor-widget-phv-newsletter-form button {
  align-items: center !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  justify-content: center !important;
  min-height: 2.75rem !important;
  min-width: 2.75rem !important;
  padding: 0.75rem !important;
  white-space: nowrap !important;
  width: 2.75rem !important;
}

@media (max-width: 767px) {
  .phv-native .elementor-widget-phv-newsletter-form .phv-footer-signup-row {
    flex-direction: row !important;
  }
}

@media (max-width: 900px) {
  .phv-native .phv-nav,
  .phv-native .phv-cta-desktop {
    display: none !important;
  }

  .phv-native .phv-mobile-toggle {
    align-items: center !important;
    display: inline-flex !important;
    justify-content: center !important;
    width: auto !important;
  }

  .phv-native .phv-header > .elementor-widget-text-editor,
  .phv-native .phv-header > .elementor-widget-text-editor .elementor-widget-container {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
  }
}

.phv-native .relative {
  position: relative !important;
}

.phv-native .absolute {
  position: absolute !important;
}

.phv-native .fixed {
  position: fixed !important;
}

.phv-native .sticky {
  position: sticky !important;
}

.phv-native .inset-0 {
  inset: 0 !important;
}

.phv-header-shell .phv-mobile-menu.e-con:not(.is-open) {
  display: none !important;
}

.phv-native .elementor-widget:not(:last-child) {
  margin-block-end: 0;
}

.phv-native .elementor-widget-heading .elementor-heading-title {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  text-transform: inherit;
}

.phv-native .elementor-widget-text-editor {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.phv-native .elementor-widget-text-editor p {
  margin-block: 0;
}

.phv-native .elementor-widget-image,
.phv-native .elementor-widget-image .elementor-widget-container {
  min-width: 0;
}

.phv-native .elementor-widget-image img {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 768px) {
  .phv-native .items-start.md\:items-end {
    align-items: flex-end !important;
  }
}

.phv-native .elementor-widget-image.aspect-square img,
.phv-native .elementor-widget-image[class*="aspect-"] img,
.phv-native .elementor-widget-image.h-full img,
.phv-native .elementor-widget-image[class*="h-["] img {
  height: 100%;
}

.phv-native .elementor-widget-image.w-full,
.phv-native .elementor-widget-image.w-full .elementor-widget-container,
.phv-native .elementor-widget-image.w-full img {
  width: 100%;
}

.phv-native .elementor-widget-image.h-full,
.phv-native .elementor-widget-image.h-full .elementor-widget-container {
  height: 100%;
}

.phv-native .elementor-widget-image.absolute {
  position: absolute;
}

.phv-native .elementor-widget-image.inset-0 {
  inset: 0;
}

.phv-native .elementor-widget-phv-booking-form,
.phv-native .elementor-widget-phv-contact-form,
.phv-native .elementor-widget-phv-newsletter-form {
  width: 100%;
}

.phv-native .font-headline,
.phv-native .font-headline .elementor-heading-title {
  font-family: "Epilogue", sans-serif !important;
}

.phv-native .font-body,
.phv-native .font-label {
  font-family: "Manrope", sans-serif !important;
}

.phv-native .font-black {
  font-weight: 900 !important;
}

.phv-native .font-extrabold {
  font-weight: 800 !important;
}

.phv-native .font-bold {
  font-weight: 700 !important;
}

.phv-native .font-medium {
  font-weight: 500 !important;
}

.phv-native .text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.phv-native .text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.phv-native .text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.phv-native .text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

.phv-native .text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.phv-native .text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.phv-native .text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

.phv-native .text-5xl {
  font-size: 3rem !important;
  line-height: 1 !important;
}

.phv-native .text-6xl {
  font-size: 3.75rem !important;
  line-height: 1 !important;
}

@media (min-width: 768px) {
  .phv-native .md\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .phv-native .md\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .phv-native .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .phv-native .md\:text-9xl {
    font-size: 8rem !important;
    line-height: 1 !important;
  }
}

.phv-native .mb-2 {
  margin-bottom: 0.5rem !important;
}

.phv-native .mb-4 {
  margin-bottom: 1rem !important;
}

.phv-native .mb-6 {
  margin-bottom: 1.5rem !important;
}

.phv-native .mb-8 {
  margin-bottom: 2rem !important;
}

.phv-native .mt-6 {
  margin-top: 1.5rem !important;
}

.phv-native .mt-8 {
  margin-top: 2rem !important;
}

.phv-native .mt-12 {
  margin-top: 3rem !important;
}

@media (min-width: 768px) {
  .phv-native .md\:mt-0 {
    margin-top: 0 !important;
  }

  .phv-native .md\:mb-0 {
    margin-bottom: 0 !important;
  }
}

.phv-native .text-white,
.phv-native .text-white .elementor-heading-title,
.phv-native .text-white .elementor-widget-container,
.phv-native .text-white * {
  color: #fff !important;
}

.phv-native .text-white\/90,
.phv-native .text-white\/90 .elementor-widget-container {
  color: rgba(255, 255, 255, 0.9) !important;
}

.phv-native .text-white\/85,
.phv-native .text-white\/85 .elementor-widget-container {
  color: rgba(255, 255, 255, 0.85) !important;
}

.phv-native .text-white\/80,
.phv-native .text-white\/80 .elementor-widget-container {
  color: rgba(255, 255, 255, 0.8) !important;
}

.phv-native .text-white\/75,
.phv-native .text-white\/75 .elementor-widget-container {
  color: rgba(255, 255, 255, 0.75) !important;
}

.phv-native .text-white\/65,
.phv-native .text-white\/65 .elementor-widget-container {
  color: rgba(255, 255, 255, 0.65) !important;
}

.phv-native .bg-white {
  background-color: #fff !important;
}

.phv-native .bg-blue-600 {
  background-color: #2563eb !important;
}

.phv-native .border-white {
  border-color: #fff !important;
}

.phv-native .border {
  border-style: solid !important;
  border-width: 1px !important;
}

.phv-native .border-t {
  border-top-style: solid !important;
  border-top-width: 1px !important;
}

.phv-native .border-on-surface {
  border-color: #1d1b1a !important;
}

.phv-native .border-outline-variant {
  border-color: #ded6d2 !important;
}

.phv-native .w-full {
  width: 100% !important;
}

.phv-native .h-full {
  height: 100% !important;
}

.phv-native .w-14 {
  width: 3.5rem !important;
}

.phv-native .h-14 {
  height: 3.5rem !important;
}

.phv-native .w-48 {
  width: 12rem !important;
}

.phv-native .flex-grow {
  flex: 1 1 0% !important;
}

@media (min-width: 768px) {
  .phv-native .md\:w-1\/2 {
    width: 50% !important;
  }

  .phv-native .md\:w-48 {
    width: 12rem !important;
  }
}

.phv-page-about.phv-native.phv-inline-8661aaeec7 {
  display: block !important;
  margin: 0 auto !important;
  max-width: 1080px !important;
  padding: 8rem 1.5rem 5rem !important;
  width: 100% !important;
}

.phv-page-about .phv-inline-7eaa989a6b,
.phv-page-about .phv-inline-7eaa989a6b .elementor-widget-container {
  color: #9e3d00 !important;
  font-family: "Epilogue", sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.5 !important;
  margin: 0 0 1rem !important;
  text-transform: uppercase !important;
}

.phv-page-about .phv-inline-f0241671ad,
.phv-page-about .phv-inline-f0241671ad .elementor-heading-title {
  font-family: "Epilogue", sans-serif !important;
  font-size: clamp(2.3rem, 6vw, 5.2rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em !important;
  line-height: 0.9 !important;
  margin: 0 0 1.2rem !important;
}

.phv-page-about .phv-inline-1430e47efb,
.phv-page-about .phv-inline-1430e47efb .elementor-widget-container {
  color: #574239 !important;
  font-size: 1.14rem !important;
  line-height: 1.7 !important;
  margin: 0 0 3rem !important;
  max-width: 780px !important;
}

.phv-page-about .phv-inline-665c5e1ccb {
  display: grid !important;
  gap: 1rem !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

.phv-page-about .phv-inline-76082c04f6,
.phv-page-about .phv-inline-ea36a18e4c,
.phv-page-about .phv-inline-2cdebad1e5 {
  background: #fbf2ed !important;
  border-radius: 0.4rem !important;
  display: block !important;
  padding: 1.4rem !important;
}

.phv-page-about .phv-inline-debec044db,
.phv-page-about .phv-inline-59b6233902,
.phv-page-about .phv-inline-c8426a8d06,
.phv-page-about .phv-inline-debec044db .elementor-heading-title,
.phv-page-about .phv-inline-59b6233902 .elementor-heading-title,
.phv-page-about .phv-inline-c8426a8d06 .elementor-heading-title {
  font-family: "Epilogue", sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin: 0 0 0.5rem !important;
}

.phv-page-about .phv-inline-5e4d86cb05,
.phv-page-about .phv-inline-c994d27fbd,
.phv-page-about .phv-inline-42260ce08e,
.phv-page-about .phv-inline-5e4d86cb05 .elementor-widget-container,
.phv-page-about .phv-inline-c994d27fbd .elementor-widget-container,
.phv-page-about .phv-inline-42260ce08e .elementor-widget-container {
  color: #574239 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.phv-page-events .font-headline,
.phv-page-events .font-headline .elementor-heading-title,
.phv-page-events .font-headline .elementor-widget-container {
  font-family: "Space Grotesk", sans-serif !important;
}

.phv-page-events main.e-con {
  display: block !important;
  gap: 0 !important;
}

.phv-page-events .e-con:not([class*="gap-"]) {
  gap: 0 !important;
}

.phv-page-events .poster-title,
.phv-page-events .poster-title .elementor-heading-title {
  font-family: "Space Grotesk", sans-serif !important;
  letter-spacing: -0.05em !important;
  line-height: 0.8 !important;
}

.phv-page-events .md\:flex-row > .flex-grow {
  min-width: 0 !important;
}

@media (min-width: 768px) {
  .phv-page-events .md\:flex-row > .md\:w-48 {
    flex: 0 0 12rem !important;
  }

  .phv-page-events .border-t.md\:flex-row > .flex-grow {
    flex: 1 1 auto !important;
    width: auto !important;
  }

  .phv-page-events .border-t.md\:flex-row > .mt-8 {
    flex: 0 0 auto !important;
    width: auto !important;
  }
}

@media (max-width: 767px) {
  .phv-page-events .flex.flex-wrap.gap-4 {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .phv-page-events .border-t.md\:flex-row > .md\:w-48,
  .phv-page-events .border-t.md\:flex-row > .flex-grow,
  .phv-page-events .border-t.md\:flex-row > .mt-8 {
    flex: 0 1 auto !important;
    width: 100% !important;
  }
}

.phv-page main,
.phv-page header,
.phv-page section {
  width: 100%;
}

.phv-menu-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.phv-events-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.phv-gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

@media (max-width: 1024px) {
  .phv-nav {
    gap: 0.85rem;
  }

  .phv-nav a {
    font-size: 0.74rem;
  }
}

@media (max-width: 900px) {
  .phv-nav,
  .phv-cta-desktop {
    display: none;
  }

  .phv-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .phv-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .phv-header {
    padding: 0.8rem 1rem;
  }

  .phv-brand {
    font-size: 1.12rem;
  }

  .phv-page [class*="text-9xl"] {
    font-size: 3.2rem !important;
    line-height: 0.95 !important;
  }

  .phv-page [class*="text-7xl"] {
    font-size: 2.55rem !important;
    line-height: 0.96 !important;
  }

  .phv-page [class*="text-6xl"] {
    font-size: 2.2rem !important;
  }

  .phv-page [class*="px-8"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .phv-page [class*="pt-32"] {
    padding-top: 6rem !important;
  }

  .phv-page [class*="py-32"] {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .phv-page [class*="py-24"] {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .phv-page-home > header,
  .phv-page-home > header.h-screen {
    height: 430px !important;
    min-height: 430px !important;
  }

  .phv-home-hero-media {
    height: 430px;
  }

  .phv-page-home > header .bg-gradient-to-t.from-surface {
    display: none !important;
  }

  .phv-page-home > header .relative.z-10 {
    padding-top: 2rem;
  }

  .phv-page-home > header > .absolute.bottom-\[-10\%\] {
    display: none !important;
  }

  .phv-page-beer-drinks main > section:first-child,
  .phv-page-beer-drinks main > section[class*="h-"]:first-child {
    height: 360px !important;
    min-height: 360px !important;
  }

  .phv-page-beer-drinks main > section:first-child > div.absolute.inset-0 {
    background-color: rgba(31, 27, 24, 0.58) !important;
  }

  .phv-page-contact main {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .phv-page-contact .flex.items-start.gap-4,
  .phv-page-contact .flex.items-start.gap-4 > div {
    min-width: 0;
  }

  .phv-page-contact .flex.items-start.gap-4 p.text-2xl {
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 1rem !important;
    line-height: 1.35 !important;
  }
}

.tribe-events,
.tribe-common {
  font-family: "Manrope", sans-serif;
  color: var(--phv-text);
}

.tribe-events a,
.tribe-common a {
  color: var(--phv-accent);
}

.tribe-events .tribe-events-c-subscribe-dropdown__button,
.tribe-events .tribe-common-c-btn,
.tribe-common .tribe-common-c-btn {
  background: var(--phv-accent);
  border-color: var(--phv-accent);
  color: #fff;
  border-radius: 0.35rem;
  font-family: "Epilogue", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tribe-events .tribe-events-calendar-list__event,
.tribe-events .tribe-events-single-event-title {
  border-color: rgba(31, 27, 24, 0.12);
}

.single-tribe_events .tribe-events-content,
.single-tribe_events .tribe-events-event-meta {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.fdm-menu,
.fdm-menu * {
  font-family: "Manrope", sans-serif;
}

.fdm-menu-title,
.fdm-section-header h3,
.fdm-item-title {
  font-family: "Epilogue", sans-serif !important;
  letter-spacing: -0.02em;
}

.fdm-menu .fdm-item-price,
.fdm-menu .fdm-item-price-discount {
  color: var(--phv-accent) !important;
  font-weight: 800;
}

.fdm-menu .fdm-section {
  border-bottom: 0;
}

.phv-gallery-wall .gallery {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 !important;
}

.phv-gallery-wall .gallery-item {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.phv-gallery-wall .gallery-icon,
.phv-gallery-wall .gallery-icon a {
  display: block;
  height: 100%;
}

.phv-gallery-wall .gallery-icon img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 0 !important;
  transition: filter 180ms ease, transform 180ms ease;
}

.phv-gallery-wall .gallery-icon a:hover img,
.phv-gallery-wall .gallery-icon a:focus-visible img {
  filter: brightness(0.88);
  transform: scale(0.985);
}

.phv-gallery-wall .gallery-caption {
  display: none;
}

.phv-gallery-follow {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.phv-gallery-follow > .elementor-element,
.phv-gallery-follow .elementor-widget-container {
  text-align: center;
}

.phv-gallery-follow-link {
  display: inline-flex !important;
  width: auto !important;
  align-self: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.phv-gallery-follow-link .elementor-widget-text-editor,
.phv-gallery-follow-link .elementor-widget-container {
  width: auto !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .phv-gallery-wall .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .phv-gallery-wall .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .phv-page-event-detail [class*="grid-cols-12"] {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .phv-page-event-detail [class*="md:grid-cols-2"],
  .phv-page-event-detail [class*="grid-cols-2"] {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .phv-page-event-detail [class*="h-[800px]"] {
    height: auto !important;
  }

}
