/* =========================================================
   3 Meowsketeers - landing site
   Palette: cream / beige / brown / terracotta (logo accent)
   ========================================================= */

:root {
  /* Palette */
  --cream:        #FBF6EE;
  --cream-warm:   #F5ECDD;
  --beige:        #EBDCC4;
  --beige-soft:   #F0E4D0;
  --beige-line:   #E5D4B8;
  --terracotta:   #C97B5A;   /* logo */
  --terracotta-d: #A85F42;
  --peach:        #E8A878;
  --rose-clay:    #C98A7B;
  --sand:         #D9B98A;
  --cocoa:        #A87E5A;
  --brown-1:      #3D2B1F;
  --brown-2:      #5C3D2E;
  --brown-3:      #7A5230;
  --brown-soft:   #9A7E60;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container:   1140px;
  --gap:         24px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(61,43,31,0.06);
  --shadow-md: 0 6px 20px rgba(61,43,31,0.08);
  --shadow-lg: 0 20px 50px rgba(61,43,31,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-1);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--terracotta-d);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--brown-1); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brown-1);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .4em 0;
}

h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; font-weight: 700; }

p { margin: 0 0 1em 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta-d);
  margin: 0 0 12px 0;
}

.muted { color: var(--brown-soft); }
.accent { color: var(--terracotta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--terracotta-d);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--brown-1);
  border-color: var(--beige-line);
}
.btn-ghost:hover {
  background: var(--cream-warm);
  border-color: var(--brown-3);
  color: var(--brown-1);
}

/* ---------- Header (with gradual / progressive blur) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* No background or backdrop-filter here - the ::before layer handles it
     so the blur can fade out smoothly below the visible bar. */
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 -80px 0;        /* extend 80px below the bar so blur fades out */
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(251, 246, 238, 0.92) 0%,
    rgba(251, 246, 238, 0.65) 55%,
    rgba(251, 246, 238, 0)   100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  /* Mask makes both the tint AND the backdrop-filter fade, giving
     the gradual / progressive blur effect (iOS-style). */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 45%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 45%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown-1);
  font-family: var(--font-display);
  font-weight: 800;
}
.brand:hover { color: var(--brown-1); }
.brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta-d);
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--brown-2);
  font-weight: 500;
  font-size: 15px;
}
.nav a:hover { color: var(--terracotta-d); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-login {
  color: var(--brown-2);
  font-weight: 600;
  font-size: 15px;
}
.nav-login:hover { color: var(--terracotta-d); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  margin: 8px 0 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--brown-2);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-note {
  font-size: 13px;
  color: var(--brown-soft);
  margin: 0;
}

/* Decorative paw prints */
.paw-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.paw {
  position: absolute;
  font-size: 32px;
  opacity: 0.15;
  filter: sepia(0.3);
}
.paw-1 { top: 12%;  left: 6%;   font-size: 28px; transform: rotate(-15deg); }
.paw-2 { top: 22%;  right: 8%;  font-size: 38px; transform: rotate(20deg); }
.paw-3 { bottom: 18%; left: 14%; font-size: 24px; transform: rotate(35deg); }
.paw-4 { bottom: 10%; right: 18%; font-size: 30px; transform: rotate(-25deg); }
.paw-5 { top: 50%;  left: 3%;   font-size: 22px; transform: rotate(10deg); opacity: 0.1; }
.paw-6 { top: 60%;  right: 4%;  font-size: 26px; transform: rotate(-40deg); opacity: 0.12; }

/* ---------- Pet showcase ---------- */
.pets {
  padding: 40px 0 80px;
  background: var(--cream-warm);
}
.pet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.pet-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 50% / 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--brown-1);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pet-cat    { background: var(--rose-clay); }
.pet-dog    { background: var(--sand); }
.pet-exotic { background: var(--cocoa); color: #fff; }
.pet-exotic h3 { color: #fff; }

.pet-emoji {
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 6px rgba(61,43,31,0.15));
}
.pet-card h3 {
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.01em;
}
.pets-caption {
  text-align: center;
  font-size: 15px;
  color: var(--brown-2);
  font-style: italic;
  margin: 0;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head h2 { margin-bottom: 12px; }
.section-sub {
  font-size: 17px;
  color: var(--brown-2);
  margin: 0;
}

/* ---------- Why Choose Us ---------- */
.why {
  padding: 96px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--beige-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}
.why-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.why-card h3 { margin-bottom: 6px; }
.why-card p { margin: 0; color: var(--brown-2); font-size: 15px; }

/* ---------- Services ---------- */
.services {
  padding: 96px 0;
  background: var(--beige-soft);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--beige-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card h3 { margin-bottom: 4px; }
.service-card p { color: var(--brown-2); font-size: 15px; margin: 0; }
.service-card .price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--beige-line);
  font-size: 14px;
  color: var(--brown-3);
}
.service-card .price strong {
  color: var(--brown-1);
  font-size: 17px;
  font-family: var(--font-display);
}
.service-meta {
  color: var(--brown-3) !important;
  font-size: 13.5px !important;
  line-height: 1.55;
  font-style: italic;
}
.service-card.is-featured {
  position: relative;
  background: #fff;
  border-color: var(--terracotta);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.service-card.is-featured .price strong {
  color: var(--terracotta-d);
  font-size: 22px;
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.services-note {
  text-align: center;
  font-size: 14px;
  color: var(--brown-3);
  font-style: italic;
  margin: 0;
}

/* ---------- Team ---------- */
.team { padding: 96px 0; background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--beige-line);
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.team-avatar::before { content: attr(data-letter); }
.team-card:nth-child(2) .team-avatar { background: var(--cocoa); }
.team-card:nth-child(3) .team-avatar { background: var(--rose-clay); }
.team-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta-d);
  font-weight: 600;
  margin: 0 0 12px 0;
}
.team-card p:last-child {
  font-size: 15px;
  color: var(--brown-2);
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; background: var(--cream-warm); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: var(--cream);
  border: 1px solid var(--beige-line);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq details[open] {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--brown-1);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--terracotta);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--brown-2);
  font-size: 15px;
}

/* ---------- Book / CTA band ---------- */
.book {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-d) 100%);
  color: #fff;
  text-align: center;
}
.book h2 { color: #fff; margin-bottom: 12px; }
.book p { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 580px; margin: 0 auto 28px; }
.book-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.book .btn-primary {
  background: #fff;
  color: var(--terracotta-d);
}
.book .btn-primary:hover {
  background: var(--cream);
  color: var(--brown-1);
}
.book .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.book .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.book-note {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-1);
  color: var(--cream-warm);
  padding: 48px 0 36px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin: 0;
}
.footer-tagline {
  font-size: 13px;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin: 4px 0 0;
}
.footer-meta {
  text-align: right;
  font-size: 14px;
  color: rgba(245, 236, 221, 0.75);
}
.footer-meta p { margin: 0 0 4px; }
.footer-meta .muted {
  color: rgba(245, 236, 221, 0.45);
  font-size: 12px;
  margin-top: 8px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 14px; }
  .why-grid,
  .service-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pet-row { gap: 14px; }
}

/* ---------- Booking Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 31, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  transform: translateY(12px) scale(0.98);
  transition: transform .3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.modal.is-open .modal-card { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--beige-soft);
  color: var(--brown-1);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.modal-close:hover { background: var(--beige); transform: rotate(90deg); }

.modal-head {
  text-align: center;
  margin-bottom: 24px;
}
.modal-head h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.modal-sub {
  color: var(--brown-2);
  font-size: 15px;
  margin: 0;
}

/* ---- Form ---- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-2);
  letter-spacing: 0.02em;
}
.form-row input[type="text"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--beige-line);
  background: #fff;
  color: var(--brown-1);
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201, 123, 90, 0.15);
}
.form-row textarea { resize: vertical; min-height: 70px; }
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A5230' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Time slots ---- */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot-grid.shake { animation: shake .4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.slot {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--beige-line);
  background: #fff;
  color: var(--brown-2);
  cursor: pointer;
  transition: all .15s ease;
}
.slot:hover {
  border-color: var(--terracotta);
  color: var(--brown-1);
}
.slot.is-selected {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.btn-block { width: 100%; margin-top: 8px; }
.form-note {
  font-size: 12px;
  color: var(--brown-soft);
  text-align: center;
  margin: 8px 0 0;
  font-style: italic;
}

/* ---- Success view ---- */
.modal-success {
  text-align: center;
  padding: 16px 0;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}
.modal-success h2 { margin-bottom: 8px; }
.modal-success .small { font-size: 13px; margin-bottom: 24px; }
.modal-success .btn { margin-top: 8px; }

/* ---- Login modal extras ---- */
.modal-card-narrow { width: min(440px, 92vw); }

.login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 4px 0 4px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brown-2);
  font-weight: 500;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--terracotta);
  cursor: pointer;
}
.login-forgot {
  color: var(--terracotta-d);
  font-weight: 600;
}
.login-forgot:hover { color: var(--brown-1); }

.login-signup {
  text-align: center;
  font-size: 14px;
  color: var(--brown-2);
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--beige-line);
}
.login-signup a {
  font-weight: 600;
  color: var(--terracotta-d);
}
.login-signup a:hover { color: var(--brown-1); }

/* ---------- Responsive ---------- */
@media (max-width: 620px) {
  .brand-name { display: none; }
  .brand-mark { width: 52px; height: 52px; }
  .nav-actions { gap: 12px; }
  .nav-login { font-size: 14px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .hero-logo { width: 88px; height: 88px; }
  .hero { padding: 56px 0 48px; }
  .modal-card { padding: 28px 20px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .pet-row { grid-template-columns: 1fr; gap: 18px; max-width: 320px; margin: 0 auto 28px; }
  .pet-card { aspect-ratio: 4/3; }
  .why-grid,
  .service-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .book-cta { flex-direction: column; align-items: stretch; }
  .book-cta .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
