:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --cream: #f4ebdd;
  --ink: #241b17;
  --tomato: #b63a2d;
  --oven: #e5a83a;
  --dark: #30231d;
  --line: #241b17;
  --soft-line: rgba(36, 27, 23, .36);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 136px;
  --radius-button: 999px;
  --radius-hero: 48% 48% 45% 45%;
  --border: 1px solid var(--line);
  --text-width: 620px;
  --cta-height: 50px;
  --tmo-gallery-columns: 4;
  --tmo-gallery-gap: 20px;
  --tmo-gallery-ratio: 1.25;
  --tmo-gallery-item-radius: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--dark);
  color: var(--cream);
  padding: 12px 16px;
}

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

:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 4px;
}

.section-shell,
.header-inner,
.footer-inner {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: var(--border);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 2fr 1.5fr auto;
  align-items: center;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
  line-height: 1;
}

.brand span {
  font: 600 28px/1 var(--font-display);
  letter-spacing: -.04em;
}

.brand small {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
}

.header-contact a,
.contact-numbers a,
.footer-phone a {
  text-decoration: none;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-call):hover,
.site-nav a:not(.nav-call):focus-visible {
  color: var(--tomato);
}

.nav-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--tomato);
  border-radius: var(--radius-button);
  color: var(--tomato);
  font-weight: 700;
}

.nav-call:hover,
.nav-call:focus-visible {
  background: var(--tomato);
  color: var(--cream);
}

.menu-toggle {
  display: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 5.6vw, 5.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

em {
  color: var(--tomato);
  font-style: normal;
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 110px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / 8;
}

.hero-name {
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-specialty {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 23px;
  line-height: 1.25;
}

.hero-intro {
  max-width: 450px;
  margin-bottom: 34px;
  color: rgba(36, 27, 23, .72);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  min-height: var(--cta-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--tomato);
  color: var(--cream);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--dark);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--tomato);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color .22s ease;
}

.text-link span {
  font-size: 18px;
  line-height: 0;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--tomato);
}

.hero-visual {
  position: relative;
  grid-column: 9 / 13;
  min-height: 590px;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  inset: 25px 0 35px 28px;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius-hero);
  background: var(--dark);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.orbit {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border: 1px solid var(--ink);
  border-left-color: transparent;
  border-bottom-color: var(--tomato);
  border-radius: 50%;
}

.orbit-hero {
  inset: -35px -62px -38px -54px;
  transform: rotate(-25deg);
  animation: draw-orbit .9s cubic-bezier(.65, 0, .35, 1) both;
}

.orbit-red {
  position: absolute;
  right: 14%;
  bottom: 2%;
  width: 84px;
  height: 2px;
  background: var(--tomato);
  transform-origin: left center;
  transition: transform .22s ease;
}

.hero-visual:hover .orbit-red,
.hero-visual:focus-within .orbit-red {
  transform: rotate(18deg);
}

.hero-route {
  position: absolute;
  right: -26px;
  bottom: -4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  background: var(--cream);
  border: var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-route span:first-child {
  color: var(--tomato);
}

@keyframes draw-orbit {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.occasions {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  border-top: var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 75px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading p {
  max-width: 360px;
  margin: 0 0 5px;
  color: rgba(36, 27, 23, .72);
}

.occasion-route {
  position: relative;
  border-top: var(--border);
}

.occasion-route::before {
  position: absolute;
  top: -24px;
  left: 60%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--tomato);
  border-radius: 50%;
  content: "";
}

.occasion-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 100px 1fr 190px;
  align-items: center;
  gap: 24px;
  border-bottom: var(--border);
}

.occasion-main {
  width: 86%;
}

.occasion-birthday {
  width: 72%;
  margin-left: 15%;
  background: var(--oven);
  border-inline: var(--border);
  padding-inline: 24px;
}

.occasion-takeaway {
  width: 78%;
  margin-left: 5%;
}

.occasion-row h3 {
  margin-bottom: 6px;
  font-size: 34px;
}

.occasion-row p {
  max-width: 520px;
  margin: 0;
}

.occasion-mark {
  padding-left: 24px;
  color: var(--tomato);
  font: 56px/1 var(--font-display);
}

.occasion-data {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  line-height: 1;
}

.occasion-data strong {
  font: 700 35px/1 var(--font-display);
}

.occasion-data span {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.giro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 20px;
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  border-top: var(--border);
}

.giro-title {
  position: relative;
}

.giro-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(5rem, 10vw, 10rem);
}

.giro-line {
  position: absolute;
  top: 30%;
  left: 2%;
  width: 260px;
  height: 260px;
  border: 1px solid var(--tomato);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(22deg);
}

.giro-content {
  max-width: 670px;
  padding-top: 20px;
}

.giro-content p {
  max-width: var(--text-width);
}

.large-lead {
  font: 600 clamp(2rem, 3vw, 3rem)/1.08 var(--font-display);
  letter-spacing: -.04em;
}

.booking-note {
  margin-top: 28px;
  color: var(--tomato);
  font-weight: 700;
}

.giro-components {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 42px 0 38px;
  padding-block: 20px;
  border-block: var(--border);
}

.giro-components span {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 700;
}

.giro-components span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oven);
  content: "";
}

.birthdays {
  background: var(--oven);
  border-block: var(--border);
}

.birthday-inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 20px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.birthday-intro {
  padding-right: 20px;
}

.birthday-time {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  line-height: 1;
}

.birthday-time strong {
  font: 700 clamp(3rem, 5vw, 5rem)/.9 var(--font-display);
}

.birthday-time span {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.birthday-intro h2 {
  font-size: clamp(3.5rem, 5vw, 5.3rem);
}

.birthday-details {
  align-self: end;
  padding: 30px 28px;
  border: var(--border);
  background: rgba(244, 235, 221, .26);
}

.birthday-age {
  margin-bottom: 35px;
  padding-bottom: 16px;
  border-bottom: var(--border);
  font-size: 14px;
  text-transform: uppercase;
}

.birthday-age strong {
  font: 600 38px/1 var(--font-display);
  text-transform: none;
}

.birthday-details h3 {
  margin-bottom: 20px;
  font-size: 29px;
}

.birthday-details ul {
  margin: 0;
  padding-left: 19px;
}

.birthday-details li {
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.4;
}

.birthday-rule {
  margin: 27px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.birthday-media {
  min-height: 360px;
  max-height: 520px;
  align-self: stretch;
  border: var(--border);
  overflow: hidden;
  background: rgba(48, 35, 29, .25);
}

.birthday-media img,
.tmo-runtime-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.takeaway {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  background: var(--dark);
  color: var(--cream);
}

.takeaway-copy {
  grid-column: 2;
}

.takeaway h2 {
  margin-bottom: 28px;
}

.takeaway-copy p {
  max-width: 490px;
  color: rgba(244, 235, 221, .8);
}

.takeaway-copy .button {
  margin-top: 18px;
}

.takeaway-side {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 260px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(244, 235, 221, .5);
  color: var(--oven);
  font-weight: 700;
}

.takeaway-side .muted {
  margin-bottom: 0;
  color: rgba(244, 235, 221, .65);
  font-size: 13px;
  font-weight: 400;
}

.takeaway-route {
  position: absolute;
  top: 34%;
  left: 17%;
  width: 250px;
  height: 180px;
  border: 1px solid var(--tomato);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.takeaway-route span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tomato);
}

.takeaway-route span:nth-child(1) {
  top: 4px;
  left: 30px;
}

.takeaway-route span:nth-child(2) {
  right: 9px;
  bottom: 35px;
}

.takeaway-route span:nth-child(3) {
  bottom: 2px;
  left: 55px;
}

.gallery-section {
  overflow: hidden;
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: var(--border);
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 60px;
}

.gallery-header h2 {
  margin: 0;
}

.gallery-header p {
  max-width: 280px;
  margin: 0 0 6px;
}

.tmo-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 260px 200px;
  gap: var(--tmo-gallery-gap);
}

.tmo-gallery-item {
  min-height: 160px;
  margin: 0;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--tmo-gallery-item-radius);
  background: var(--dark);
}

.tmo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.tmo-gallery-item:hover img,
.tmo-gallery-item:focus-within img {
  transform: scale(1.035);
}

.gallery-main {
  grid-row: 1 / 3;
  margin-left: -44px;
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-small {
  grid-row: 1;
}

.gallery-wide {
  grid-column: 3;
  grid-row: 2;
}

.booking {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 20px;
  align-items: end;
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.booking-statement h2 {
  margin: 0;
}

.booking-contact {
  max-width: 360px;
  padding-left: 28px;
  border-left: var(--border);
}

.booking-contact p {
  margin-bottom: 28px;
}

.booking-contact .text-link {
  margin-left: 16px;
}

.contact {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 20px;
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  border-top: var(--border);
}

.contact-info h2 {
  margin-bottom: 40px;
}

.contact-info address {
  margin-bottom: 25px;
  font-style: normal;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 35px;
  font-size: 20px;
}

.map-wrap {
  min-height: 430px;
  border: var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: sepia(.2) saturate(.7);
}

.map-fallback {
  display: block;
  padding: 13px 16px;
  border-top: var(--border);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.map-fallback:hover,
.map-fallback:focus-visible {
  color: var(--tomato);
}

.site-footer {
  background: var(--dark);
  color: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr 1.2fr;
  gap: 28px;
  align-items: end;
  padding-top: 42px;
  padding-bottom: 42px;
  font-size: 12px;
}

.footer-brand span {
  font-size: 25px;
}

.footer-address {
  opacity: .75;
}

.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: .75;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--oven);
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .hero-visual {
    grid-column: 8 / 13;
  }

  .hero-copy {
    grid-column: 1 / 8;
  }

  .birthday-inner {
    grid-template-columns: 1fr 1fr;
  }

  .birthday-media {
    grid-column: 1 / -1;
    min-height: 260px;
    max-height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --space-6: 72px;
    --space-7: 88px;
  }

  body {
    font-size: 16px;
  }

  .section-shell,
  .header-inner,
  .footer-inner {
    width: min(100% - 40px, 540px);
  }

  .site-header {
    position: sticky;
    top: 0;
    background: rgba(244, 235, 221, .97);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand span {
    font-size: 25px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 70px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: var(--radius-button);
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 18px;
  }

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

  .site-nav a {
    min-height: 45px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--soft-line);
  }

  .site-nav .nav-call {
    justify-content: center;
    margin-top: 14px;
    border: 1px solid var(--tomato);
  }

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

  h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 68px;
    padding-bottom: 80px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: 330px;
    margin-top: 62px;
  }

  .hero-photo {
    inset: 0 20px 0 58px;
  }

  .orbit-hero {
    inset: -22px 5px -18px 15px;
  }

  .hero-route {
    right: -5px;
    bottom: -20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    min-height: 48px;
  }

  .occasions {
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading p {
    max-width: 340px;
    margin-top: 24px;
  }

  .occasion-route::before {
    top: -18px;
    left: auto;
    right: 10%;
    width: 36px;
    height: 36px;
  }

  .occasion-row,
  .occasion-main,
  .occasion-birthday,
  .occasion-takeaway {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    margin-left: 0;
    padding: 25px 0;
  }

  .occasion-birthday {
    padding-inline: 15px;
  }

  .occasion-row .text-link {
    grid-column: 2;
    margin-top: 8px;
  }

  .occasion-row h3 {
    font-size: 31px;
  }

  .occasion-row p {
    line-height: 1.45;
  }

  .occasion-mark {
    padding-left: 8px;
    font-size: 46px;
  }

  .occasion-data {
    padding-left: 8px;
  }

  .occasion-data strong {
    font-size: 26px;
  }

  .occasion-data span {
    font-size: 9px;
    line-height: 1.2;
  }

  .giro {
    display: block;
    padding-top: 82px;
    padding-bottom: 85px;
  }

  .giro-title {
    margin-bottom: 34px;
  }

  .giro-title h2 {
    font-size: 5.8rem;
  }

  .giro-line {
    top: 20%;
    left: 18%;
    width: 165px;
    height: 165px;
  }

  .giro-content {
    padding-top: 0;
  }

  .large-lead {
    font-size: 2.2rem;
  }

  .giro-components {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .birthdays {
    overflow: hidden;
  }

  .birthday-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 45px;
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .birthday-intro {
    padding-right: 0;
  }

  .birthday-time {
    margin-bottom: 30px;
  }

  .birthday-intro h2 {
    font-size: 3.9rem;
  }

  .birthday-details {
    order: 2;
    padding: 24px 20px;
  }

  .birthday-media {
    order: 3;
    min-height: 210px;
    max-height: 300px;
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .takeaway {
    min-height: 570px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .takeaway-copy {
    order: 1;
  }

  .takeaway-side {
    order: 2;
    max-width: 290px;
  }

  .takeaway-route {
    top: 24px;
    left: auto;
    right: 8%;
    width: 155px;
    height: 110px;
  }

  .gallery-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .gallery-header {
    display: block;
    margin-bottom: 35px;
  }

  .gallery-header p {
    margin-top: 24px;
  }

  .tmo-gallery-grid {
    width: calc(100% - 20px);
    margin-left: 20px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .tmo-gallery-item,
  .gallery-main,
  .gallery-tall,
  .gallery-small,
  .gallery-wide {
    flex: 0 0 82vw;
    height: 56vw;
    min-height: 0;
    max-height: 300px;
    margin: 0;
    scroll-snap-align: start;
  }

  .booking {
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .booking-contact {
    max-width: none;
    margin-top: 38px;
    padding-top: 28px;
    padding-left: 0;
    border-top: var(--border);
    border-left: 0;
  }

  .booking-contact .text-link {
    margin-left: 12px;
  }

  .contact {
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-info h2 {
    margin-bottom: 32px;
  }

  .map-wrap {
    min-height: 340px;
    margin-top: 50px;
  }

  .map-wrap iframe {
    height: 290px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .orbit-hero {
    clip-path: inset(0);
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}