:root {
  --primary: #f7b90e;
  --primary-hover: #dfa50c;
  --primary-focus: #b8840a;
  --accent-orange: #f47c20;
  --background-color: #fef0e0;
  --surface: #ffffff;
  --text-color: #111827;
  --muted-text: #374151;
  --link-color: #0f172a;
  --border-color: #ebe4c9;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

html,
body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  font-optical-sizing: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  color: var(--text-color);
  font-optical-sizing: auto;
  text-transform: uppercase;
  margin-top: 0;
}

a {
  font-family: 'Sofia Sans Semi Condensed', sans-serif;
  font-optical-sizing: auto;
}

.uppercase {
  text-transform: uppercase;
}

p {
  font-family: 'Sofia Sans Semi Condensed', sans-serif;
  font-optical-sizing: auto;
}

nav.container-fluid {
  padding-inline: 1rem;
  max-height: 96px;
  overflow: hidden;
}

nav a {
  text-decoration: none;
}

ul.nav-links {
  align-self: flex-end;
  margin-bottom: -0.3rem;
}

nav ul:last-child a {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-color);
}

nav ul:last-child a:hover,
nav ul:last-child a.active {
  color: var(--accent-orange);
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
}

.brand a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.brand-logo {
  height: 108px;
  width: auto;
  transform: translateY(-4px);
  margin-left: -1rem;
}

.brand-text {
  height: 108px;
  width: auto;
  align-self: flex-end;
  margin-bottom: -0.5rem;
}

.accent-bar {
  background-color: var(--primary);
  height: 48px;
  width: 100%;
}

a[role='button'],
button,
input[type='submit'] {
  background-color: var(--primary);
  color: #1a1a1a;
  border: 1px solid var(--primary-focus);
  text-transform: uppercase;
}

a[role='button']:hover,
button:hover,
input[type='submit']:hover {
  background-color: var(--primary-hover);
}

p,
li {
  color: var(--muted-text);
}

a:not([role='button']) {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 0.75rem;
}

.about-flex {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-flex {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

.about-flex figure {
  margin: 0;
  text-align: center;
}

.about-flex img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  background: #fff;
}

.about-flex figcaption {
  margin-top: 0.75rem;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.partner-logos img {
  height: 56px;
  width: auto;
  filter: grayscale(40%);
  transition: filter 0.2s ease;
}

.partner-logos img:hover {
  filter: none;
}

footer {
  background-color: var(--primary);
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

footer p {
  margin: 0;
  color: var(--text-color);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

footer .social a {
  color: var(--text-color);
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hello-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}

.hamburger-item {
  display: none;
  align-items: center;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .hamburger-item {
    display: flex;
  }

  nav.container-fluid {
    position: relative;
    max-height: none;
    overflow: visible;
    align-items: flex-end;
    padding-bottom: 0;
  }

  nav.container-fluid > ul:first-child {
    flex: 1;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  ul.nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--background-color);
    border-top: 2px solid var(--primary);
    box-shadow: var(--shadow);
    padding: 0.5rem 1rem 1rem;
    z-index: 100;
  }

  nav.container-fluid.nav-open ul.nav-links {
    display: flex !important;
  }

  .nav-links li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .brand-logo {
    height: 80px;
    transform: translateY(16px);
    margin-left: -1rem;
  }

  .brand a {
    align-items: flex-end;
  }

  .brand-text {
    height: 60px;
    align-self: flex-end;
    margin-bottom: -1rem;
  }
}

@media (max-width: 768px) {
  .hello-grid {
    grid-template-columns: 1fr;
  }
}

.hello-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.shop-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  width: 75%;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .shop-2col {
    grid-template-columns: 1fr;
  }
}

.shop-card .shop-content {
  margin-top: 1.25rem;
}

.shop-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.find-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .find-grid {
    grid-template-columns: 1fr;
  }
}

.find-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: 'Sofia Sans Semi Condensed', sans-serif;
}

.event-date {
  color: var(--accent-orange);
  font-family: 'Sofia Sans Semi Condensed', sans-serif;
}

.event strong {
  font-size: 1.1rem;
  color: var(--text-color);
  font-family: 'Sofia Sans Condensed', sans-serif;
}

.event span:last-child {
  color: var(--muted-text);
}

.contact-section {
  max-width: 640px;
}

.contact-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--text-color);
}

.contact-icons a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-icons a:hover {
  color: var(--accent-orange);
}

.newsletter-banner {
  background-color: var(--primary);
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 4rem;
}

.newsletter-banner p {
  margin-bottom: 1.5rem;
}
