@font-face {
  font-family: "D-DINExp";
  src: url("assets/fonts/D-DINExp.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "D-DINExp";
  src: url("assets/fonts/D-DINExp-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.fade-in-section {
  opacity: 0;
  margin-bottom: 30px;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --font-main: "D-DINExp", system-ui, sans-serif;
  --color-text: #111111;
  --color-muted: #666666;
  --color-border: #e7e7e7;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f7f7;
  --color-accent: #111111;
  --radius: 1rem;
  --border: 1px solid #ececec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  font-family: var(--font-main) !important;
  min-width: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility !important;
}

body {
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-surface);
  font-family: var(--font-main);
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  font-family: var(--font-main);
  -webkit-text-stroke: 0.45px transparent;
  text-rendering: geometricPrecision;
}

html, body {
  overflow-x: hidden;
}

.HeaderH1 {
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a0a0a;
  overflow-wrap: break-word;
  word-break: break-word;
}

.round-corner {
  border-radius: 0.5rem;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
  font-family: var(--font-main) !important;
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: var(--font-main);
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  margin: 0 auto;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  font-family: var(--font-main);
}

a {
  color: inherit;
  text-decoration: inherit;
  font-family: var(--font-main);
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--font-main) !important;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

.gjs-t-link {
  color: #0a0a0a;
  text-decoration: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

.webkit-font {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#Hero-Section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: rgb(0 0 0 / 0.7);
  font-weight: 700;
  overflow-wrap: break-word;
}

.Section-Title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  padding-bottom: 1rem;
  text-align: left;
}

.Button {
  border-radius: 0.5rem;
  border-width: 0.25rem;
  border-color: #000000;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  letter-spacing: 0.025px;
  flex: 0 1 auto;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.about-media {
  width: 100%;
  min-width: 0;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-item {
  overflow: hidden;
  border-radius: 0.5rem;
  min-width: 0;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-caption span {
  display: block;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover::after {
  opacity: 1;
}

#Collection-Download-Button {
  grid-column: 2 / 3;
}

.store-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.store-info-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.store-info-label {
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(0 0 0 / 0.5);
}

.store-info-value {
  margin-top: 0.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.store-phone-link:hover,
.store-email-link:hover {
  opacity: 0.6;
}

.store-phone-link,
.store-email-link {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  overflow-wrap: break-word;
  word-break: break-word;
}

.store-media {
  width: 100%;
  min-width: 0;
}

.contact-form {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  grid-column: span 2 / span 2;
  min-width: 0;
}

.form-label {
  font-size: 1rem;
  color: rgb(0 0 0 / 0.7);
  font-weight: 700;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  padding: 0.9rem 1rem;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  outline: none;
}

.form-actions {
  grid-column: span 2 / span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav-link {
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.footer-nav-link:hover {
  opacity: 0.6;
}

.footer-copyright {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(0 0 0 / 0.5);
}

#idt7sn {
  color: black;
  width: 282px;
  height: auto;
  max-width: 100%;
}

#Footer-Logo-Container {
  display: flex;
  align-self: center;
  height: 100%;
}

#Header-Logo {
  align-self: center;
  max-width: 25rem;
}

#Store-Image {
  filter: unset;
  display: block;
  min-width: 0px;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

#About-Picture-1,
#About-Picture-2 {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  align-self: flex-end;
}

#About-Picture-2 {
  max-height: 100%;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
}

#About-A-Left-Container {
  margin: 0;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#About-A-Header-Container {
  margin: 0;
  justify-content: center;
  align-items: flex-start;
  align-self: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar-icon {
  fill: currentColor;
}

#Header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid #000;
  width: 100%;
}

#header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

#HTML-Main {
  padding-top: 2rem;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

#Collection-Header-Container {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  align-content: space-between;
  gap: 1.25rem;
}

#Hero-Container {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
}

#Hero-Header-Container {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
}

.container-class {
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 1.5rem;
  width: 100%;
  max-width: 1200px;
}

#Footer {
  width: 100%;
  margin: 0 auto;
}

.navbar-menu-toggle {
  margin: 10px 0;
  padding: 5px 10px;
  display: none;
  cursor: pointer;
}

.navbar-menu-nav {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 20px;
}

#NavBar-Section {
  position: fixed;
  align-self: flex-start;
  flex: 1 1 0%;
  display: flex;
  justify-content: space-around;
}

#NavBar-Container {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  max-width: 1200px;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
}

#Store-Info-Container-2 {
  grid-template-columns: repeat(1, minmax(0px, 1fr));
  align-self: stretch;
}

.About-B-Icons {
  width: 100%;
  max-width: 120px;
  height: auto;
}

#About-B-Info-Icon-Container-1,
#About-B-Info-Icon-Container-2,
#About-B-Info-Icon-Container-3,
#About-B-Info-Icon-Container-4 {
  max-width: 100%;
  height: auto;
}

#About-B-Info-Text-1,
#About-B-Info-Text-2,
#About-B-Info-Text-3,
#About-B-Info-Text-4 {
  padding: 1rem 0;
  font-size: 1em;
  overflow-wrap: break-word;
  word-break: break-word;
}

#About-B-Info-Container-1,
#About-B-Info-Container-2,
#About-B-Info-Container-3,
#About-B-Info-Container-4 {
  min-width: 0;
  width: 100%;
}

#About-B-Certifications {
  align-self: center;
  color: black;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  max-width: 75%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  scale: 1;
}

#About-B-Container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
  align-items: start;
  width: 100%;
}

.about-container-class {
  margin-left: auto;
  margin-right: auto;
}

.HeaderH1.hero-title {
  font-size: 2.5em;
}

#Hero-Paragraph2,
.paragraph,
#About-A-Header-Paragraph-1,
#About-A-Header-Paragraph-2,
#Contact-Paragraph {
  font-size: 1em;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.8;
  color: #444;
}

#Hero-Button-Container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  margin-top: 4em;
  flex-wrap: wrap;
}

#Hero-Link-Instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  height: auto;
  padding: 0.5rem 1.5rem;
  border: 0.25rem solid #000;
  border-radius: 0.5rem;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#Hero-Link-Instagram:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

.gjs-link-box {
  display: flex;
}

#Store-Info-Directions-Container {
  margin-top: 2rem;
}

#Collection-Gallery-Container,
#Collection-Gallery-Container-2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  grid-template-rows: repeat(1, 1fr);
  gap: 1.5rem;
  width: 100%;
}

#About-A-Container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 1.5rem;
  flex-direction: row;
  width: 100%;
  min-width: 0;
  align-items: end;
}

#About-A-Header-SubHeader {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: rgb(0 0 0 / 0.7);
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

#Store-Address-Header-Text,
#Store-Open-Header-Text,
#Store-Phone-Header-Text,
#Store-Mail-Header-Text {
  font-size: 1rem;
  color: rgb(0 0 0 / 0.7);
  font-weight: 700;
  text-transform: uppercase;
}

#Store-Phone-Header-Text,
#Store-Mail-Header-Text {
  margin-top: 1rem;
}

#Header-Logo-Link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

#BurgerMenu-Nav {
  margin-left: auto;
  display: flex;
}

#Hero-Header {
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

#Hero-Slider-Container {
  display: block;
  flex: 1 1 0%;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

#Store-Container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  background: #fafafa;
}

#Store-Image-Container {
  flex: 0 0 calc(70% - 1rem);
  max-width: calc(70% - 1rem);
  margin: 0;
  min-width: 0;
}

.Hero-Slide-Image {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.Scale-Hover:hover {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.Button-Hover:hover {
  background-color: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1);
  border-radius: 0.5rem;
  transform: scale(105%);
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

#Store-Info-Container {
  flex: 1 1 0%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 3rem;
}

.navbar-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 998;
}

#BurgerMenu-Nav {
  position: relative;
  z-index: 10000;
  pointer-events: all !important;
}

.team-section {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  width: 100%;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.team-card {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center top;
  border-radius: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.team-info {
  margin-top: 1rem;
  text-align: center;
  min-width: 0;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: #000000;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-role {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

#Contact-Infos {
  display: flex;
  align-items: space-evenly;
}

.contact-container {
  display: block;
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 3rem;
}

.contact-column {
  padding: 1.5rem;
  margin: 0.25rem;
  text-align: center;
  border-radius: 0.5rem;
  background: #fafafa;
  min-width: 0;
  width: 100%;
}

.column-header {
  color: #000000;
  margin: 0.25rem 1rem;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  letter-spacing: 0.025px;
  flex: 0 1 auto;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25rem;
}

.contact-info {
  margin: 12px 0;
  font-size: 1rem;
  color: #333;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-info strong {
  display: block;
  color: #000000;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-link {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-link:hover {
  text-decoration: underline;
  color: #000000;
}

#Header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid #000;
  animation: fadeIn 1s ease-in-out;
}

#Header-Logo-Link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

#Header-Logo {
  height: clamp(2.25rem, 2vw + 1.5rem, 3rem);
  width: auto;
  display: block;
}

#BurgerMenu-Nav {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  z-index: 1001;
}

#BurgerMenu-Nav span {
  display: block;
  width: 28px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

#Header.nav-open #BurgerMenu-Nav span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#Header.nav-open #BurgerMenu-Nav span:nth-child(2) {
  opacity: 0;
}

#Header.nav-open #BurgerMenu-Nav span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#Menu-Container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: clamp(0.9rem, 0.5vw + 0.7rem, 1.15rem);
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-radius: 0.5rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

section[id] {
  scroll-margin-top: 3rem;
  animation: fadeIn 1s ease-in-out;
}

@media (max-width: 990px) {
  #Hero-Container {
    gap: 2rem;
  }

  #Hero-Header {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  #Store-Container {
    flex-direction: column;
  }

  #Store-Image-Container,
  #Store-Info-Container {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #Store-Info-Container {
    margin-top: 0;
    min-width: 0;
  }

  #About-B-Container {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #Header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  #Header-Logo {
    max-width: 12rem;
  }

  #Header-Logo-Link {
    margin-right: 0;
  }

  #BurgerMenu-Nav {
    display: flex;
  }

  #Menu-Container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 2px solid #000;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #Header.nav-open #Menu-Container {
    max-height: 25rem;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-radius: 0;
    transform: none;
  }

  #Hero-Container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }

  #Hero-Header-Container,
  #Hero-Slider-Container {
    width: 100%;
    max-width: 100%;
  }

  #Hero-Header {
    font-size: 2.2rem;
  }

  #Hero-Slider-Container {
    max-width: 100%;
  }

  #Store-Container {
    flex-direction: column;
  }

  #Store-Image-Container,
  #Store-Info-Container {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #Store-Image-Container {
    order: -1;
  }

  #Store-Info-Container {
    margin-top: 1rem;
    min-width: 0;
  }

  #About-A-Container {
    grid-template-columns: 1fr;
  }

  #About-A-Header-Container {
    padding: 1.25rem 0 0;
  }

  #About-B-Container {
    grid-template-columns: 1fr;
  }

  #Collection-Gallery-Container,
  #Collection-Gallery-Container-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-field {
    grid-column: span 1;
  }

  .form-actions {
    grid-column: span 1;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  #Header {
    border-bottom-width: 3px;
    padding-block: 0;
  }

  #Header-Logo {
    max-width: 10rem;
  }

  .navbar-icon {
    width: 3em;
    height: 3em;
  }

  #HTML-Main {
    padding-top: 3rem;
    scroll-padding-top: 3rem;
  }

  .container-class {
    padding-block: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .Section-Title,
  #Hero-Header,
  #Hero-SubHeader,
  #Hero-Paragraph1,
  #Hero-Paragraph2,
  #About-A-Header-SubHeader,
  #About-A-Header-Paragraph-1,
  #About-A-Header-Paragraph-2 {
    text-align: center;
  }

  #Hero-Button-Container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 2em;
  }

  .store-info-list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .store-info-item {
    align-items: center;
  }

  .store-info-value,
  .store-phone-link,
  .store-email-link {
    text-align: center;
  }

  #Store-Info-Directions-Container {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #Store-Info-Map-Button {
    align-self: center;
    margin: 0 auto;
  }

  #Collection-Header-Container {
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }

  #Collection-Download-Button {
    flex: 1 1 0%;
    grid-column: 1 / 3;
    text-align: center;
  }

  #Collection-Gallery-Container,
  #Collection-Gallery-Container-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .about-content {
    align-items: center;
  }

  #About-A-Container {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  #About-A-Right-Container,
  #About-A-Left-Container,
  #About-Picture-1,
  #About-Picture-2 {
    width: 100%;
    max-width: 100%;
  }

  #About-B-Container {
    grid-template-columns: 1fr;
  }

  #About-B-Certifications {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .team-section {
    padding-left: 0;
    padding-right: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links-block {
    flex-wrap: wrap;
  }
}

.round-corner,
.gallery-item,
.team-card,
.contact-column,
#Store-Image,
#About-Picture-1,
#About-Picture-2 {
  border-radius: 0.5rem;
}

#Hero-Section,
#Hero-Container {
  background: linear-gradient(to top, #ffffff, #fafafa);
}

#Store-Section,
#Store-Container,
#Collection-Section,
#Impression-Section,
#Footer,
#Footer-Container {
  background: #fafafa;
}

#About-Section,
#About-Container,
#Team-Section,
#Team-Container,
#Contact-Section,
#Contact-Container,
#Dates-Section {
  background: #ffffff;
}

section {
  position: relative;
}

section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
}

#Download-Section,
#Download-Container {
  background: #ffffff;
}

.download-page-intro {
  max-width: 780px;
  margin-bottom: 2rem;
}

.download-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.download-item {
  border-width: 0.25rem;
  border-color: #000000;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
}

.download-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.download-trigger:hover {
  background: #000000;
  color: #ffffff;
}

.download-trigger-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.download-trigger-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.download-trigger-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.75;
}

.download-trigger-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
}

.download-trigger-icon::before,
.download-trigger-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.download-trigger-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.download-item.open .download-trigger-icon::after {
  opacity: 0;
}

.download-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #ffffff;
}

.download-content-inner {
  padding: 0 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.download-card {
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  padding: 1rem;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.download-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: #111111;
}

.download-card-text {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
}

.download-link {
  width: fit-content;
}

@media (max-width: 768px) {
  .download-content-inner {
    grid-template-columns: 1fr;
  }

  .download-trigger {
    padding: 1rem;
  }
}

#Contact-Container {
  padding-bottom: 1.5rem;
}






.Dates-Event-Title-Container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  font-weight: 600;
  color: inherit;
  font-size: 1.25rem;
}

.Dates-Event-Title-Container > div {
  flex: 1;
}

.Event-Title,
.Event-Date,
.Event-Location {
  margin-top: 1.5rem;
  font-weight: 500;
}

.Event-Title:hover,
.Event-Title:focus-visible {
  font-weight: 700;
  text-decoration: underline;
}

.name-column  { flex: 3; text-align: left; }
.date-column  { flex: 2; text-align: center; }
.location-column { flex: 2; text-align: center; }

.line {
  border-bottom: 0.1rem solid black;
  margin-top: 0.25rem;
  width: 100%;
}