@charset "UTF-8";
:root {
  --orange: #FF812C;
  --orange-dark: #b85e20;
  --navy: #0f1923;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --text: #000;
  --text-muted: #000000;
  --border: #e5e3df;
  --nav-height: 64px;
}

section.the-event-calendar-list .the-title .exp {
  margin: 0px;
  padding: 0px;
}
section.the-event-calendar-list .the-frequency {
  font-size: 1rem;
}
section.the-event-calendar-list .the-location {
  font-size: 0.75rem;
}
section.the-event-calendar-list .the-picture {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
section.the-event-calendar-list .the-picture .inside-here {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
section.the-event-calendar-list .the-description p {
  font-size: 0.8rem;
  line-height: 1.4;
}
section.the-event-calendar-list .cta-button .btn.x {
  font-family: "GT Super Display";
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background-color: #0060ff;
  color: #fff;
  border: none;
  transition: 0.5s;
  font-size: 0.9rem;
}
section.the-event-calendar-list .cta-button .btn.x:hover {
  background-color: #FF812C;
  color: #fff;
  transition: 0.5s;
}

#subFormEvent textarea.form-control {
  border: 0px;
  box-shadow: unset;
  border-radius: 0px;
  font-family: "Helvetica Neue";
  border-bottom: 2px solid #000;
  padding: 0rem;
  border: 0px;
  border-bottom: 2px solid #000;
  padding: 0px;
  transition: 0.5s;
}
#subFormEvent textarea.form-control:focus {
  transition: 0.5s;
  border-color: #FF812C;
}
#subFormEvent button.btn-subscribe {
  width: auto;
  display: table;
  margin: 1rem auto 0rem;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

body.modal-open {
  overflow: visible !important;
}

.page-header {
  background: var(--white);
  padding: 2.5rem 3rem 2rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-header p {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.75;
}

h2.section-heading {
  font-size: 1.5rem;
  font-family: "GT Super Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* ── CALENDAR GRID ── */
.cal-section {
  margin-bottom: 1rem;
}
.cal-section .cal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
}
@media all and (max-width: 960px) {
  .cal-section .cal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cal-section .cal-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem;
  min-height: 110px;
  position: relative;
  background: var(--white);
}
@media all and (max-width: 960px) {
  .cal-section .cal-cell {
    grid-column: span 2;
  }
}
.cal-section .cal-cell.has-event {
  background: #fdf9f6;
}
.cal-section .cal-cell.dec {
  grid-column: span 4;
  min-height: auto;
}
.cal-section .cal-month {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.cal-section .cal-issue {
  font-family: "GT Super Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.4;
}
.cal-section .cal-event-name {
  font-family: "GT Super Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.cal-section .cal-event-date {
  font-size: 0.8rem;
  color: #FF812C;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.cal-section .cal-event-sub {
  font-size: 10.5px;
  color: var(--text-muted);
}
.cal-section .cal-tbc {
  font-size: 10px;
  color: #bbb;
  margin-top: 0.3rem;
}
.cal-section .cal-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
}

.event-section {
  /* ── UPCOMING EVENTS LIST ── */
}
.event-section .events-list {
  margin-bottom: 1rem;
}
.event-section .event-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
@media all and (max-width: 900px) {
  .event-section .event-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.event-section .event-row:first-child {
  padding-top: 0;
}
.event-section .ev-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.event-section .ev-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.event-section .ev-title {
  font-family: "GT Super Display", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.event-section .ev-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

.the-mill-section p {
  font-size: 0.9rem;
}
@media all and (max-width: 900px) {
  .the-mill-section .btn-orange {
    width: 100%;
  }
}

/* ── BUTTONS ── */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.5s;
  margin-top: 0.25rem;
}

.btn-orange:hover {
  background: #0060ff;
  color: #fff;
  transition: 0.5s;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 22px;
  border: 1px solid var(--orange);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  margin-top: 0.25rem;
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
  transition: 0.5s;
}

.btn-muted {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 22px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  margin-top: 0.25rem;
}

.btn-muted:hover {
  border-color: var(--text-muted);
  color: var(--text);
  transition: 0.5s;
}

@media (max-width: 960px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .page-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  main {
    padding: 0 1.5rem;
  }
  .cal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cal-cell.dec {
    grid-column: span 2;
  }
  .event-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .bespoke-grid {
    grid-template-columns: 1fr;
  }
}
.the-bespoke-section .bespoke-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.the-bespoke-section .bespoke-grid .bsp-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
}
@media all and (max-width: 900px) {
  .the-bespoke-section .bespoke-grid .bsp-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.the-bespoke-section .bsp-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.the-bespoke-section .bsp-img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.the-bespoke-section .bsp-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.the-bespoke-section .bsp-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid #f0d0bb;
  padding: 3px 9px;
  margin-bottom: 0.85rem;
  font-weight: 500;
  align-self: flex-start;
  background: #fdf9f6;
}
.the-bespoke-section .bsp-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.the-bespoke-section .bsp-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}
.the-bespoke-section .bsp-desc p {
  margin-bottom: 0rem;
}

a:active, a:focus, a:hover {
  outline: 0;
  text-decoration: none;
  color: #000;
}/*# sourceMappingURL=events.css.map */