:root {
  --page-background: #c7b299;
  --white: #ffffff;
  --text: #555555;
  --dark-text: #333333;
  --muted: #707070;
  --brown: #734203;
  --link: #661f03;
  --menu-brown: #783a17;
  --olive: #a6ad08;
  --sand: #c3b39c;
  --line: #d9d9d9;
  --footer: #734203;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--page-background);
  color: var(--dark-text);
  font-family: Verdana, Tahoma, Helvetica, sans-serif;
  font-size: 14px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:hover,
a:focus-visible {
  color: var(--olive);
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(166, 173, 8, 0.55);
  outline-offset: 3px;
}

ul {
  margin: 0;
  padding: 0;
}

.site-shell {
  width: min(100%, 949px);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.14);
}

/* Main navigation */

.site-header {
  position: relative;
}

.menu-toggle {
  display: none;
}

.main-navigation {
  position: relative;
  z-index: 100;
  background: var(--menu-brown);
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  list-style: none;
  background: var(--menu-brown);
}

.navItem {
  position: relative;
  flex: 1 1 auto;
}

.menu {
  display: flex;
  min-height: 42px;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.menu:hover,
.menu:focus-visible {
  color: var(--olive);
  text-decoration: none;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  width: max-content;
  min-width: 220px;
  max-width: 300px;
  padding: 8px;
  border-radius: 0 0 5px 5px;
  background: rgba(166, 173, 8, 0.96);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ddMenu {
  display: block;
  padding: 9px 12px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
}

.ddMenu:hover,
.ddMenu:focus-visible {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  color: #321c05;
  text-decoration: none;
}

.availability-link {
  border-radius: 5px;
  background: rgba(124, 124, 14, 0.82);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: #4e3a2c;
}

.hero > img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.06) 38%,
      rgba(0, 0, 0, 0.18)
    );
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 23%;
  left: 50%;
  width: min(90%, 760px);
  transform: translateX(-50%);
  color: #ffffff;
  text-align: center;
}

.hero-brand {
  margin-bottom: 16px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 300;
  letter-spacing: 5px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.38);
}

.hero-title {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.35;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.38);
}

/* Home page hero */

.home-page .hero-copy {
  top: auto;
  bottom: 14%;
}

.home-page .hero::after {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.42)
    );
}

.home-page .hero-brand,
.home-page .hero-title {
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.78),
    0 0 14px rgba(0, 0, 0, 0.38);
}

/* Main content */

.site-main {
  padding: 26px 0 58px;
}

.content-copy {
  width: min(calc(100% - 48px), 660px);
  margin: 0 auto;
  padding: 12px 0 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
  text-align: left;
}

.content-copy p {
  margin: 0 0 22px;
  font-size: inherit;
  font-weight: 300;
  line-height: inherit;
}

.intro-section {
  padding-top: 4px;
}

.page-title {
  margin: 8px 0 18px;
  color: #6d6d6d;
  font-family: 'Lato', Arial, sans-serif;
  font-size: clamp(26px, 4vw, 30px);
  font-weight: 300;
  letter-spacing: 6px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 14px auto 25px;
  color: var(--muted);
  font-family: 'Lato', Arial, sans-serif;
  font-size: clamp(19px, 3vw, 22px);
  font-weight: 300;
  letter-spacing: 3.5px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.step-heading {
  margin: 36px auto 24px;
  color: #6d6d6d;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.section-subheading {
  margin: 30px auto 20px;
  color: #6d6d6d;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.section-divider {
  width: min(80%, 680px);
  margin: 24px auto 30px;
  border: 0;
  border-top: 1px solid var(--line);
}

/* Buttons */

.button-row {
  margin: 27px 0 8px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2c7b8;
  border-radius: 5px;
  background: #ded6ca;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  color: #7a7a7a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  border-color: #b9aa96;
  background: #d6ccbe;
  color: #5f5f5f;
  text-decoration: none;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 10px;
}

.button-grid .button {
  width: 100%;
}

/* Testimonials */

.customer-review {
  width: min(100%, 680px);
  margin: 30px auto;
  padding: 0 20px;
  color: #666666;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
}

.customer-review cite,
.review-intro {
  display: block;
  margin-top: 8px;
  color: #777777;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.review-intro {
  margin: 0 0 8px;
  font-weight: 400;
}

/* Content images */

.content-image-block {
  width: min(calc(100% - 48px), 500px);
  margin: 22px auto 46px;
  text-align: center;
}

.content-image-block.content-image-wide {
  width: min(calc(100% - 48px), 680px);
}

.content-image-block.content-image-medium {
  width: min(calc(100% - 48px), 420px);
}

.content-image-block.content-image-narrow {
  width: min(calc(100% - 48px), 220px);
}

.content-image-block img {
  width: 100%;
  margin: 0 auto;
}

.content-image-caption {
  margin-top: 9px;
  color: #666666;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

/* Yurt size diagrams */

.size-diagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: min(calc(100% - 48px), 620px);
  margin: 12px auto 48px;
  align-items: center;
  justify-items: center;
}

.size-diagram {
  width: 100%;
  margin: 0;
  text-align: center;
}

.size-diagram img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 280px;
  margin: 0 auto;
}

/* Feature images */

.feature-image {
  position: relative;
  width: min(calc(100% - 48px), 760px);
  margin: 36px auto 48px;
  overflow: hidden;
  border-radius: 5px;
}

.feature-image img {
  width: 100%;
  border-radius: 5px;
}

.imgBorder {
  border: 1px solid var(--olive);
  border-radius: 5px;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.feature-image-action {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.button-3 {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ece2d4;
  border-radius: 5px;
  background: rgba(203, 145, 51, 0.93);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button-3:hover,
.button-3:focus-visible {
  border-color: #797876;
  color: #f3f0eb;
  text-decoration: none;
}

/* Feature list */

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
}

.final-section {
  padding-bottom: 4px;
}

/* Size links */

.size-links-intro {
  margin: 34px 0 18px !important;
  text-align: center;
}

.size-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 24px;
}

.size-links-grid a {
  display: block;
  padding: 12px 14px;
  border: 1px solid #ded6ca;
  border-radius: 5px;
  background: #f7f5f1;
  color: #6f6255;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.size-links-grid a:hover,
.size-links-grid a:focus-visible {
  border-color: #b9aa96;
  background: #eee9e2;
  color: #661f03;
  text-decoration: none;
}

.size-links-grid span {
  display: block;
  margin-top: 2px;
  color: #85817c;
  font-size: 12px;
  font-weight: 400;
}

/* Responsive data tables */

.yurt-size-table-wrap {
  width: min(calc(100% - 48px), 760px);
  margin: 10px auto 42px;
  overflow-x: auto;
  border: 1px solid #d8d0c5;
  border-radius: 6px;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}

.yurt-size-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border-spacing: 0;
  background: #ffffff;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.45;
}

.yurt-size-table th,
.yurt-size-table td {
  padding: 13px 16px;
  border-right: 1px solid #d8d0c5;
  border-bottom: 1px solid #d8d0c5;
  text-align: left;
  vertical-align: middle;
}

.yurt-size-table th:last-child,
.yurt-size-table td:last-child {
  border-right: 0;
}

.yurt-size-table tbody tr:last-child td {
  border-bottom: 0;
}

.yurt-size-table th {
  background: #ded6ca;
  color: #655b50;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.yurt-size-table tbody tr:nth-child(even) {
  background: #f7f5f1;
}

.yurt-size-table tbody tr:hover {
  background: #eee9e2;
}

.yurt-size-table td:nth-child(2),
.yurt-size-table td:nth-child(3),
.yurt-size-table th:nth-child(2),
.yurt-size-table th:nth-child(3) {
  text-align: center;
}

.yurt-size-table a {
  font-weight: 700;
  text-decoration: none;
}

.yurt-size-table a:hover,
.yurt-size-table a:focus-visible {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 28px 28px 22px;
  background: var(--footer);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.FooterNav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.FooterNav li {
  margin-bottom: 7px;
}

.FooterNav a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
}

.FooterNav a:hover,
.FooterNav a:focus-visible {
  color: #ded7b4;
  text-decoration: underline;
}

.footer-column-right {
  text-align: right;
}

.footer-centre {
  text-align: center;
}

.footer-logo {
  width: auto;
  height: 120px;
  margin: 0 auto 14px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.social-links a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.social-links svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.8;
}

/* WhatsApp */

.floating-whatsapp {
  position: fixed;
  z-index: 999;
  right: max(18px, calc((100vw - 949px) / 2 + 18px));
  bottom: 24px;
  padding: 12px 20px;
  border-radius: 40px;
  background: #25d366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1ebe5d;
  color: #ffffff;
  text-decoration: none;
}

/* Cookie banner */

.cookie-banner,
.cookie-settings {
  position: fixed;
  z-index: 1000;
  left: 50%;
  width: min(calc(100% - 32px), 760px);
  transform: translateX(-50%);
  border: 2px solid #b59a76;
  border-radius: 8px;
  background: #ded7b4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  color: #5c3b1e;
  text-align: center;
}

.cookie-banner {
  top: 18px;
  padding: 28px;
}

.cookie-banner p,
.cookie-settings p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cookie-banner button,
.cookie-settings button,
.cookie-policy-link {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: #5c3b1e;
  color: #ffffff;
  cursor: pointer;
  font: 700 14px/1.2 Verdana, Tahoma, sans-serif;
  text-decoration: none;
}

.cookie-banner button:hover,
.cookie-settings button:hover,
.cookie-policy-link:hover {
  background: #8a6343;
  color: #ffffff;
  text-decoration: none;
}

.cookie-settings {
  bottom: 20px;
  padding: 28px;
}

.cookie-settings label {
  display: block;
  margin: 10px 0;
  text-align: left;
}

.hidden {
  display: none;
}

/* Tablet */

@media screen and (max-width: 820px) {

  .menu-toggle {
    display: flex;
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: var(--menu-brown);
    color: #ffffff;
    cursor: pointer;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-icon::before {
    top: -7px;
  }

  .menu-toggle-icon::after {
    top: 7px;
  }

  .main-navigation {
    display: none;
  }

  .main-navigation.is-open {
    display: block;
  }

  .nav {
    display: block;
  }

  .navItem {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .menu {
    justify-content: flex-start;
    padding: 12px 18px;
    text-align: left;
  }

  .dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0 0 8px 18px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.13);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .ddMenu {
    padding: 9px 18px;
    font-size: 13px;
  }

  .hero-copy {
    top: 20%;
  }

  .home-page .hero-copy {
    top: auto;
    bottom: 12%;
  }

  .button-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-column,
  .footer-column-right {
    text-align: center;
  }

  .footer-centre {
    order: -1;
  }

}

/* Mobile */

@media screen and (max-width: 600px) {

  body {
    background: #ffffff;
  }

  .site-shell {
    width: 100%;
    box-shadow: none;
  }

  .hero,
  .hero > img {
    min-height: 285px;
    height: 285px;
  }

  .hero > img {
    object-position: 58% center;
  }

  .hero-copy {
    top: 20%;
    width: calc(100% - 30px);
  }

  .home-page .hero-copy {
    top: auto;
    bottom: 10%;
  }

  .hero-brand {
    font-size: 22px;
    letter-spacing: 3.5px;
  }

  .hero-title {
    font-size: 19px;
    letter-spacing: 1.2px;
  }

  .site-main {
    padding-top: 18px;
  }

  .content-copy {
    width: calc(100% - 32px);
    padding: 10px 0 18px;
    font-size: 15px;
    line-height: 1.68;
  }

  .page-title {
    font-size: 25px;
    letter-spacing: 4px;
  }

  .section-subtitle {
    font-size: 18px;
    letter-spacing: 2.4px;
    line-height: 1.45;
  }

  .step-heading {
    margin: 30px auto 20px;
    font-size: 18px;
    letter-spacing: 2.4px;
    line-height: 1.45;
  }

  .section-subheading {
    margin: 26px auto 18px;
    font-size: 17px;
    letter-spacing: 2.2px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button-row .button {
    width: 100%;
    margin: 0;
  }

  .customer-review {
    margin: 24px auto;
    padding: 0 6px;
    font-size: 15px;
  }

  .content-image-block,
  .content-image-block.content-image-wide {
    width: calc(100% - 24px);
    margin: 18px auto 34px;
  }

  .content-image-block.content-image-medium {
    width: calc(100% - 48px);
    max-width: 420px;
  }

  .content-image-block.content-image-narrow {
    width: min(calc(100% - 80px), 220px);
  }

  .content-image-caption {
    padding: 0 10px;
    font-size: 12px;
  }

  .size-diagram-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    width: calc(100% - 48px);
    margin: 12px auto 38px;
  }

  .size-diagram img {
    max-height: 260px;
  }

  .feature-image {
    width: calc(100% - 24px);
    margin: 28px auto 38px;
  }

  .button-3 {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 19px;
    letter-spacing: 1.5px;
  }

  .size-links-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .yurt-size-table-wrap {
    width: calc(100% - 30px);
    margin: 25px auto 40px;
  }

  .yurt-size-table:not(.frame-comparison-table) {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    font-size: 15px;
  }

  .yurt-size-table:not(.frame-comparison-table) thead {
    display: none;
  }

  .yurt-size-table:not(.frame-comparison-table) tbody {
    display: grid;
    width: 100%;
    gap: 18px;
  }

  .yurt-size-table:not(.frame-comparison-table) tr {
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid #d2c8bb;
    border-radius: 8px;
    background: #ffffff;
  }

  .yurt-size-table:not(.frame-comparison-table) td {
    display: flex;
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    border-bottom: 1px solid #ded7ce;
    background: #ffffff !important;
    text-align: right;
    white-space: normal;
  }

  .yurt-size-table:not(.frame-comparison-table) td:last-child {
    border-bottom: 0;
  }

  .yurt-size-table:not(.frame-comparison-table) td:first-child {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 14px;
    border: 0;
    border-bottom: 1px solid #c9beaf;
    background: #ddd5ca !important;
    text-align: center;
  }

  .yurt-size-table:not(.frame-comparison-table) td:first-child::before {
    display: none;
    content: none;
  }

  .yurt-size-table:not(.frame-comparison-table) td:first-child a {
    display: block;
    color: #6f2e08;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
  }

  .yurt-size-table:not(.frame-comparison-table) td::before {
    flex: 0 0 48%;
    color: #625c53;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
  }

  .yurt-size-table:not(.frame-comparison-table) td:nth-child(2)::before {
    content: "Yurt height";
  }

  .yurt-size-table:not(.frame-comparison-table) td:nth-child(3)::before {
    content: "Wall height";
  }

  .yurt-size-table:not(.frame-comparison-table) td:nth-child(4)::before {
    content: "Floor area";
  }

  .yurt-size-table:not(.frame-comparison-table) td:nth-child(5)::before {
    content: "Approx. seats";
  }

  .yurt-size-table:not(.frame-comparison-table) td:nth-child(6)::before {
    content: "Approx. sleeps";
  }

  .site-footer {
    padding: 26px 20px 90px;
  }

  .footer-logo {
    height: 105px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .cookie-banner {
    top: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    padding: 20px 16px;
    overflow-y: auto;
  }

  .cookie-banner p,
  .cookie-settings p {
    font-size: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cookie-banner button,
  .cookie-settings button,
  .cookie-policy-link {
    width: 100%;
  }

  .cookie-settings {
    width: calc(100% - 20px);
    bottom: 10px;
    padding: 20px 16px;
  }

}

@media (prefers-reduced-motion: reduce) {

  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

}

/* Frame comparison table */

.frame-comparison-table {
  min-width: 0;
  table-layout: fixed;
}

.frame-comparison-table th,
.frame-comparison-table td {
  overflow-wrap: anywhere;
}

.frame-comparison-table th:nth-child(1),
.frame-comparison-table td:nth-child(1) {
  width: 23%;
  text-align: left;
}

.frame-comparison-table th:nth-child(2),
.frame-comparison-table td:nth-child(2) {
  width: 22%;
  text-align: center;
}

.frame-comparison-table th:nth-child(3),
.frame-comparison-table td:nth-child(3) {
  width: 22%;
  text-align: center;
}

.frame-comparison-table th:nth-child(4),
.frame-comparison-table td:nth-child(4) {
  width: 33%;
  text-align: left;
}

@media screen and (max-width: 600px) {

  .frame-comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 12px;
  }

  .frame-comparison-table th,
  .frame-comparison-table td {
    padding: 10px 7px;
    line-height: 1.4;
    white-space: normal;
  }

}

/* Yurt availability labels */

.availability-date {
  width: fit-content;
  margin: -10px auto 24px;
  padding: 7px 16px;
  border: 1px solid #b9aa96;
  border-radius: 20px;
  background: #eee9e2;
  color: #6f6255;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.availability-sold {
  border-color: #c9c9c9;
  background: #eeeeee;
  color: #777777;
}

@media screen and (max-width: 600px) {

  .availability-date {
    margin: -8px auto 22px;
    padding: 7px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }

}