:root {
  --cream: #f7f2e8;
  --paper: #fffaf1;
  --linen: #eee6d8;
  --sage: #dfe9bd;
  --olive: #6d7147;
  --terracotta: #85391f;
  --terracotta-deep: #6f2d18;
  --clay: #a65a32;
  --brown: #3a2117;
  --brown-soft: #5d3a2b;
  --ink: #241913;
  --muted: #62564b;
  --white: #fffdf8;
  --shadow: 0 22px 55px rgba(45, 30, 20, 0.18);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(166, 90, 50, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--brown);
  color: var(--white);
  padding: 0.65rem 0.85rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

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

h1,
h2,
.hero p,
.section-heading p,
.testimonial__card blockquote {
  text-wrap: balance;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0.72rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(58, 33, 23, 0.12);
  background: rgba(247, 242, 232, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--terracotta);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.brand__mark {
  position: relative;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  left: 50%;
  width: 0.48rem;
  height: 0.9rem;
  border: 1px solid var(--olive);
  background: rgba(109, 113, 71, 0.12);
  content: "";
}

.brand__mark::before {
  top: 0.08rem;
  border-radius: 100% 0;
  transform: translateX(-72%) rotate(-34deg);
}

.brand__mark::after {
  top: 0.34rem;
  border-radius: 0 100%;
  transform: translateX(-18%) rotate(34deg);
}

.brand__text {
  letter-spacing: 0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  color: var(--brown-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  background: linear-gradient(135deg, #6f2d18 0%, #8f3f23 48%, #5c2718 100%);
  color: var(--white);
  padding: 0.58rem 0.95rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta::before,
.button--solid::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 240, 212, 0.2) 44%, transparent 62%);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, #7b321c 0%, #a24b2a 50%, #65301d 100%);
  box-shadow: 0 8px 18px rgba(58, 33, 23, 0.14);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before,
.button--solid:hover::before,
.button--solid:focus-visible::before {
  transform: translateX(120%);
}

.mobile-nav {
  display: none;
  position: relative;
  color: var(--brown-soft);
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(58, 33, 23, 0.16);
  border-radius: 4px;
  padding: 0.55rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(58, 33, 23, 0.12);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-nav nav a {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.mobile-nav nav a:hover {
  background: var(--linen);
}

.hero {
  min-height: 780px;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 6rem;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(40, 28, 19, 0.08), rgba(40, 28, 19, 0.48) 68%),
    linear-gradient(rgba(31, 21, 15, 0.32), rgba(31, 21, 15, 0.62)),
    var(--hero-background-image) center / cover no-repeat;
}

.hero__content {
  width: min(830px, 100%);
  margin-top: 3rem;
}

.eyebrow,
.kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7e1c4;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  color: var(--white);
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(3rem, 6.7vw, 5.95rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.38);
}

.hero p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 1.35rem auto 0;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 0.78rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--solid {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  border-color: var(--terracotta-deep);
  background: var(--terracotta-deep);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(58, 33, 23, 0.18);
}

.button--solid:hover,
.button--solid:focus-visible {
  border-color: #7b321c;
  background: #7b321c;
  box-shadow: 0 16px 34px rgba(58, 33, 23, 0.24);
}

.button--ghost {
  color: var(--white);
}

.button--ghost:hover {
  background: var(--white);
  color: var(--brown);
}

.button--light {
  width: 100%;
  border-color: #f7e1c4;
  background: linear-gradient(180deg, #fff0d4 0%, #f4d4aa 100%);
  color: var(--brown);
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.button--light:hover {
  border-color: var(--white);
  background: linear-gradient(180deg, var(--white) 0%, #f7e1c4 100%);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.15rem, 4vw, 3rem);
}

.section__inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.story {
  background: var(--paper);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.story__image {
  position: relative;
  padding: 0 0 4.1rem;
}

.story__image img {
  aspect-ratio: 4 / 4.9;
  width: min(520px, 100%);
  object-fit: cover;
  box-shadow: 0 14px 35px rgba(58, 33, 23, 0.15);
}

.story__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(230px, 72%);
  background: var(--sage);
  color: var(--brown-soft);
  padding: 1.35rem 1.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.45;
}

.story__copy {
  max-width: 590px;
}

.story__copy h2,
.section-heading h2,
.vista h2,
.booking h2 {
  margin-top: 0.75rem;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.story__copy p:not(.kicker),
.section-heading p:not(.kicker) {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.72;
}

.script-note {
  border-left: 2px solid var(--clay);
  padding-left: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.55rem;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link::after {
  content: "->";
}

.tasting {
  background: #f2eee6;
}

.section-heading {
  width: min(720px, 100%);
  margin-inline: auto;
  text-align: center;
}

.tasting__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(270px, 390px) minmax(220px, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.feature-list {
  display: grid;
  gap: 1.8rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
}

.feature__mark {
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  transform: rotate(45deg);
  border: 1px solid var(--terracotta);
}

.feature h3 {
  color: var(--terracotta);
  font-size: 1.18rem;
}

.feature p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.62;
}

.tasting__photo {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 38px rgba(64, 42, 30, 0.16);
}

.tasting__photo img {
  aspect-ratio: 1 / 0.88;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.vista {
  position: relative;
  display: grid;
  min-height: clamp(430px, 55vw, 700px);
  place-items: center;
  padding: clamp(5rem, 9vw, 8rem) 1.25rem;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(47, 49, 42, 0.52), rgba(47, 49, 42, 0.6)),
    var(--vista-background-image) center / cover fixed no-repeat;
  overflow: hidden;
}

.vista::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(58, 33, 23, 0.42), rgba(58, 33, 23, 0.1), rgba(58, 33, 23, 0.42)),
    repeating-linear-gradient(45deg, rgba(255, 253, 248, 0.035) 0 1px, transparent 1px 8px);
  content: "";
}

.vista__content {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.vista .kicker {
  color: #ead7bf;
}

.vista h2 {
  color: var(--white);
}

.vista p:not(.kicker) {
  width: min(650px, 100%);
  margin: 1rem auto 0;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.vista__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(640px, 100%);
  margin: clamp(2rem, 5vw, 3.25rem) auto 0;
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.14);
  backdrop-filter: blur(8px);
}

.vista__facts div {
  padding: 1rem;
  background: rgba(58, 33, 23, 0.18);
}

.vista__facts dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  line-height: 1.1;
}

.vista__facts dd {
  margin: 0.3rem 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust {
  background: var(--paper);
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.testimonial__card {
  position: relative;
  border: 1px solid rgba(133, 57, 31, 0.2);
  border-radius: 4px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 24px 58px rgba(45, 30, 20, 0.11);
  padding: clamp(2.25rem, 4.5vw, 3.85rem);
}

.testimonial__card::before {
  display: block;
  color: var(--terracotta);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.testimonial__card h2 {
  margin-top: 0.7rem;
  color: var(--brown);
  font-size: clamp(1.95rem, 3.1vw, 2.65rem);
  line-height: 1.05;
}

.testimonial__card blockquote {
  margin: 1.75rem 0 0;
  color: var(--brown-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  font-style: italic;
  line-height: 1.55;
}

.testimonial__guest {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial__media {
  display: grid;
  gap: 1.05rem;
}

.testimonial__hero-image,
.testimonial__thumbs figure {
  overflow: hidden;
  border: 1px solid rgba(58, 33, 23, 0.08);
  border-radius: 4px;
  background: var(--linen);
  box-shadow: 0 16px 36px rgba(45, 30, 20, 0.12);
}

.testimonial__hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 60%;
}

.testimonial__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}

.testimonial__thumbs img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

.testimonial__thumbs figure:nth-child(1) img {
  object-position: 42% 52%;
}

.testimonial__thumbs figure:nth-child(2) img {
  object-position: 50% 55%;
}

.testimonial__thumbs figure:nth-child(3) img {
  object-position: 50% 58%;
}

.booking {
  background: #f4f5e8;
}

.booking__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  min-height: 590px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(rgba(48, 33, 25, 0.28), rgba(48, 33, 25, 0.36)),
    var(--booking-background-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.booking__card {
  width: min(550px, 100%);
  border-radius: 4px;
  background: var(--brown);
  color: var(--white);
  padding: clamp(2.35rem, 5vw, 4rem);
}

.booking__card .kicker {
  color: #dcb894;
}

.booking__card h2 {
  color: var(--white);
}

.booking__card p {
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.05rem;
  line-height: 1.68;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 1.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  min-height: 2.7em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
  min-height: 0;
  padding: 0.88rem 0.95rem;
}

.field input,
.field select {
  height: 54px;
}

.field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

.field input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.2em;
  text-align: left;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.82;
}

.field select option {
  color: var(--ink);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 253, 248, 0.62);
}

.form-status {
  min-height: 1.2rem;
  color: var(--sage);
  font-size: 0.92rem;
}

.location-card {
  justify-self: center;
  width: min(340px, 100%);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--brown);
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: 0 20px 44px rgba(30, 20, 12, 0.18);
}

.location-card .kicker {
  color: var(--terracotta-deep);
  margin-bottom: 1.25rem;
}

.location-card ul {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-card li {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.05rem;
  border-left: 2px solid rgba(133, 57, 31, 0.28);
}

.location-card strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.location-card span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.site-footer {
  background: #ece5db;
  color: var(--brown-soft);
  padding: 4rem clamp(1.15rem, 4vw, 3rem) 2rem;
}

.footer__inner,
.footer__bar {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, auto));
  gap: clamp(2rem, 6vw, 5.5rem);
}

.footer__inner p {
  max-width: 340px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.footer__inner nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 0.62rem;
  font-style: normal;
}

.footer__inner h2,
.footer__contact h2 {
  color: var(--terracotta);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__inner nav a,
.footer__contact a,
.footer__contact span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer__inner a:hover {
  color: var(--terracotta-deep);
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(58, 33, 23, 0.1);
  padding-top: 1.4rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer__bar a + a {
  margin-left: 1.2rem;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .story__grid,
  .booking__panel {
    grid-template-columns: 1fr;
  }

  .story__image {
    width: min(540px, 100%);
    margin-inline: auto;
  }

  .story__copy {
    margin-inline: auto;
    text-align: center;
  }

  .script-note {
    text-align: left;
  }

  .tasting__grid {
    grid-template-columns: 1fr;
  }

  .tasting__photo {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }

  .feature-list {
    max-width: 640px;
    margin-inline: auto;
  }

  .testimonial {
    grid-template-columns: 1fr;
  }

  .booking__panel {
    gap: 2rem;
  }

  .location-card {
    justify-self: start;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 58px;
    padding-block: 0.52rem;
  }

  .site-header .brand {
    font-size: 1rem;
  }

  .hero {
    min-height: 690px;
    padding-top: 6rem;
    background-position: 56% center;
  }

  .hero__content {
    margin-top: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .section {
    padding-block: 4rem;
  }

  .eyebrow,
  .kicker {
    font-size: 0.72rem;
  }

  .story__image figcaption {
    position: relative;
    width: 88%;
    margin: -2rem auto 0;
  }

  .testimonial {
    gap: 1.4rem;
  }

  .testimonial__card {
    padding: 1.8rem;
  }

  .testimonial__hero-image img {
    aspect-ratio: 4 / 3.45;
    object-position: 50% 58%;
  }

  .testimonial__thumbs {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .testimonial__thumbs img {
    aspect-ratio: 4 / 3;
  }

  .vista {
    background-attachment: scroll;
  }

  .vista__facts {
    grid-template-columns: 1fr;
  }

  .booking__panel {
    min-height: auto;
    padding: 1rem;
  }

  .booking__card {
    padding: 1.65rem;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .location-card {
    justify-self: stretch;
    width: 100%;
  }

  .footer__inner,
  .footer__bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer__bar {
    margin-top: 2.5rem;
  }

  .footer__bar a + a {
    margin-left: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover {
    transform: none;
  }
}
