:root {
  --ink: #142018;
  --forest: #153325;
  --forest-soft: #254b39;
  --ivory: #fbf7ec;
  --linen: #efe4d2;
  --sand: #dfd0b7;
  --gold: #b88a3a;
  --terracotta: #9f5b3a;
  --mist: #6d796f;
  --line: #d6c7ad;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  margin: 0;
}

body,
button,
input,
textarea,
a,
p,
span,
strong,
small,
h1,
h2,
h3,
summary {
  letter-spacing: 0;
}

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

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

main {
  overflow: hidden;
}

.section-inner {
  margin: 0 auto;
  max-width: 1200px;
  width: min(100% - 32px, 1200px);
}

.site-header {
  align-items: center;
  background: rgba(251, 247, 236, 0.95);
  border: 1px solid rgba(214, 199, 173, 0.72);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 50%;
  max-width: min(1200px, calc(100% - 32px));
  padding: 10px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0;
  min-width: 190px;
}

.brand-logo {
  height: 58px;
  object-fit: contain;
  object-position: left center;
  width: 190px;
}

.brand-mark {
  align-items: center;
  background: var(--forest);
  color: var(--gold);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.brand small {
  color: var(--mist);
  font-size: 0.76rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2px;
  justify-content: center;
}

.nav-links a,
.nav-cta,
.footer-cta {
  align-items: center;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--linen);
  outline: none;
}

.nav-cta,
.footer-cta {
  background: var(--forest);
  color: var(--white);
  min-width: 108px;
}

.hero {
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: 78svh;
  padding: 144px 24px 46px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 1200px;
  min-height: calc(78svh - 190px);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--terracotta);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: 6.9rem;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 820px;
}

h2 {
  font-size: 3.9rem;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.28;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  line-height: 1.72;
  max-width: 720px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button,
.text-link {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
}

.button.primary {
  background: var(--gold);
  color: #17140f;
}

.button.primary.small,
.button.ghost.small {
  font-size: 0.84rem;
  min-height: 42px;
  padding: 0 16px;
}

.button.ghost {
  border-color: var(--line);
  color: var(--forest);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button.primary.light {
  background: var(--white);
  color: var(--forest);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.room-card a:hover,
.safari-list a:hover,
.contact-actions a:hover,
.footer-columns a:hover,
.footer-cta:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.room-card a:focus-visible,
.safari-list a:focus-visible,
.contact-actions a:focus-visible,
.footer-columns a:focus-visible,
.footer-cta:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(184, 138, 58, 0.75);
  outline-offset: 3px;
}

.booking-strip {
  background: var(--forest);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1200px;
  transform: translateY(-24px);
  width: min(100% - 32px, 1200px);
}

.booking-strip a {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 24px;
}

.booking-strip a:last-child {
  border-right: 0;
}

.booking-strip span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.welcome-panel {
  padding: 46px 0 88px;
}

.welcome-grid,
.feature-layout,
.safari-layout,
.faq-layout,
.contact-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
}

.welcome-grid p:not(.eyebrow),
.center-heading p,
.split-photo p,
.faq-layout > div > p,
.contact-layout p,
.footer-top p {
  color: var(--mist);
  font-size: 1.04rem;
  line-height: 1.78;
  margin-top: 22px;
}

.stat-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 138px;
  padding: 24px;
}

.stat-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.stat-grid span {
  color: var(--mist);
  line-height: 1.55;
}

.section-block {
  background: var(--ivory);
  padding: 90px 0;
}

.center-heading {
  margin-bottom: 40px;
  max-width: 820px;
  text-align: center;
}

.center-heading p {
  margin-left: auto;
  margin-right: auto;
}

.room-showcase {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hotel-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.hotel-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.hotel-card > div {
  padding: 28px;
}

.hotel-card span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hotel-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 22px;
}

.hotel-card p {
  color: var(--mist);
  line-height: 1.68;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.room-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.room-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.room-card div {
  padding: 24px;
}

.room-card span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.room-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 22px;
}

.room-card p {
  color: var(--mist);
  line-height: 1.65;
}

.room-card a,
.text-link {
  color: var(--terracotta);
  font-weight: 900;
  padding-left: 0;
}

.feature-band {
  background: var(--forest);
  color: var(--white);
  padding: 86px 0;
}

.feature-layout {
  align-items: start;
}

.facility-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.facility-list span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  font-weight: 900;
  min-height: 74px;
  padding: 18px;
}

.split-photo {
  align-items: center;
  background: var(--linen);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.split-photo img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.split-photo div {
  max-width: 600px;
  padding: 52px 72px;
}

.inline-button {
  margin-top: 18px;
}

.conference-band {
  background: var(--ivory);
  padding: 92px 0;
}

.conference-layout {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
}

.conference-layout p {
  color: var(--mist);
  font-size: 1.04rem;
  line-height: 1.78;
  margin-top: 22px;
}

.conference-layout img {
  aspect-ratio: 16 / 10;
  border: 12px solid var(--white);
  object-fit: cover;
  width: 100%;
}

.safari-band {
  background: #15251d;
  color: var(--white);
  padding: 92px 0;
}

.safari-layout {
  align-items: center;
}

.safari-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.78;
  margin-top: 24px;
}

.safari-media {
  background: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px;
}

.safari-media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.safari-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.safari-package-card {
  background: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
}

.safari-package-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.safari-package-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.safari-package-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.safari-package-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.12;
}

.safari-package-card p {
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.58;
  margin: 0;
}

.journey-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 24px;
}

.step-card span {
  color: var(--gold);
  font-weight: 900;
}

.step-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  margin-top: 40px;
}

.step-card p {
  color: var(--mist);
  line-height: 1.6;
}

.gallery-band {
  background: var(--linen);
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
}

.gallery-copy {
  align-self: center;
  padding: 52px 64px;
}

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

.gallery-grid img {
  height: 520px;
  object-fit: cover;
  width: 100%;
}

.social-section {
  background: var(--linen);
  padding: 92px 0;
}

.instagram-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.instagram-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.instagram-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 572px;
}

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

.instagram-card::after {
  background: linear-gradient(180deg, rgba(20, 32, 24, 0), rgba(20, 32, 24, 0.82));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 35%;
}

.instagram-card span,
.instagram-card strong {
  color: var(--white);
  display: block;
  left: 22px;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.instagram-card span {
  font-size: 0.78rem;
  font-weight: 900;
  bottom: 58px;
  text-transform: uppercase;
}

.instagram-card strong {
  bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.instagram-card.featured strong {
  font-size: 2rem;
}

.clients-section {
  background: var(--ivory);
  padding: 92px 0;
}

.clients-layout {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.82fr 1.18fr;
}

.clients-layout p {
  color: var(--mist);
  max-width: 520px;
}

.client-logo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-logo-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  height: 132px;
  justify-content: center;
  padding: 24px;
}

.client-logo-card img {
  max-height: 72px;
  object-fit: contain;
  width: 100%;
}

.tripadvisor-section {
  background: var(--forest);
  color: var(--white);
  padding: 92px 0;
}

.tripadvisor-layout {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr minmax(260px, 420px);
}

.tripadvisor-section .eyebrow.dark {
  color: var(--gold);
}

.tripadvisor-layout p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.tripadvisor-widget-card {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(184, 138, 58, 0.34);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 250px;
  padding: 34px;
}

.tripadvisor-widget-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tripadvisor-widget-card li {
  align-items: center;
  display: flex;
  justify-content: center;
}

.tripadvisor-widget-card img {
  height: auto;
  max-width: 230px;
  object-fit: contain;
  width: 100%;
}

.award-photo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 38px;
}

.award-photo-card {
  border: 1px solid rgba(184, 138, 58, 0.34);
  border-radius: 8px;
  grid-column: span 2;
  margin: 0;
  min-height: 230px;
  overflow: hidden;
}

.award-photo-card.featured {
  grid-column: span 3;
  min-height: 330px;
}

.award-photo-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.faq-section {
  background: var(--ivory);
  padding: 92px 0;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  list-style: none;
  padding: 22px 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  float: right;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  border-top: 1px solid var(--line);
  color: var(--mist);
  line-height: 1.7;
  margin: 0;
  padding: 20px 24px 24px;
}

.contact-band {
  background: var(--linen);
  padding: 86px 0;
}

.contact-layout {
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-weight: 900;
  min-height: 66px;
  padding: 20px;
}

.site-footer {
  background: #101b15;
  color: rgba(255, 255, 255, 0.76);
  padding: 64px 0 28px;
}

.footer-top {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 34px;
}

.footer-brand {
  color: var(--white);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-top p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
  max-width: 640px;
}

.footer-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 36px 0;
}

.footer-columns h3 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-columns a {
  color: rgba(255, 255, 255, 0.74);
  display: table;
  font-size: 0.94rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 22px;
}

.modal {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 80;
}

.modal:target {
  display: block;
}

.modal-backdrop {
  background: rgba(12, 18, 14, 0.72);
  inset: 0;
  position: absolute;
}

.modal-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  left: 50%;
  max-height: min(88vh, 780px);
  max-width: 680px;
  overflow-y: auto;
  padding: 34px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 32px), 680px);
}

.modal-card h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.modal-close {
  color: var(--terracotta);
  float: right;
  font-weight: 900;
}

.modal-card form {
  display: grid;
  gap: 14px;
}

.modal-card label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 7px;
}

.modal-card input,
.modal-card textarea {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
}

.modal-card textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.form-view[hidden],
.form-success[hidden] {
  display: none;
}

.form-success {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 16px 0 8px;
  text-align: center;
}

.form-success-badge {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.form-success h2 {
  margin-bottom: 0;
}

.form-success p {
  color: var(--mist);
  max-width: 44ch;
}

.form-success .button {
  margin-top: 6px;
}

.form-success {
  animation: form-success-pop 0.28s ease-out both;
}

@keyframes form-success-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-success-timer {
  background: var(--line);
  border-radius: 999px;
  height: 3px;
  margin-top: 4px;
  overflow: hidden;
  width: min(220px, 80%);
}

.form-success-timer::after {
  animation: form-success-timer 2s linear forwards;
  background: var(--forest);
  content: "";
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

@keyframes form-success-timer {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.form-error {
  color: var(--terracotta);
  font-weight: 900;
  margin-top: 4px;
}

.thank-you-popup {
  align-items: center;
  background: rgba(17, 24, 39, 0.42);
  display: flex;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.22s ease;
  z-index: 100;
}

.thank-you-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.thank-you-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  color: #20201d;
  padding: 26px 24px;
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease;
  width: min(420px, 100%);
}

.thank-you-popup.is-visible .thank-you-card {
  transform: translateY(0) scale(1);
}

.thank-you-icon {
  align-items: center;
  background: #3f5f4c;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 28px;
  height: 54px;
  justify-content: center;
  line-height: 1;
  margin: 0 auto 14px;
  width: 54px;
}

.thank-you-card h2 {
  color: #20201d;
  font-family: inherit;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 8px;
}

.thank-you-card p {
  color: #5f665e;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.thank-you-progress {
  background: #e9e3d8;
  border-radius: 999px;
  height: 3px;
  margin-top: 18px;
  overflow: hidden;
}

.thank-you-progress span {
  animation: thank-you-progress 4s linear forwards;
  background: #8a5a36;
  display: block;
  height: 100%;
  transform-origin: left center;
  width: 100%;
}

@keyframes thank-you-progress {
  to {
    transform: scaleX(0);
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .booking-strip,
  .hotel-showcase,
  .room-showcase,
  .safari-list,
  .journey-grid,
  .instagram-grid,
  .client-logo-grid,
  .award-photo-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .welcome-grid,
  .feature-layout,
  .safari-layout,
  .faq-layout,
  .contact-layout,
  .conference-layout,
  .clients-layout,
  .tripadvisor-layout,
  .split-photo,
  .gallery-band {
    grid-template-columns: 1fr;
  }

  .instagram-card.featured {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 360px;
  }

  .award-photo-card,
  .award-photo-card.featured {
    grid-column: span 1;
    min-height: 280px;
  }

  .split-photo img,
  .gallery-grid img {
    min-height: 0;
    height: 360px;
  }

  .split-photo div,
  .gallery-copy {
    max-width: none;
    padding: 42px 32px;
  }
}

@media (max-width: 680px) {
  .site-header {
    max-width: calc(100% - 20px);
    top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 44px;
    width: 144px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-width: 90px;
    padding: 0 10px;
  }

  .hero {
    min-height: 76svh;
    padding: 116px 16px 36px;
  }

  .hero-inner {
    min-height: calc(76svh - 152px);
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .booking-strip,
  .hotel-showcase,
  .room-showcase,
  .stat-grid,
  .facility-list,
  .safari-list,
  .journey-grid,
  .instagram-grid,
  .client-logo-grid,
  .award-photo-grid,
  .footer-columns,
  .gallery-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .booking-strip {
    transform: none;
    width: 100%;
  }

  .booking-strip a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    min-height: 90px;
  }

  .section-block,
  .feature-band,
  .conference-band,
  .safari-band,
  .social-section,
  .clients-section,
  .tripadvisor-section,
  .faq-section,
  .contact-band {
    padding: 66px 0;
  }

  .instagram-card,
  .instagram-card.featured {
    min-height: 330px;
  }

  .client-logo-card {
    height: 116px;
  }

  .tripadvisor-widget-card {
    min-height: 220px;
    padding: 26px;
  }

  .award-photo-card,
  .award-photo-card.featured {
    min-height: 250px;
  }

  .modal-card {
    padding: 24px;
  }

  .modal-card h2 {
    font-size: 2rem;
  }

  .gallery-grid img {
    height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
