:root {
  --ink: #16301c;
  --green: #1f7a3a;
  --green-dark: #145528;
  --green-deep: #0d2b1a;
  --mint: #e8f3e4;
  --paper: #f5f7f3;
  --white: #ffffff;
  --mute: #5c6b5f;
  --line: #d5ddd4;
  --grid: #e4ebe3;
  --event: #b7dc9a;
  --event-hover: #9fce7b;
  --shadow: 0 12px 32px rgba(13, 43, 26, 0.1);
  --display: "Oswald", Impact, sans-serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
select,
input,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
.nav__logo,
.filters__logo {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.98;
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.1rem, 4vw, 2.4rem);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
}

.nav__mark {
  width: 14px;
  height: 14px;
  background: var(--green);
  transform: rotate(45deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav__links a[aria-current="page"] {
  color: var(--green);
}

.nav__phone {
  color: var(--mute);
}

.nav__cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.55rem 0.9rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 18px;
  padding: 0;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
}

.nav__toggle span:first-child {
  top: 4px;
}

.nav__toggle span:last-child {
  bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 2px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn--green,
.btn--dark {
  background: var(--green);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--green-dark);
}

.btn--ghost {
  border-color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: calc(100vh - var(--nav-h));
  background: var(--green-deep);
  color: var(--white);
}

.hero__copy {
  padding: clamp(2.4rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__copy .kicker {
  color: #b7dc9a;
}

.hero__copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 14ch;
}

.hero__lede {
  max-width: 38rem;
  margin: 1.2rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 0;
}

.hero__facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b7dc9a;
}

.hero__facts dd {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.services,
.about,
.area,
.jobs,
.reviews,
.archive,
.compare-block,
.page-hero,
.book {
  padding: clamp(3.2rem, 7vw, 5.5rem) clamp(1.1rem, 4vw, 2.4rem);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2,
.about h2,
.compare-block__copy h2,
.book__intro h1,
.page-hero h1,
.cta-band h2,
.confirm__card h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem 1.2rem;
}

.service-grid h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
}

.service-grid__tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.15rem 0.45rem;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-grid__meta {
  margin-top: 0.9rem;
  color: var(--mute);
  font-weight: 600;
  font-size: 0.88rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--white);
}

.about img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about p + p {
  margin-top: 0.9rem;
}

.area {
  background: var(--mint);
}

.area__towns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.area__towns li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
}

.jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.jobs__grid a {
  background: var(--white);
  border: 1px solid var(--line);
}

.jobs__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.jobs__grid span {
  display: block;
  padding: 0.85rem 1rem 1rem;
  font-weight: 700;
}

.reviews {
  background: var(--white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews blockquote {
  margin: 0;
  padding: 1.2rem;
  background: var(--paper);
  border-left: 4px solid var(--green);
}

.reviews footer {
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.1rem, 4vw, 2.4rem);
  background: var(--green);
  color: var(--white);
}

.cta-band .kicker {
  color: #d7efc3;
}

.cta-band h2 {
  max-width: 16ch;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem clamp(1.1rem, 4vw, 2.4rem);
  background: var(--green-deep);
  color: #d5e4d4;
}

.page-hero {
  padding-bottom: 1.5rem;
  background: var(--white);
}

.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 0.8rem;
}

.page-hero p {
  max-width: 44rem;
}

.compare-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: center;
  background: var(--mint);
}

.compare-block__copy p:last-child {
  max-width: 40ch;
}

.compare {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  background: #c5d4b8;
}

.compare img,
.compare__base,
.compare__reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__base,
.compare__reveal img {
  position: absolute;
  inset: 0;
}

.compare__reveal {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  overflow: hidden;
  border-right: 3px solid var(--white);
}

.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.compare__tag {
  position: absolute;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.compare__tag--before {
  left: 0.8rem;
}

.compare__tag--after {
  right: 0.8rem;
}

.filters-wrap {
  margin: 0 0 1.4rem;
}

.filters {
  display: flex;
  justify-content: center;
  background: var(--paper);
}

.filters__logo {
  display: none;
  font-size: 1.05rem;
  white-space: nowrap;
}

.filters__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.filters__links {
  display: none;
}

.filters.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 96;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem clamp(1.1rem, 4vw, 2.4rem);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.filters.is-pinned .filters__logo {
  display: inline-block;
  justify-self: start;
}

.filters.is-pinned .filters__tabs {
  grid-column: 2;
}

.filters.is-pinned .filters__links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.1rem;
  font-weight: 700;
}

.filters.is-pinned .filters__links a[aria-current="page"] {
  color: var(--green);
}

.filters button {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  font-weight: 700;
}

.filters button.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 86px;
  gap: 10px;
}

.tile {
  position: relative;
  overflow: hidden;
  background: #c5d4b8;
  color: var(--white);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 43, 26, 0.72));
}

.tile__meta {
  position: absolute;
  inset: auto 0.9rem 0.9rem;
  z-index: 2;
}

.tile__meta p {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tile__meta h3 {
  font-family: var(--display);
  font-size: 1.45rem;
}

.tile.is-wide {
  grid-column: span 8;
  grid-row: span 5;
}

.tile.is-tall {
  grid-column: span 4;
  grid-row: span 7;
}

.tile.is-square {
  grid-column: span 4;
  grid-row: span 5;
}

.tile.is-feature {
  grid-column: span 12;
  grid-row: span 6;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(13, 43, 26, 0.94);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr);
  gap: 1.8rem;
  align-items: center;
  width: min(1100px, 100%);
}

.lightbox__stage img {
  width: 100%;
  max-height: 76vh;
  object-fit: cover;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: 0;
  color: var(--white);
  font-weight: 700;
}

.lightbox__close {
  top: 1.2rem;
  right: 1.4rem;
  text-transform: uppercase;
}

.lightbox__nav {
  top: 50%;
  font-size: 1.6rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.lightbox__count {
  margin-top: 1rem;
  color: #b7dc9a;
  font-weight: 700;
}

.book__intro {
  max-width: 44rem;
  padding-bottom: 0;
}

.book__intro p:last-child {
  margin-top: 0.8rem;
  max-width: 48ch;
}

.book__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.book__side,
.gcal {
  background: var(--white);
  border: 1px solid var(--line);
}

.book__side {
  padding: 1.1rem;
  position: sticky;
  top: calc(var(--nav-h) + 0.8rem);
}

.book__note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--mute);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mute);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.7rem 0.75rem;
}

.mini-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.3rem 0 0.7rem;
}

.mini-cal__head h2 {
  font-size: 0.95rem;
}

.mini-cal__head button,
.gcal__toolbar button {
  background: var(--white);
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
}

.mini-cal__dow,
.mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  text-align: center;
}

.mini-cal__dow {
  font-size: 0.68rem;
  color: var(--mute);
  margin-bottom: 0.3rem;
}

.mini-cal__grid button {
  background: none;
  border: 0;
  aspect-ratio: 1;
  font-size: 0.78rem;
}

.mini-cal__grid button.is-outside,
.mini-cal__grid button.is-closed {
  color: #b7c0b6;
}

.mini-cal__grid button.is-closed {
  text-decoration: line-through;
}

.mini-cal__grid button.is-today {
  box-shadow: inset 0 0 0 1px var(--green);
}

.mini-cal__grid button.is-selected {
  background: var(--green);
  color: var(--white);
}

.gcal__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--grid);
}

.gcal__toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.gcal__toolbar h2 {
  font-size: 1.05rem;
  margin-left: 0.3rem;
}

.gcal__today {
  width: auto !important;
  padding: 0 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.gcal__hint {
  font-size: 0.8rem;
  color: var(--mute);
}

.gcal__board {
  overflow: auto;
  max-height: min(78vh, 880px);
}

.gcal__week {
  min-width: 860px;
  display: grid;
  grid-template-columns: 64px repeat(6, minmax(0, 1fr));
}

.gcal__head,
.gcal__slot,
.gcal__time {
  border-bottom: 1px solid var(--grid);
  border-right: 1px solid var(--grid);
}

.gcal__head {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--white);
  padding: 0.7rem 0.4rem;
  text-align: center;
}

.gcal__head strong {
  display: block;
  font-size: 0.68rem;
  color: var(--mute);
}

.gcal__head span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  font-size: 1.1rem;
  font-weight: 700;
}

.gcal__head.is-today span {
  background: var(--green);
  color: var(--white);
}

.gcal__time {
  color: var(--mute);
  font-size: 0.7rem;
  padding: 0.4rem 0.45rem 0 0;
  text-align: right;
}

.gcal__slot {
  position: relative;
  min-height: 58px;
  background-image: linear-gradient(to bottom, transparent 50%, rgba(228, 235, 227, 0.7) 50%);
  background-size: 100% 29px;
}

.gcal__event {
  position: absolute;
  inset: 3px 4px;
  background: var(--event);
  border-left: 4px solid var(--green-dark);
  padding: 0.3rem 0.4rem;
  font-size: 0.74rem;
  line-height: 1.25;
  text-align: left;
  font-weight: 700;
}

.gcal__event:hover,
.gcal__event:focus-visible {
  background: var(--event-hover);
}

.gcal__event small {
  display: block;
  font-weight: 500;
  color: var(--green-deep);
}

.gcal__empty {
  padding: 1.6rem 1rem;
  color: var(--mute);
  text-align: center;
}

.event-pop,
.confirm {
  position: fixed;
  z-index: 150;
}

.event-pop {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(420px, calc(100vw - 2rem));
  background: var(--white);
  padding: 1.15rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.event-pop[hidden],
.event-pop__backdrop[hidden],
.confirm[hidden] {
  display: none;
}

.event-pop__backdrop,
.confirm {
  inset: 0;
  background: rgba(13, 43, 26, 0.4);
}

.confirm {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.confirm__card {
  width: min(460px, 100%);
  background: var(--white);
  padding: 1.4rem;
}

.event-pop h3,
.confirm__card h2 {
  margin-bottom: 0.4rem;
}

.event-pop__service,
.confirm__fine {
  color: var(--mute);
  margin-bottom: 0.9rem;
}

.event-pop__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  min-height: calc(100vh - var(--nav-h));
  background: var(--white);
}

.estimator__map-wrap {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 560px;
  border-right: 1px solid var(--line);
}

.estimator__search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: end;
  padding: 1rem 1.1rem 0.4rem;
}

.estimator__search .field {
  margin-bottom: 0;
}

.estimator__hint {
  padding: 0 1.1rem 0.75rem;
  color: var(--mute);
  font-size: 0.92rem;
}

#yardMap {
  min-height: 520px;
  background: #c5d4b8;
}

.estimator__quote {
  padding: 1.4rem 1.2rem 2rem;
}

.estimator__quote h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.7rem;
}

.estimator__lead {
  margin-bottom: 1.2rem;
  color: var(--mute);
}

.estimator__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0 0 0.6rem;
}

.estimator__stats div {
  background: var(--mint);
  padding: 0.85rem 0.9rem;
}

.estimator__stats dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
}

.estimator__stats dd {
  margin: 0.25rem 0 0;
  font-family: var(--display);
  font-size: 1.7rem;
}

.estimator__acre,
.estimator__rate {
  color: var(--mute);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.estimator__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.yard-outline {
  cursor: grab;
}

#yardMap.is-dragging-yard,
#yardMap.is-dragging-yard .yard-outline {
  cursor: grabbing;
}

.leaflet-div-icon.yard-handle-wrap {
  background: transparent;
  border: none;
}

.yard-handle {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1f7a3a;
  box-shadow: 0 2px 8px rgba(13, 43, 26, 0.45);
  cursor: grab;
}

.yard-handle--corner {
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.25), 0 2px 8px rgba(13, 43, 26, 0.45);
}

.yard-handle--edge {
  border-width: 2px;
  background: #e8f3e4;
}

.estimate-banner {
  margin: 0 clamp(1.1rem, 4vw, 2.4rem) 1rem;
  padding: 0.9rem 1rem;
  background: var(--mint);
  border-left: 4px solid var(--green);
}

@media (max-width: 980px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: start;
    padding: 1rem 1.1rem 1.3rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .hero,
  .about,
  .service-grid,
  .jobs__grid,
  .reviews__grid,
  .book__layout,
  .lightbox__stage,
  .compare-block,
  .cta-band,
  .footer,
  .section-head--row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .hero__copy {
    padding: 1.6rem 1.1rem 2rem;
  }

  .hero__copy h1,
  .page-hero h1,
  .cta-band h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

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

  .hero__facts,
  .estimator__stats {
    grid-template-columns: 1fr;
  }

  .hero__media img {
    min-height: 240px;
    max-height: 280px;
  }

  .tile.is-wide,
  .tile.is-tall,
  .tile.is-square,
  .tile.is-feature {
    grid-column: span 12;
    grid-row: span 5;
  }

  .book__side {
    position: static;
  }

  .filters.is-pinned {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
  }

  .filters.is-pinned .filters__logo,
  .filters.is-pinned .filters__links {
    display: none;
  }

  .filters.is-pinned .filters__tabs {
    grid-column: auto;
    justify-content: center;
  }

  .estimator,
  .estimator__search {
    grid-template-columns: 1fr;
  }

  #yardMap {
    min-height: 280px;
  }

  .gcal__week {
    min-width: 0;
    grid-template-columns: 36px repeat(6, minmax(0, 1fr));
  }

  .gcal__toolbar {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .gcal__toolbar h2 {
    font-size: 0.95rem;
  }

  .gcal__head {
    padding: 0.4rem 0.1rem;
  }

  .gcal__head strong {
    font-size: 0.52rem;
    letter-spacing: 0.03em;
  }

  .gcal__head span {
    min-width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }

  .gcal__time {
    font-size: 0.56rem;
    padding: 0.12rem 0.06rem;
  }
}
