@charset "utf-8";

:root {
  --ink: #211d18;
  --charcoal: #171615;
  --charcoal-soft: #211d19;
  --cream: #f4ead2;
  --gold: #c89d43;
  --gold-bright: #e2ad43;
  --gold-dark: #8a611c;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 96px;
  background: #0d0c0b;
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background-color: #e6d1a4;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(92, 61, 22, 0.07)),
    url("../images/white_oak.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 4px solid var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 7px 18px rgba(0, 0, 0, 0.30);
}

.site-header-inner {
  width: min(1480px, 100%);
  min-height: 92px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-brand {
  flex: 0 0 auto;
}

.site-brand img {
  display: block;
  width: 138px;
  max-height: 72px;
  object-fit: contain;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  flex: 1 1 auto;
}

.primary-menu a {
  position: relative;
  padding: 0;
  color: #2b2116;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 3px;
  background: var(--gold-dark);
  transition: left 180ms ease, right 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after,
.primary-menu a.is-active::after {
  right: 0;
  left: 0;
}

.header-social,
.footer-social {
  display: flex;
  gap: 10px;
}

.header-social a,
.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
}

.header-social img,
.footer-social img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--gold-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.10);
  color: #2b2116;
  padding: 8px 10px;
  font: inherit;
  font-weight: 700;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-icon {
  position: relative;
  margin-top: 5px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.contact-hero {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.93), rgba(13, 12, 11, 0.38)),
    url("../images/flight1920sip.jpg") center / cover no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 40%, rgba(200, 157, 67, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.70), transparent 55%);
}

.contact-hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  padding: 78px 0;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 8vw, 7rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.55);
}

.contact-hero-content > p:not(.hero-kicker) {
  max-width: 670px;
  margin: 24px 0 30px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.sip-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.sip-btn:hover,
.sip-btn:focus-visible {
  transform: translateY(-2px);
}

.sip-btn-gold {
  background: var(--gold);
  color: #21180b;
}

.sip-btn-outline {
  background: transparent;
  color: var(--white);
}

.sip-btn-outline:hover,
.sip-btn-outline:focus-visible {
  background: var(--gold);
  color: #21180b;
}

.contact-options,
.inquiry-section {
  padding: 78px max(24px, calc((100% - 1280px) / 2));
}

.contact-options {
  background: #0d0c0b;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.inquiry-heading h2,
.contact-cta h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.section-heading p:last-child,
.inquiry-heading p:last-child {
  color: #d7cec0;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 30px 26px;
  background: var(--charcoal-soft);
  border: 1px solid rgba(200, 157, 67, 0.55);
  border-radius: 9px;
}

.contact-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #18120a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-card h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.contact-card p {
  margin: 0 0 18px;
  color: #eee5d7;
}

.card-link,
.detail-link {
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link:hover,
.detail-link:hover {
  text-decoration: underline;
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  background: #151310;
  border-top: 1px solid rgba(200, 157, 67, 0.30);
  border-bottom: 1px solid rgba(200, 157, 67, 0.30);
}

.inquiry-heading {
  align-self: start;
}

.inquiry-list {
  display: grid;
  gap: 14px;
}

.inquiry-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 24px 26px;
  background: var(--charcoal-soft);
  border: 1px solid rgba(200, 157, 67, 0.42);
  border-radius: 8px;
}

.inquiry-number {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.inquiry-list h3 {
  margin: 0 0 5px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.inquiry-list p {
  margin: 0;
  color: #d9d0c2;
}

.contact-cta {
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background:
    linear-gradient(90deg, rgba(19, 17, 15, 0.96), rgba(19, 17, 15, 0.76)),
    url("../images/flight1920sip.jpg") center / cover no-repeat;
}

.contact-cta > div:first-child {
  max-width: 730px;
}

.contact-cta p:last-child {
  margin-bottom: 0;
  color: #e8e2da;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.visit-details {
  width: min(1280px, calc(100% - 40px));
  margin: 62px auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: #211d19;
  border: 1px solid rgba(200, 157, 67, 0.58);
  border-radius: 10px;
}

.visit-details article {
  min-height: 275px;
  padding: 34px 32px;
  border-right: 1px solid rgba(200, 157, 67, 0.34);
}

.visit-details article:last-child {
  border-right: 0;
}

.detail-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  place-items: center;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  color: var(--gold-bright);
}

.visit-details h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.visit-details p,
.hours-list {
  color: #f1e8da;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0;
}

.hours-list dt { font-weight: 400; }
.hours-list dd { margin: 0; text-align: right; }

.sip-footer {
  min-height: 132px;
  padding: 20px max(24px, calc((100% - 1580px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: #14100e;
  color: var(--white);
  border-top: 1px solid rgba(200, 157, 67, 0.28);
}

.footer-brand img {
  display: block;
  width: 76px;
}

.footer-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.footer-message strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-message span {
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  body { padding-top: 84px; }
  .site-header-inner { min-height: 80px; }
  .site-brand img { width: 118px; }
  .primary-menu { gap: 13px; }
  .primary-menu a { font-size: 0.92rem; }

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

  .inquiry-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  body { padding-top: 76px; }

  .site-header-inner {
    min-height: 72px;
    padding: 8px 16px;
  }

  .site-brand img { width: 104px; }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-toggle-label { margin-right: 8px; }

  .primary-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 16px 22px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #e6d1a4;
    background-image:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(92, 61, 22, 0.07)),
      url("../images/white_oak.png");
    background-position: center;
    background-size: cover;
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.28);
  }

  .primary-menu.is-open { display: flex; }

  .primary-menu a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(90, 65, 28, 0.22);
  }

  .primary-menu a::after { display: none; }
  .header-social { display: none; }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .visit-details article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 157, 67, 0.34);
  }

  .visit-details article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 580px) {
  .contact-hero { min-height: 430px; }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-options,
  .inquiry-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-cta-actions .sip-btn {
    width: 100%;
  }

  .visit-details {
    width: calc(100% - 28px);
    margin: 42px auto;
  }

  .visit-details article {
    padding: 28px 24px;
  }

  .sip-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* Standard footer social buttons — matches Default and Beer pages */
.sip-footer .footer-social {
  display: flex;
  gap: 11px;
}

.sip-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #d5aa52;
  border: 2px solid #17120d;
  border-radius: 13px;
  outline: 0;
  box-shadow: none;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.sip-footer .footer-social a:hover,
.sip-footer .footer-social a:focus-visible {
  transform: translateY(-2px);
  background-color: rgba(213, 170, 82, 0.82);
}

.sip-footer .footer-social img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  border: 0;
  outline: 0;
  box-shadow: none;
}



/* Beer navigation dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2b2116;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-toggle span {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.75em;
  transition: transform 180ms ease;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 3px;
  background: #8a611c;
  transition: left 180ms ease, right 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-active .nav-dropdown-toggle::after {
  right: 0;
  left: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 1100;
  min-width: 205px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  background: #171411;
  border: 1px solid rgba(200, 157, 67, 0.72);
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #f4ead2 !important;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.is-active {
  background: rgba(200, 157, 67, 0.20);
  color: #e2ad43 !important;
}

@media (max-width: 820px) {
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(90, 65, 28, 0.22);
    font-size: 0.92rem;
    text-align: left;
  }

  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 7px 16px;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: rgba(81, 55, 22, 0.08);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.is-active .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px !important;
    color: #2b2116 !important;
    border-bottom: 1px solid rgba(90, 65, 28, 0.13) !important;
    font-family: Georgia, "Times New Roman", serif;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible,
  .nav-dropdown-menu a.is-active {
    background: rgba(138, 97, 28, 0.12);
    color: #6e4914 !important;
  }
}
