:root {
  --dark: #313715;
  --orange: #D16014;
  --medium: #939F5C;
  --light: #E2F9B8;
  --cream: #F7F7F3;
  --white: #fff;
  --ink: #24261F;
  --muted: #74776E;
  --line: rgba(36, 38, 31, .12);
  --shadow: 0 20px 60px rgba(31, 34, 26, .08)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  width: 100%;
}

button,
input {
  font: inherit
}

.site-header {
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(49, 55, 21, 1);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px)
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.04em
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: #fff
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700
}

.site-nav .nav-login {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line)
}

.hero {
  min-height: 580px;
  padding: clamp(48px, 8vw, 105px) clamp(20px, 7vw, 100px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 28, 20, .78) 0%, rgba(24, 28, 20, .60) 44%, rgba(24, 28, 20, .28) 72%, rgba(24, 28, 20, .14) 100%),
    url('/assets/images/stationshal.jpeg') center/cover no-repeat;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(49, 55, 21, .10), rgba(49, 55, 21, .22));
  pointer-events: none;
}

.hero:after {
  display: none
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 78%)
}

.eyebrow {
  margin: 0 0 17px;
  font-size: .74rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .14em
}

.eyebrow.dark {
  color: var(--dark)
}

.eyebrow.light {
  color: var(--light)
}

.hero h1,
.store-hero h1,
.login-card h1,
.editor-head h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  line-height: .9;
  letter-spacing: -.075em
}

.hero h1 em {
  color: var(--light);
  font-style: normal
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem
}

.hero-shape {
  width: 170px;
  height: 170px;
  position: absolute;
  right: 8vw;
  top: 8vw;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(8px);
  transform: rotate(8deg)
}

.hero-shape span {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: .9
}

.hero-shape small {
  margin-top: 7px;
  font-weight: 700;
  line-height: 1.2
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer
}

.button-light {
  background: #fff;
  color: var(--dark)
}

.button-dark {
  background: var(--dark);
  color: #fff
}

.button-orange {
  background: var(--orange);
  color: #fff
}

.button-outline {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dark)
}

.button.full {
  width: 100%
}

.intro-strip {
  padding: 21px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--dark);
  color: var(--cream);
  font-weight: 700;
  border-bottom: 1px solid var(--line)
}

.intro-strip p {
  margin: 0
}

.stores-section {
  padding: 86px clamp(20px, 5vw, 72px)
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px
}

.section-heading h2,
.store-details h2,
.visit-section h2,
.editor-card h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.1rem);
  line-height: .95;
  letter-spacing: -.065em;
  color: var(--dark)
}

.section-heading>p {
  max-width: 520px;
  margin: 0;
  color: var(--muted)
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.store-card {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: .18s ease
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.store-card-image {
  aspect-ratio: 1/.78;
  overflow: hidden;
  position: relative;
  border-radius: 17px;
  background: var(--light)
}

.store-card-image img {
  height: 100%;
  object-fit: cover
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2
}

.store-card-image .status-pill {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px)
}

.status-open {
  background: var(--light);
  color: var(--dark)
}

.status-closed {
  background: #fff;
  color: var(--dark)
}

.status-holiday {
  background: var(--orange);
  color: #fff
}

.status-appointment {
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(49, 55, 21, .16)
}

.status-pill.large {
  margin-top: 24px;
  padding: 10px 14px;
  font-size: .82rem
}

.store-card-copy {
  padding: 17px 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px
}

.store-category,
.store-floor {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700
}

.store-card h3 {
  margin: 4px 0 0;
  font-size: 1.22rem;
  letter-spacing: -.04em
}

.arrow {
  font-size: 1.4rem
}

.store-floor {
  padding: 12px 10px 10px
}

.visit-section {
  margin: 0 clamp(20px, 5vw, 72px) 60px;
  min-height: 440px;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 40px;
  border-radius: 34px;
  background: #E9ECE1;
  color: var(--dark);
  border: 1px solid var(--line)
}

.visit-copy p:last-child {
  max-width: 580px
}

.visit-note {
  justify-self: end;
  max-width: 260px;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line)
}

.big-number {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1
}

.visit-note p {
  margin: 5px 0 0;
  font-weight: 700
}

.site-footer {
  padding: 35px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: var(--dark) 0.5rem solid;
  color: var(--muted);
  font-size: .9rem
}

.site-footer div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.site-footer strong {
  color: var(--dark)
}

.store-hero {
  padding: 68px clamp(20px, 6vw, 85px) 52px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px
}

.store-hero>div {
  max-width: 900px
}

.store-hero h1 {
  color: var(--dark)
}

.store-tagline {
  margin: 24px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700
}

.floor-label {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  font-weight: 700;
  white-space: nowrap
}

.gallery-grid {
  padding: 0 clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 235px);
  gap: 14px
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--medium)
}

.gallery-grid .gallery-featured {
  grid-row: span 2
}

.gallery-grid figure:nth-child(4) {
  grid-column: span 2
}

.gallery-grid img {
  height: 100%;
  object-fit: cover
}

.store-details {
  padding: 78px clamp(20px, 6vw, 85px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 8vw, 120px)
}

.store-about>p:last-of-type {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7
}

.store-links {
  display: flex;
  gap: 10px;
  margin-top: 26px
}

.hours-panel {
  padding: 34px;
  border-radius: 30px;
  background: var(--dark);
  color: #fff
}

.hours-list {
  margin: 0
}

.hours-list>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.hours-list dt {
  color: rgba(255, 255, 255, .63)
}

.hours-list dd {
  margin: 0;
  font-weight: 700
}

.hours-small {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem
}

.holiday-banner {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
  background: var(--orange)
}

.holiday-banner span {
  font-size: .8rem;
  opacity: .8
}

.next-store {
  margin: 0 clamp(20px, 5vw, 72px) 60px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-weight: 700
}

.next-store p {
  margin: 0
}

.login-shell {
  min-height: calc(100vh - 150px);
  padding: 60px 20px;
  display: grid;
  place-items: center;
  background: var(--medium)
}

.login-card {
  width: min(100%, 500px);
  padding: clamp(30px, 6vw, 56px);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow)
}

.login-card h1 {
  font-size: clamp(2.7rem, 8vw, 4.7rem)
}

.login-card>p:not(.eyebrow) {
  color: var(--muted)
}

.pin-form {
  display: grid;
  gap: 12px;
  margin-top: 30px
}

.pin-form label {
  font-size: .83rem;
  font-weight: 700
}

.pin-form input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  font-size: 2rem;
  letter-spacing: .35em;
  text-align: center
}

.login-back {
  margin: 24px 0 0
}

.form-message {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700
}

.form-message.error {
  background: #FCE8DE;
  color: #8B3308
}

.form-message.success {
  background: var(--light);
  color: var(--dark)
}

.editor-shell {
  padding: 58px clamp(20px, 5vw, 72px) 90px
}

.editor-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px
}

.editor-head h1 {
  font-size: clamp(3rem, 7vw, 6rem)
}

.editor-head p {
  color: var(--muted)
}

.editor-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap
}

.text-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700
}

.editor-form {
  display: grid;
  gap: 22px
}

.editor-card {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff
}

.editor-card-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px
}

.editor-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem)
}

.editor-card-heading>p {
  max-width: 470px;
  margin: 0;
  color: var(--muted)
}

.day-list {
  display: grid
}

.day-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 130px 155px 32px 155px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line)
}

.day-row label:not(.check-control) {
  display: grid;
  gap: 4px
}

.day-row label>span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700
}

.day-row input[type=time],
.holiday-dates input {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream)
}

.day-row.is-closed input[type=time] {
  opacity: .35
}

.check-control {
  display: flex;
  align-items: center;
  gap: 8px
}

.time-separator {
  color: var(--muted);
  text-align: center
}

.holiday-card {
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 28px 50px
}

.holiday-card>div:first-child {
  grid-row: span 2
}

.holiday-card p {
  max-width: 650px;
  color: var(--muted)
}

.holiday-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer
}

.holiday-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.toggle-ui {
  width: 48px;
  height: 27px;
  padding: 3px;
  border-radius: 999px;
  background: #D6D8CB;
  transition: .2s
}

.toggle-ui:after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  transition: .2s
}

.holiday-toggle input:checked+.toggle-ui {
  background: var(--orange)
}

.holiday-toggle input:checked+.toggle-ui:after {
  transform: translateX(21px)
}

.holiday-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.holiday-dates label {
  display: grid;
  gap: 6px
}

.holiday-dates label span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700
}

.holiday-dates.disabled {
  opacity: .4
}

.save-bar {
  position: sticky;
  bottom: 14px;
  z-index: 20;
  padding: 14px 16px 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px)
}

.save-bar p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem
}

.simple-page {
  min-height: 60vh;
  padding: 100px clamp(20px, 6vw, 85px)
}

@media(max-width:1100px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .day-row {
    grid-template-columns: 1fr 120px 135px 25px 135px
  }
}

@media(max-width:850px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .section-heading,
  .visit-section,
  .store-details,
  .holiday-card {
    grid-template-columns: 1fr
  }

  .visit-note {
    justify-self: start
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 350px 200px 200px
  }

  .gallery-grid .gallery-featured {
    grid-column: span 2;
    grid-row: auto
  }

  .gallery-grid figure:nth-child(4) {
    grid-column: span 1
  }

  .editor-head,
  .editor-card-heading {
    align-items: flex-start;
    flex-direction: column
  }

  .day-row {
    padding: 18px 0;
    grid-template-columns: 1fr 1fr
  }

  .day-row .check-control {
    justify-self: end
  }

  .time-separator {
    display: none
  }
}

@media(max-width:620px) {
  .site-header {
    min-height: 68px
  }

  .site-nav a:not(.nav-login) {
    display: none
  }

  .site-nav .nav-login {
    padding: 9px 11px;
    font-size: .8rem
  }

  .brand-mark {
    width: 34px;
    height: 34px
  }

  .brand span:last-child {
    font-size: .9rem
  }

  .hero {
    min-height: 600px
  }

  .hero-copy {
    width: 100%
  }

  .hero-shape {
    width: 125px;
    height: 125px;
    right: 20px;
    bottom: 20px
  }

  .hero-shape span {
    font-size: 2.4rem
  }

  .intro-strip {
    overflow-x: auto
  }

  .intro-strip p {
    min-width: max-content
  }

  .store-grid {
    grid-template-columns: 1fr
  }

  .store-card-image {
    aspect-ratio: 1.35
  }

  .store-hero {
    align-items: flex-start;
    flex-direction: column
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 250px)
  }

  .gallery-grid .gallery-featured,
  .gallery-grid figure:nth-child(4) {
    grid-column: auto
  }

  .store-links {
    flex-direction: column;
    align-items: stretch
  }

  .site-footer {
    flex-direction: column
  }

  .holiday-dates {
    grid-template-columns: 1fr
  }

  .save-bar {
    border-radius: 24px;
    align-items: stretch;
    flex-direction: column
  }

  .save-bar .button {
    width: 100%
  }
}

/* Events */
.events-section {
  padding: 20px clamp(20px, 5vw, 72px) 90px
}

.events-heading {
  padding-top: 45px;
  border-top: 1px solid var(--line)
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 34px;
  gap: 22px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: .18s ease
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.event-date-block {
  width: 82px;
  min-height: 88px;
  padding: 12px 8px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 18px;
  background: #f0f1ea;
  color: var(--dark)
}

.event-day {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1
}

.event-month {
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em
}

.event-card-copy {
  min-width: 0
}

.event-meta {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 700
}

.event-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.04em
}

.event-card-copy>p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.event-arrow {
  font-size: 1.35rem
}

.events-empty {
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .45)
}

.events-empty p {
  margin: 0 0 5px;
  font-weight: 800
}

.events-empty span {
  color: var(--muted)
}

.event-page {
  min-height: 70vh;
  padding: 75px clamp(20px, 8vw, 130px) 110px
}

.event-page h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.075em
}

.event-page-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 55px
}

.event-page-meta span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700
}

.event-page-text {
  max-width: 760px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted)
}

.events-admin-shell {
  padding: 58px clamp(20px, 5vw, 72px) 90px
}

.events-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start
}

.event-editor-form {
  display: grid;
  gap: 20px
}

.event-editor-form label {
  display: grid;
  gap: 7px
}

.event-editor-form label>span {
  font-size: .78rem;
  font-weight: 800;
  color: var(--muted)
}

.event-editor-form input,
.event-editor-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--cream);
  color: var(--ink)
}

.event-editor-form textarea {
  resize: vertical;
  line-height: 1.5
}

.event-form-row {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 10px
}

.event-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.event-admin-list h2 {
  margin-bottom: 24px
}

.admin-event-items {
  display: grid
}

.admin-event-item {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line)
}

.admin-event-item h3 {
  margin: 0;
  font-size: 1.06rem
}

.admin-event-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .8rem;
  font-weight: 800
}

.admin-event-actions form {
  margin: 0
}

.admin-event-actions button {
  padding: 0;
  border: 0;
  background: none;
  color: #9a3e17;
  font: inherit;
  cursor: pointer
}

.admin-empty {
  color: var(--muted)
}

@media(max-width:850px) {

  .events-grid,
  .events-admin-grid {
    grid-template-columns: 1fr
  }

  .event-form-row {
    grid-template-columns: 1fr 1fr
  }

  .event-form-row label:first-child {
    grid-column: span 2
  }
}

@media(max-width:620px) {
  .event-card {
    grid-template-columns: 70px 1fr 24px;
    padding: 18px;
    gap: 14px
  }

  .event-date-block {
    width: 68px;
    min-height: 74px
  }

  .event-day {
    font-size: 1.75rem
  }

  .event-page {
    padding-top: 55px
  }

  .event-form-row {
    grid-template-columns: 1fr
  }

  .event-form-row label:first-child {
    grid-column: auto
  }

  .admin-event-item {
    align-items: flex-start;
    flex-direction: column
  }

  .admin-event-actions {
    width: 100%
  }
}