:root {
  --tec-red: #b93424;
  --tec-red-dark: #8e251a;
  --tec-green: #17352d;
  --tec-gold: #e6a83c;
  --tec-cream: #fff8e9;
  --tec-ink: #25211c;
  --tec-muted: #766d62;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--tec-cream);
  color: var(--tec-ink);
  font-family: Arial, sans-serif;
}
.tec-shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.tec-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.25s;
}
.tec-header.scrolled {
  background: rgba(255, 248, 233, 0.96);
  border-color: rgba(37, 33, 28, 0.12);
  box-shadow: 0 10px 35px rgba(37, 33, 28, 0.08);
  backdrop-filter: blur(16px);
}
.tec-header__inner {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.tec-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.scrolled .tec-brand {
  color: var(--tec-green);
}
.tec-brand__sun {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  background: var(--tec-gold);
  box-shadow: inset 0 0 0 8px var(--tec-red);
}
.tec-brand b,
.tec-brand strong {
  display: block;
  line-height: 0.88;
}
.tec-brand b {
  font-size: 11px;
  letter-spacing: 0.25em;
}
.tec-brand strong {
  font-family: Georgia, serif;
  font-size: 24px;
}
.tec-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}
.tec-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scrolled .tec-nav a {
  color: var(--tec-ink);
}
.tec-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--tec-gold);
  transition: 0.2s;
}
.tec-nav a:hover:after {
  right: 0;
}
.tec-order,
.tec-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.tec-order {
  padding: 14px 18px;
  background: var(--tec-red);
  color: #fff;
}
.tec-menu-toggle {
  display: none;
}
.tec-hero {
  min-height: 760px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--tec-green);
  color: #fff;
}
.tec-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}
.tec-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 27, 23, 0.92) 0%,
      rgba(16, 27, 23, 0.66) 48%,
      rgba(16, 27, 23, 0.1) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 50%);
}
.tec-hero__content {
  position: relative;
  padding-top: 80px;
}
.tec-eyebrow {
  margin: 0 0 18px;
  color: var(--tec-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.tec-hero .tec-eyebrow {
  color: var(--tec-gold);
}
.tec-hero h1,
.tec-section h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.tec-hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 9vw, 126px);
}
.tec-hero h1 em,
.tec-section h2 em {
  color: var(--tec-gold);
  font-weight: 400;
}
.tec-hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}
.tec-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.tec-button {
  min-height: 52px;
  padding: 0 24px;
}
.tec-button--gold {
  background: var(--tec-gold);
  color: var(--tec-green);
}
.tec-button--outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.tec-button--dark {
  background: var(--tec-green);
  color: #fff;
}
.tec-hero__facts {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 190px);
  background: var(--tec-cream);
  color: var(--tec-ink);
}
.tec-hero__facts div {
  padding: 24px;
  border-left: 1px solid rgba(37, 33, 28, 0.1);
}
.tec-hero__facts strong,
.tec-hero__facts span {
  display: block;
}
.tec-hero__facts strong {
  font-family: Georgia, serif;
  font-size: 22px;
}
.tec-hero__facts span {
  margin-top: 4px;
  color: var(--tec-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tec-section {
  padding: 120px 0;
}
.tec-section h2 {
  font-size: clamp(48px, 6vw, 82px);
}
.tec-story__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 90px;
}
.tec-collage {
  min-height: 590px;
  position: relative;
}
.tec-collage img {
  position: absolute;
  object-fit: cover;
}
.tec-collage img:first-child {
  inset: 0 20% 16% 0;
  width: 80%;
  height: 84%;
}
.tec-collage img:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 45%;
  height: 48%;
  border: 12px solid var(--tec-cream);
}
.tec-collage span {
  position: absolute;
  left: 28px;
  bottom: 50px;
  padding: 20px 25px;
  background: var(--tec-red);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
}
.tec-story p:not(.tec-eyebrow) {
  color: var(--tec-muted);
  font-size: 16px;
  line-height: 1.85;
}
.tec-text-link {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 2px solid var(--tec-red);
  padding-bottom: 5px;
  color: var(--tec-ink);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tec-favorites {
  background: var(--tec-green);
  color: #fff;
}
.tec-section-heading {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}
.tec-section-heading > p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}
.tec-gallery .tec-section-heading > p {
  color: var(--tec-muted);
}
.tec-food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tec-food-grid article {
  overflow: hidden;
  background: #fff;
  color: var(--tec-ink);
}
.tec-food-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.tec-food-grid article div {
  position: relative;
  padding: 28px;
}
.tec-food-grid span {
  position: absolute;
  right: 24px;
  top: 24px;
  color: rgba(37, 33, 28, 0.2);
  font-family: Georgia, serif;
  font-size: 42px;
}
.tec-food-grid h3 {
  margin: 0 0 13px;
  font-family: Georgia, serif;
  font-size: 28px;
}
.tec-food-grid p {
  margin: 0;
  color: var(--tec-muted);
  line-height: 1.7;
}
.tec-marquee {
  overflow: hidden;
  padding: 23px 0;
  background: var(--tec-red);
  color: #fff;
}
.tec-marquee div {
  width: max-content;
  display: flex;
  gap: 35px;
  align-items: center;
  animation: tec-marquee 24s linear infinite;
}
.tec-marquee span {
  font-family: Georgia, serif;
  font-size: 31px;
}
.tec-marquee i {
  color: var(--tec-gold);
  font-style: normal;
}
@keyframes tec-marquee {
  to {
    transform: translateX(-35%);
  }
}
.tec-menu {
  background: #f0e6d4;
}
.tec-menu > .tec-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.tec-menu__intro > p:not(.tec-eyebrow) {
  color: var(--tec-muted);
  line-height: 1.8;
}
.tec-menu__boards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tec-menu__boards button,
.tec-gallery__grid button {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.tec-menu__boards img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.tec-menu__boards small {
  grid-column: 1/-1;
  color: var(--tec-muted);
  text-align: right;
}
.tec-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.tec-gallery__grid button {
  grid-column: span 4;
  overflow: hidden;
}
.tec-gallery__grid button:nth-child(1),
.tec-gallery__grid button:nth-child(5) {
  grid-column: span 8;
}
.tec-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.tec-gallery__grid button:hover img {
  transform: scale(1.04);
}
.tec-visit {
  background: var(--tec-red);
  color: #fff;
}
.tec-visit__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 90px;
  align-items: center;
}
.tec-visit .tec-eyebrow {
  color: var(--tec-gold);
}
.tec-visit > p,
.tec-visit__grid > div > p:not(.tec-eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.tec-visit__details {
  display: flex;
  gap: 50px;
  margin-top: 35px;
}
.tec-visit__details a {
  color: #fff;
  text-decoration: none;
}
.tec-visit__details span,
.tec-visit__details strong {
  display: block;
}
.tec-visit__details span {
  margin-bottom: 8px;
  color: var(--tec-gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tec-visit__card {
  padding: 45px;
  background: var(--tec-cream);
  color: var(--tec-ink);
  text-align: center;
}
.tec-visit__card p {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
}
.tec-visit__card .tec-text-link {
  display: table;
  margin: 20px auto 0;
}
.tec-footer {
  padding: 75px 0 0;
  background: #10251f;
  color: #fff;
}
.tec-footer > .tec-shell {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 1fr;
  gap: 55px;
}
.tec-footer__brand > div {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  text-transform: uppercase;
}
.tec-footer__brand b,
.tec-footer__brand strong {
  display: block;
}
.tec-footer__brand strong {
  font-family: Georgia, serif;
  font-size: 27px;
}
.tec-footer h3 {
  color: var(--tec-gold);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.tec-footer p,
.tec-footer a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 23px;
  line-height: 1.8;
  text-decoration: none;
}
.tec-footer > div > div > a {
  display: block;
}
.tec-footer__call {
  margin-top: 12px;
  color: #fff !important;
  text-decoration: underline !important;
}
.tec-footer__bottom {
  margin-top: 60px;
  padding: 20px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
}
.tec-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 70px;
  display: grid;
  place-items: center;
  background: rgba(10, 16, 13, 0.94);
}
.tec-lightbox[hidden] {
  display: none;
}
.tec-lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 84vh;
  box-shadow: 0 20px 70px #000;
}
.tec-lightbox button {
  position: absolute;
  right: 30px;
  top: 20px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 46px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
@media (max-width: 991px) {
  .tec-header__inner {
    height: 76px;
  }
  .tec-menu-toggle {
    width: 45px;
    height: 45px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
  }
  .scrolled .tec-menu-toggle {
    border-color: rgba(37, 33, 28, 0.25);
  }
  .tec-menu-toggle span:not(.visually-hidden) {
    width: 21px;
    height: 2px;
    background: #fff;
  }
  .scrolled .tec-menu-toggle span:not(.visually-hidden) {
    background: var(--tec-ink);
  }
  .tec-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 18px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--tec-cream);
  }
  .tec-nav.open {
    display: flex;
  }
  .tec-nav a {
    color: var(--tec-ink);
    padding: 10px;
  }
  .tec-order {
    display: none;
  }
  .tec-hero__facts {
    display: none;
  }
  .tec-story__grid,
  .tec-menu > .tec-shell,
  .tec-visit__grid {
    grid-template-columns: 1fr;
  }
  .tec-story__grid {
    gap: 55px;
  }
  .tec-section-heading {
    grid-template-columns: 1fr;
  }
  .tec-food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tec-visit__grid {
    gap: 45px;
  }
  .tec-footer > .tec-shell {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .tec-shell {
    width: min(100% - 28px, 1180px);
  }
  .tec-hero {
    min-height: 700px;
  }
  .tec-hero h1 {
    font-size: 58px;
  }
  .tec-hero__lead {
    font-size: 15px;
  }
  .tec-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .tec-section {
    padding: 80px 0;
  }
  .tec-collage {
    min-height: 430px;
  }
  .tec-story__grid {
    gap: 40px;
  }
  .tec-food-grid {
    grid-template-columns: 1fr;
  }
  .tec-section-heading {
    gap: 15px;
    margin-bottom: 35px;
  }
  .tec-menu__boards {
    grid-template-columns: 1fr;
  }
  .tec-menu__boards img {
    height: auto;
  }
  .tec-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .tec-gallery__grid button,
  .tec-gallery__grid button:nth-child(1),
  .tec-gallery__grid button:nth-child(5) {
    grid-column: auto;
  }
  .tec-visit__details {
    flex-direction: column;
    gap: 20px;
  }
  .tec-visit__card {
    padding: 30px;
  }
  .tec-footer > .tec-shell {
    grid-template-columns: 1fr;
  }
  .tec-footer__bottom {
    gap: 15px;
    flex-direction: column;
  }
  .tec-lightbox {
    padding: 25px;
  }
  .tec-lightbox button {
    right: 15px;
    top: 5px;
  }
}
.tec-brand__logo {
  width: 172px;
  height: 72px;
  display: block;
  object-fit: contain;
}

/* ------------------------------------------------------------------
   Header Logo Swap
   ------------------------------------------------------------------ */

.tec-brand {
    position: relative;
    display: block;
    width: 172px;
    height: 72px;
    flex-shrink: 0;
}

.tec-brand__logo--light,
.tec-brand__logo--dark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.tec-brand__logo--light {
    opacity: 1;
    visibility: visible;
}

.tec-brand__logo--dark {
    opacity: 0;
    visibility: hidden;
}

/* Swap logos after scrolling */

.tec-header.scrolled .tec-brand__logo--light {
    opacity: 0;
    visibility: hidden;
}

.tec-header.scrolled .tec-brand__logo--dark {
    opacity: 1;
    visibility: visible;
}

.tec-footer__logo {
  width: 210px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.tec-footer__bottom {
  align-items: center;
}
.tec-back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;
  width: 52px;
  height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--tec-gold);
  color: var(--tec-green) !important;
  box-shadow: 0 10px 28px rgba(16, 37, 31, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s,
    background-color 0.2s;
}
.tec-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.tec-back-to-top:hover {
  background: #fff;
  transform: translateY(-3px);
}
.tec-back-to-top svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 575px) {
  .tec-back-to-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}
html,
body {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}
body.stretched #wrapper,
#wrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.tec-header,
.tec-hero,
.tec-content,
.tec-section,
.tec-marquee,
.tec-footer {
  max-width: none;
}
.tec-visit__card p {
  color: var(--tec-ink) !important;
  -webkit-text-fill-color: var(--tec-ink) !important;
  opacity: 1 !important;
}
.tec-footer__order {
  position: relative;
  width: max-content;
  min-height: 54px;
  margin-top: 18px;
  padding: 5px 22px 5px 7px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tec-gold), #f0bd54);
  color: var(--tec-green) !important;
  font-size: 11px !important;
  font-weight: 900;
  line-height: 1 !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background-position 0.35s;
}
.tec-footer__order:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 75%
  );
  transform: translateX(-120%);
  transition: transform 0.5s;
}
.tec-footer__order:hover {
  color: var(--tec-green) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.24);
}
.tec-footer__order:hover:before {
  transform: translateX(120%);
}
.tec-footer__order-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tec-green);
  color: var(--tec-gold);
  transition: transform 0.25s;
}
.tec-footer__order:hover .tec-footer__order-icon {
  transform: rotate(-10deg) scale(1.06);
}
.tec-footer__order-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tec-visit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--tec-green);
}
.tec-visit:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(16, 37, 31, 0.94) 0%,
    rgba(16, 37, 31, 0.82) 50%,
    rgba(16, 37, 31, 0.62) 100%
  );
}
.tec-visit__bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 53%;
  will-change: transform;
}
.tec-visit__grid {
  position: relative;
  z-index: 2;
}
.tec-visit__grid > div > p:not(.tec-eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767px) {
  .tec-visit__bg {
    top: 0;
    height: 100%;
    transform: none !important;
    object-position: 42% center;
  }
  .tec-visit:before {
    background: rgba(16, 37, 31, 0.86);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tec-visit__bg {
    transform: none !important;
  }
}
.tec-visit {
  background: var(--tec-red);
}
.tec-visit:before {
  background: linear-gradient(
    90deg,
    rgba(142, 37, 26, 0.88) 0%,
    rgba(185, 52, 36, 0.74) 54%,
    rgba(142, 37, 26, 0.68) 100%
  );
}
.tec-visit__bg {
  filter: grayscale(1) contrast(1.08);
  opacity: 0.52;
  mix-blend-mode: luminosity;
}
.tec-visit__grid > div > p:not(.tec-eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 767px) {
  .tec-visit__bg {
    opacity: 0.42;
  }
  .tec-visit:before {
    background: rgba(142, 37, 26, 0.84);
  }
}
.tec-visit__bg {
  top: -20%;
  height: 140%;
}
.tec-hours {
  position: relative;
  overflow: hidden;
  background: var(--tec-cream);
  color: var(--tec-ink);
}
.tec-hours__word {
  position: absolute;
  right: -0.04em;
  top: -0.2em;
  color: rgba(185, 52, 36, 0.055);
  font-family:
    Impact,
    Arial Narrow,
    sans-serif;
  font-size: clamp(170px, 26vw, 430px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.tec-hours__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: center;
}
.tec-hours__intro > p:not(.tec-eyebrow) {
  max-width: 510px;
  color: var(--tec-muted);
  font-size: 16px;
  line-height: 1.8;
}
.tec-clock {
  position: relative;
  width: 156px;
  height: 156px;
  margin-top: 36px;
  border: 2px solid var(--tec-red);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 10px rgba(185, 52, 36, 0.06);
}
.tec-clock__mark {
  position: absolute;
  background: var(--tec-red);
}
.tec-clock__mark--12,
.tec-clock__mark--6 {
  left: 50%;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
}
.tec-clock__mark--12 {
  top: 9px;
}
.tec-clock__mark--6 {
  bottom: 9px;
}
.tec-clock__mark--3,
.tec-clock__mark--9 {
  top: 50%;
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
}
.tec-clock__mark--3 {
  right: 9px;
}
.tec-clock__mark--9 {
  left: 9px;
}
.tec-clock__hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  display: block;
  border-radius: 4px;
  background: var(--tec-green);
  transform-origin: 50% 100%;
}
.tec-clock__hand--hour {
  width: 5px;
  height: 43px;
  margin-left: -2.5px;
  animation: tec-clock-hour 18s linear infinite;
}
.tec-clock__hand--minute {
  width: 3px;
  height: 57px;
  margin-left: -1.5px;
  animation: tec-clock-minute 3s linear infinite;
}
.tec-clock b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--tec-gold);
  transform: translate(-50%, -50%);
}
@keyframes tec-clock-hour {
  to {
    transform: rotate(360deg);
  }
}
@keyframes tec-clock-minute {
  to {
    transform: rotate(360deg);
  }
}
.tec-hours__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(37, 33, 28, 0.16);
}
.tec-hours__list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(37, 33, 28, 0.16);
  transition:
    padding-left 0.25s,
    background-color 0.25s,
    color 0.25s;
}
.tec-hours__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--tec-gold);
  transition: width 0.25s;
}
.tec-hours__list li:hover {
  padding-left: 38px;
  background: rgba(255, 255, 255, 0.52);
}
.tec-hours__list li:hover:before {
  width: 25px;
}
.tec-hours__list span {
  font-family: Georgia, serif;
  font-size: 25px;
}
.tec-hours__list strong {
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.tec-hours__list .is-closed strong {
  color: var(--tec-red);
}
.tec-hours__list .is-today {
  background: var(--tec-green);
  color: #fff;
}
.tec-hours__list .is-today:after {
  content: "Today";
  position: absolute;
  right: 150px;
  padding: 4px 8px;
  border-radius: 99px;
  background: var(--tec-gold);
  color: var(--tec-green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tec-hours__list .is-today.is-closed strong {
  color: var(--tec-gold);
}
.tec-hours-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.tec-hours-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tec-hours__list li:nth-child(2) {
  transition-delay: 0.05s;
}
.tec-hours__list li:nth-child(3) {
  transition-delay: 0.1s;
}
.tec-hours__list li:nth-child(4) {
  transition-delay: 0.15s;
}
.tec-hours__list li:nth-child(5) {
  transition-delay: 0.2s;
}
.tec-hours__list li:nth-child(6) {
  transition-delay: 0.25s;
}
.tec-hours__list li:nth-child(7) {
  transition-delay: 0.3s;
}
@media (max-width: 991px) {
  .tec-hours__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .tec-hours__intro {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 30px;
  }
  .tec-hours__intro .tec-eyebrow,
  .tec-hours__intro h2,
  .tec-hours__intro > p {
    grid-column: 1;
  }
  .tec-clock {
    grid-column: 2;
    grid-row: 1/4;
    margin: 0;
  }
}
@media (max-width: 575px) {
  .tec-hours__intro {
    display: block;
  }
  .tec-clock {
    width: 130px;
    height: 130px;
    margin-top: 28px;
  }
  .tec-hours__list li {
    padding: 17px 12px;
  }
  .tec-hours__list span {
    font-size: 20px;
  }
  .tec-hours__list .is-today:after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tec-clock__hand {
    animation: none;
  }
  .tec-hours-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.tec-menu-float {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1250;
  min-width: 48px;
  padding: 17px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 14px 0 0 14px;
  background: var(--tec-gold);
  color: var(--tec-green);
  box-shadow: 0 12px 32px rgba(16, 37, 31, 0.24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    padding 0.25s,
    background-color 0.25s,
    color 0.25s;
}
.tec-menu-float:hover {
  padding-right: 17px;
  background: var(--tec-red);
  color: #fff;
}
.tec-menu-float svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.tec-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 2500;
  overflow: hidden;
  background: var(--tec-cream);
  color: var(--tec-ink);
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.tec-menu-panel[hidden] {
  display: none;
}
.tec-menu-panel.is-open {
  opacity: 1;
  transform: translateX(0);
}
.tec-menu-panel__top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 86px;
  padding: 0 clamp(20px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(37, 33, 28, 0.15);
  background: rgba(255, 248, 233, 0.94);
  backdrop-filter: blur(14px);
}
.tec-menu-panel__top > div span,
.tec-menu-panel__top > div strong {
  display: block;
  text-transform: uppercase;
}
.tec-menu-panel__top > div span {
  color: var(--tec-red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.tec-menu-panel__top > div strong {
  font-family: Georgia, serif;
  font-size: 25px;
}
.tec-menu-panel__close {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 33, 28, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--tec-ink);
  cursor: pointer;
  transition:
    transform 0.25s,
    background-color 0.25s,
    color 0.25s;
}
.tec-menu-panel__close:hover {
  background: var(--tec-red);
  color: #fff;
  transform: rotate(90deg);
}
.tec-menu-panel__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.tec-menu-panel__scroll {
  height: 100%;
  padding: 135px max(20px, calc((100vw - 1180px) / 2)) 70px;
  overflow-y: auto;
  /* overscroll-behavior: contain; */
  overflow-y: auto;
}
.tec-menu-panel__hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 60px;
  margin-bottom: 65px;
}
.tec-menu-panel__hero .tec-eyebrow {
  grid-column: 1/-1;
  margin-bottom: -30px;
}
.tec-menu-panel__hero h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.045em;
}
.tec-menu-panel__hero h2 em {
  color: var(--tec-gold);
  font-weight: 400;
}
.tec-menu-panel__hero > p:last-child {
  color: var(--tec-muted);
  font-size: 16px;
  line-height: 1.7;
}
.tec-menu-panel__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.tec-menu-category {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  padding: 36px;
  background: #fff;
  border: 1px solid rgba(37, 33, 28, 0.1);
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.tec-menu-category:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 52, 36, 0.45);
}
.tec-menu-category--large {
    grid-column: span 8;
  /* grid-column: span 8;
  grid-row: span 2; */
}
.tec-menu-category--breakfast {
  /* grid-column: span 8; */
}
.tec-menu-category__number {
  position: absolute;
  right: 20px;
  top: 11px;
  color: rgba(185, 52, 36, 0.1);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
}
.tec-menu-category h3 {
  position: relative;
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--tec-gold);
  font-family: Georgia, serif;
  font-size: 31px;
}
.tec-menu-category h3 small {
  display: block;
  margin-top: 4px;
  color: var(--tec-red);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tec-menu-category ul {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
}
.tec-menu-category--large ul,
.tec-menu-category--breakfast ul {
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
}
.tec-menu-category li {
  padding: 9px 0;
  border-bottom: 1px dotted rgba(37, 33, 28, 0.22);
  font-size: 14px;
  font-weight: 700;
}
.tec-menu-category__note {
  position: relative;
  margin-top: 28px;
  padding: 18px;
  background: var(--tec-green);
  color: #fff;
}
.tec-menu-category__note strong,
.tec-menu-category__note span {
  display: block;
}
.tec-menu-category__note strong {
  font-family: Georgia, serif;
  font-size: 22px;
}
.tec-menu-category__note span {
  margin-top: 3px;
  color: var(--tec-gold);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tec-menu-panel__footer {
  margin-top: 20px;
  margin-bottom: 120px;
  padding: 32px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--tec-red);
  color: #fff;
}
.tec-menu-panel__footer p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 30px;
}
.tec-menu-panel__footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 99px;
  background: var(--tec-gold);
  color: var(--tec-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.tec-menu-panel__footer svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 991px) {
  .tec-menu-panel__hero {
    grid-template-columns: 1fr;
  }
  .tec-menu-panel__hero .tec-eyebrow {
    margin-bottom: -35px;
  }
  .tec-menu-panel__hero > p:last-child {
    max-width: 560px;
  }
  .tec-menu-category,
  .tec-menu-category--large,
  .tec-menu-category--breakfast {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .tec-menu-float {
    min-width: 43px;
    padding: 14px 9px;
  }
  .tec-menu-panel__top {
    height: 72px;
  }
  .tec-menu-panel__scroll {
    padding-top: 108px;
  }
  .tec-menu-panel__hero {
    gap: 22px;
    margin-bottom: 38px;
  }
  .tec-menu-panel__hero .tec-eyebrow {
    margin-bottom: 0;
  }
  .tec-menu-panel__hero h2 {
    font-size: 55px;
  }
  .tec-menu-category,
  .tec-menu-category--large,
  .tec-menu-category--breakfast {
    grid-column: 1/-1;
    min-height: 0;
    padding: 28px;
  }
  .tec-menu-category--large ul,
  .tec-menu-category--breakfast ul {
    grid-template-columns: 1fr;
  }
  .tec-menu-panel__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
  }
  .tec-menu-panel__footer p {
    font-size: 25px;
  }
}
.tec-button--doordash {
  position: relative;
  gap: 9px;
  overflow: hidden;
  background: #ff3008;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 48, 8, 0.22);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.tec-button--doordash:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 75%
  );
  transform: translateX(-125%);
  transition: transform 0.5s;
}
.tec-button--doordash:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(255, 48, 8, 0.34);
}
.tec-button--doordash:hover:before {
  transform: translateX(125%);
}
.tec-button--doordash svg {
  position: relative;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tec-button--doordash span {
  position: relative;
}
.tec-menu-panel__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tec-menu-panel__footer .tec-menu-panel__delivery {
  background: #ff3008;
  color: #fff;
  box-shadow: 0 8px 20px rgba(83, 15, 3, 0.22);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tec-menu-panel__footer .tec-menu-panel__delivery:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(83, 15, 3, 0.3);
}
@media (max-width: 767px) {
  .tec-actions .tec-button--doordash {
    width: 100%;
  }
  .tec-menu-panel__footer-actions {
    width: 100%;
    flex-direction: column;
  }
  .tec-menu-panel__footer-actions a {
    justify-content: center;
  }
}
.tec-menu-panel-delivery-fixed {
  position: fixed;
  right: 112px;
  top: 18px;
  z-index: 2600;
  height: 50px;
  padding: 0 20px;
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  background: #ff3008;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(255, 48, 8, 0.26);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tec-menu-panel.is-open + .tec-menu-panel-delivery-fixed {
  display: inline-flex;
}
.tec-menu-panel-delivery-fixed:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 48, 8, 0.36);
}
.tec-menu-panel-delivery-fixed svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 575px) {
  .tec-menu-panel-delivery-fixed {
    right: 80px;
    top: 13px;
    height: 46px;
    padding: 0 13px;
  }
  .tec-menu-panel-delivery-fixed span {
    font-size: 0;
  }
  .tec-menu-panel-delivery-fixed span:after {
    content: "DoorDash";
    font-size: 9px;
  }
}
.tec-hero__logo-pop {
  position: absolute;
  right: 0;
  top: 47%;
  z-index: 2;
  width: clamp(235px, 25vw, 350px);
  height: auto;
  display: block;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
  animation: tec-hero-logo-arrival 4.5s cubic-bezier(0.2, 0.75, 0.25, 1) 0.45s
    forwards;
}
@keyframes tec-hero-logo-arrival {
  0% {
    opacity: 0;
    transform: translate(-210%, -50%) rotate(-9deg) scale(0.82);
  }
  8% {
    opacity: 1;
  }
  18% {
    opacity: 1;
    transform: translate(0, -50%) rotate(0) scale(1.03);
  }
  24% {
    transform: translate(0, -50%) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(22px, -50%) scale(0.97);
  }
}
@media (max-width: 1199px) {
  .tec-hero__logo-pop {
    right: 10px;
    width: 245px;
  }
}
@media (max-width: 991px) {
  .tec-hero__logo-pop {
    right: 8px;
    top: 39%;
    width: 180px;
  }
}
@media (max-width: 575px) {
  .tec-hero__logo-pop {
    right: 2px;
    top: 31%;
    width: 125px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tec-hero__logo-pop {
    animation: tec-hero-logo-fade 3.5s ease 0.2s forwards;
  }
  @keyframes tec-hero-logo-fade {
    0%,
    85% {
      opacity: 1;
      transform: translate(0, -50%);
    }
    100% {
      opacity: 0;
      transform: translate(0, -50%);
    }
  }
}
.tec-hero__logo-pop {
  right: -38px;
  animation: tec-hero-logo-arrival-v2 7s cubic-bezier(0.2, 0.75, 0.25, 1) 0.45s
    forwards;
}
@keyframes tec-hero-logo-arrival-v2 {
  0% {
    opacity: 0;
    transform: translate(-220%, -50%) rotate(-9deg) scale(0.82);
  }
  7% {
    opacity: 1;
  }
  14% {
    opacity: 1;
    transform: translate(0, -50%) rotate(0) scale(1.03);
  }
  18% {
    transform: translate(0, -50%) scale(1);
  }
  84% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(28px, -50%) scale(0.97);
  }
}
@media (max-width: 1199px) {
  .tec-hero__logo-pop {
    right: -18px;
  }
}
@media (max-width: 991px) {
  .tec-hero__logo-pop {
    right: -10px;
  }
}
@media (max-width: 575px) {
  .tec-hero__logo-pop {
    right: -6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tec-hero__logo-pop {
    animation: tec-hero-logo-fade-v2 6.2s ease 0.2s forwards;
  }
  @keyframes tec-hero-logo-fade-v2 {
    0%,
    80% {
      opacity: 1;
      transform: translate(0, -50%);
    }
    100% {
      opacity: 0;
      transform: translate(0, -50%);
    }
  }
}
.tec-header__socials {
  display: flex;
  align-items: center;
  gap: 7px;
}
.tec-header__socials a,
.tec-nav__socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.2s,
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.tec-header.scrolled .tec-header__socials a {
  border-color: rgba(37, 33, 28, 0.2);
  color: var(--tec-ink);
}
.tec-header__socials a:hover,
.tec-nav__socials a:hover {
  border-color: var(--tec-gold);
  background: var(--tec-gold);
  color: var(--tec-green);
  transform: translateY(-2px);
}
.tec-header__socials svg,
.tec-nav__socials svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}
.tec-nav__socials {
  display: none;
}
@media (max-width: 991px) {
  .tec-header__socials {
    display: none;
  }
  .tec-nav__socials {
    margin-top: 8px;
    padding-top: 18px;
    display: flex;
    gap: 9px;
    border-top: 1px solid rgba(37, 33, 28, 0.14);
  }
  .tec-nav__socials a {
    padding: 0;
    color: var(--tec-green);
    border-color: rgba(37, 33, 28, 0.22);
  }
  .tec-nav__socials a:after {
    display: none;
  }
}
.tec-language {
  position: relative;
  flex: 0 0 auto;
  margin-left: -26px;
}
.tec-language__toggle {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.tec-language__toggle:hover,
.tec-language.is-open .tec-language__toggle {
  border-color: var(--tec-gold);
  background: var(--tec-gold);
  color: var(--tec-green);
  transform: translateY(-2px);
}
.tec-header.scrolled .tec-language__toggle {
  border-color: rgba(37, 33, 28, 0.2);
  color: var(--tec-ink);
}
.tec-language__toggle svg {
  width: 30px;
  height: 30px;
  display: block;
  overflow: visible;
}
.tec-language__code {
  fill: currentColor;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
  text-transform: uppercase;
}
.tec-language__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 178px;
  padding: 7px;
  border: 1px solid rgba(37, 33, 28, 0.13);
  border-radius: 12px;
  background: var(--tec-cream);
  box-shadow: 0 18px 45px rgba(16, 37, 31, 0.18);
}
.tec-language__menu[hidden] {
  display: none;
}
.tec-language__menu button {
  width: 100%;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--tec-ink);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.tec-language__menu button:hover {
  background: rgba(230, 168, 60, 0.18);
}
.tec-language__menu button[aria-checked="true"] {
  background: var(--tec-green);
  color: #fff;
}
.tec-language__menu small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0.65;
}
@media (max-width: 991px) {
  .tec-language {
    order: 5;
  }
  .tec-language__toggle {
    width: 45px;
    height: 45px;
    border-color: rgba(255, 255, 255, 0.35);
  }
  .tec-header.scrolled .tec-language__toggle {
    border-color: rgba(37, 33, 28, 0.25);
  }
  .tec-language__menu {
    right: 0;
  }
}
@media (max-width: 767px) {
  .tec-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .tec-actions .tec-button {
    width: 100%;
    min-height: 54px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
}
/* Canvas' base theme uses ID selectors for its stock header, footer, and headings.
   Keep those shared assets available without allowing the stock shell to restyle
   this project's deliberately custom presentation. */
html {
  scroll-behavior: smooth !important;
}
#header.tec-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background: transparent;
  color: #fff;
}
#header.tec-header.scrolled {
  background: rgba(255, 248, 233, 0.96);
  color: var(--tec-ink);
}
#header.tec-header .tec-nav {
  display: flex;
}
#header.tec-header .tec-nav a {
  color: #fff;
}
#header.tec-header.scrolled .tec-nav a {
  color: var(--tec-ink);
}
#footer.tec-footer {
  padding: 75px 0 0;
  background: #10251f;
  color: #fff;
}
.tec-hero h1,
.tec-favorites h2,
.tec-visit h2 {
  color: #fff;
}
.tec-story h2,
.tec-menu h2,
.tec-gallery h2,
.tec-hours h2 {
  color: var(--tec-ink);
}
@media (max-width: 991px) {
  #header.tec-header .tec-nav {
    display: none;
  }
  #header.tec-header .tec-nav.open {
    display: flex;
  }
  #header.tec-header .tec-nav a {
    color: var(--tec-ink);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}
