:root {
  --tcsls-accent: #ff5a2c;
  --tcsls-dark: #2d3134;
  --tcsls-form-dark: #171a1b;
  --tcsls-form-input: #3b3d3e;
  --tcsls-ink: #25292c;
  --tcsls-muted: #6f777c;
  --tcsls-soft: #f4f4f2;
  --tcsls-line: #e7e7e5;
  --tcsls-white: #ffffff;
}

.tcsls-single,
.tcsls-single *,
.tcsls-archive,
.tcsls-archive * { box-sizing: border-box; }

.tcsls-shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

/* Archive tabs */
.tcsls-archive { width: 100%; }
.tcsls-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}
.tcsls-tab {
  min-height: 44px;
  padding: 9px 20px;
  border: 1px solid #d8dadb;
  border-radius: 999px;
  background: #fff;
  color: #2d3134;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.tcsls-tab:hover { transform: translateY(-1px); border-color: var(--tcsls-accent); color: var(--tcsls-accent); }
.tcsls-tab.is-active { background: var(--tcsls-accent); border-color: var(--tcsls-accent); color: #fff; }
.tcsls-filter-empty { margin: 24px 0 0; color: var(--tcsls-muted); }

/* Archive cards */
.tcsls-grid { display: grid; gap: 34px; width: 100%; }
.tcsls-grid.tcsls-cols-1 { grid-template-columns: 1fr; }
.tcsls-grid.tcsls-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tcsls-grid.tcsls-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tcsls-grid.tcsls-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tcsls-card { min-width: 0; margin: 0; }
.tcsls-card[hidden] { display: none !important; }
.tcsls-card-link {
  position: relative;
  display: block;
  min-height: 540px;
  overflow: hidden;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), calc(100% - 42px) 100%, 0 100%);
  background: #303437;
  color: #fff !important;
  text-decoration: none !important;
  isolation: isolate;
}
.tcsls-card-image,
.tcsls-card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.tcsls-card-placeholder { background: linear-gradient(145deg, #394046, #202427); }
.tcsls-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(17,20,22,.16) 20%, rgba(17,20,22,.28) 48%, rgba(17,20,22,.82) 100%);
  transition: background .35s ease;
}
.tcsls-card-arrow {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--tcsls-accent);
  font-size: 31px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.tcsls-card-arrow span { transform: translateY(-2px); }
.tcsls-card-copy { position: absolute; z-index: 3; left: 30px; right: 30px; bottom: 30px; display: block; }
.tcsls-card-title {
  display: block;
  font-size: clamp(26px, 2.1vw, 35px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -.035em;
  color: #fff;
}
.tcsls-card-description {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  margin-top: 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.55;
  transition: max-height .4s ease, opacity .3s ease, transform .35s ease, margin-top .35s ease;
}
.tcsls-card-link:hover .tcsls-card-image,
.tcsls-card-link:focus-visible .tcsls-card-image { transform: scale(1.045); }
.tcsls-card-link:hover .tcsls-card-shade,
.tcsls-card-link:focus-visible .tcsls-card-shade { background: linear-gradient(to bottom, rgba(17,20,22,.22) 15%, rgba(17,20,22,.38) 45%, rgba(17,20,22,.92) 100%); }
.tcsls-card-link:hover .tcsls-card-arrow,
.tcsls-card-link:focus-visible .tcsls-card-arrow { transform: translateX(4px); background: var(--tcsls-accent); color: #fff; }
.tcsls-card-link:hover .tcsls-card-description,
.tcsls-card-link:focus-visible .tcsls-card-description { max-height: 130px; opacity: 1; transform: translateY(0); margin-top: 13px; }
.tcsls-empty { margin: 0; color: var(--tcsls-muted); }

/* Single hero */
.tcsls-hero { position: relative; overflow: hidden; background: var(--tcsls-dark); color: #fff; padding: 82px 0 94px; }
.tcsls-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012);
  pointer-events: none;
}
.tcsls-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); align-items: center; gap: clamp(52px, 8vw, 120px); }
.tcsls-eyebrow,
.tcsls-section-kicker { display: inline-block; margin-bottom: 14px; color: var(--tcsls-accent); font-size: 12px; line-height: 1; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.tcsls-hero-copy h1 { margin: 0; max-width: 620px; color: #fff; font-size: clamp(44px, 5.2vw, 78px); line-height: .98; letter-spacing: -.052em; text-transform: uppercase; font-weight: 600; }
.tcsls-hero-copy p { max-width: 560px; margin: 28px 0 0; color: #d6dade; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; }
.tcsls-hero-media { position: relative; min-height: 465px; overflow: hidden; border-radius: 12px; clip-path: polygon(0 0, 100% 0, 100% 100%, 58px 100%, 0 calc(100% - 58px)); }
.tcsls-hero-media img,
.tcsls-hero-placeholder { width: 100%; height: 100%; min-height: 465px; display: block; object-fit: cover; }
.tcsls-hero-placeholder { background: linear-gradient(145deg, #464d52, #23272a); }

/* Single content and sidebar */
.tcsls-content-section { position: relative; background: var(--tcsls-soft); padding: 82px 0 60px; }
.tcsls-content-section::before { content: ''; position: absolute; top: -1px; left: 0; width: 44%; height: 28px; background: var(--tcsls-dark); clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%); }
.tcsls-content-layout { display: grid; grid-template-columns: 305px minmax(0, 1fr); gap: clamp(44px, 6vw, 82px); align-items: start; }
.tcsls-sidebar { position: static; }
.tcsls-service-menu { padding: 27px 22px; border-radius: 10px; background: var(--tcsls-accent); color: #fff; }
.tcsls-menu-category { display: block; margin: 0 0 7px; color: rgba(255,255,255,.78); font-size: 10px; line-height: 1.4; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tcsls-service-menu h3 { margin: 0 0 16px; color: #fff; font-size: 23px; line-height: 1.2; font-weight: 700; }
.tcsls-service-menu ul { list-style: none; margin: 0; padding: 0; }
.tcsls-service-menu li { margin: 0; padding: 0; }
.tcsls-service-menu a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 6px; border-bottom: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.94) !important; text-decoration: none !important; font-size: 14px; line-height: 1.35; transition: padding .25s ease, background .25s ease; }
.tcsls-service-menu li:last-child a { border-bottom: 0; }
.tcsls-service-menu a:hover,
.tcsls-service-menu li.is-current a { padding-left: 11px; padding-right: 11px; background: rgba(255,255,255,.13); border-radius: 6px; }
.tcsls-menu-chev { font-size: 19px; line-height: 1; flex: 0 0 auto; }

.tcsls-main-content { min-width: 0; }
.tcsls-about-block,
.tcsls-faq-section { margin-bottom: 56px; }
.tcsls-main-content h2 { margin: 0 0 22px; color: var(--tcsls-ink); font-size: clamp(34px, 3.1vw, 50px); line-height: 1.08; letter-spacing: -.035em; font-weight: 600; }
.tcsls-entry-content { color: #667075; font-size: 16px; line-height: 1.8; }
.tcsls-entry-content > *:first-child { margin-top: 0; }
.tcsls-entry-content > *:last-child { margin-bottom: 0; }
.tcsls-entry-content h3,
.tcsls-entry-content h4 { color: var(--tcsls-ink); }
.tcsls-entry-content ul,
.tcsls-entry-content ol { padding-left: 1.25em; }
.tcsls-entry-content a { color: var(--tcsls-accent); }

/* FAQs */
.tcsls-accordion { display: grid; gap: 10px; }
.tcsls-faq-item { overflow: hidden; border: 1px solid #ebecea; border-radius: 9px; background: #fff; }
.tcsls-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 22px; border: 0; background: transparent; color: var(--tcsls-ink); text-align: left; font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; }
.tcsls-faq-icon { position: relative; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; border: 1px solid #e2e4e4; transition: background .2s ease, border-color .2s ease; }
.tcsls-faq-icon::before,
.tcsls-faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 9px; height: 1.5px; background: #5d6569; transform: translate(-50%, -50%); transition: transform .2s ease, background .2s ease; }
.tcsls-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.tcsls-faq-item.is-open .tcsls-faq-icon { background: var(--tcsls-accent); border-color: var(--tcsls-accent); }
.tcsls-faq-item.is-open .tcsls-faq-icon::before,
.tcsls-faq-item.is-open .tcsls-faq-icon::after { background: #fff; }
.tcsls-faq-item.is-open .tcsls-faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.tcsls-faq-answer { border-top: 1px solid #f0f0ee; padding: 0 22px 20px; color: #687176; font-size: 14px; line-height: 1.7; }
.tcsls-faq-answer[hidden] { display: none !important; }
.tcsls-faq-answer > div { padding-top: 17px; }
.tcsls-faq-answer p:first-child { margin-top: 0; }
.tcsls-faq-answer p:last-child { margin-bottom: 0; }

/* Compact sidebar booking/request form */
.tcsls-lead-form-section {
  margin-top: 22px;
  padding: 22px 20px;
  border: 1px solid #e6e7e5;
  border-radius: 10px;
  background: #fff;
  color: var(--tcsls-ink);
  box-shadow: 0 8px 28px rgba(26,31,34,.05);
}
.tcsls-form-heading-row { margin: 0 0 18px; }
.tcsls-form-kicker {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--tcsls-accent);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tcsls-lead-form-section .tcsls-form-heading-row h3 {
  margin: 0 0 7px;
  color: var(--tcsls-ink);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}
.tcsls-form-heading-row p {
  margin: 0;
  color: #747c80;
  font-size: 12px;
  line-height: 1.55;
}
.tcsls-form-service-chip {
  margin-top: 13px;
  padding: 10px 11px;
  border: 1px solid #ffe0d7;
  border-radius: 7px;
  background: #fff7f4;
}
.tcsls-form-service-chip span {
  display: block;
  margin-bottom: 3px;
  color: #a06b5d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tcsls-form-service-chip strong {
  display: block;
  color: #383d40;
  font-size: 12px;
  line-height: 1.4;
}
.tcsls-booking-form { position: relative; }
.tcsls-form-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.tcsls-field { display: block; min-width: 0; margin: 0; }
.tcsls-field.tcsls-span-2 { grid-column: auto; }
.tcsls-field > span {
  display: block;
  margin-bottom: 5px;
  color: #353a3d;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}
.tcsls-field > span b { color: var(--tcsls-accent); font-weight: 700; }
.tcsls-field > span em { color: #8b9295; font-size: 10px; font-style: normal; }
.tcsls-field input,
.tcsls-field select,
.tcsls-field textarea {
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid #dfe2e2;
  border-radius: 6px;
  outline: 0;
  background: #fafafa;
  color: #33383b;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.tcsls-field select { appearance: auto; }
.tcsls-field input::placeholder,
.tcsls-field textarea::placeholder { color: #9ca2a5; opacity: 1; }
.tcsls-field input[type="date"] { color-scheme: light; }
.tcsls-field textarea { min-height: 82px; resize: vertical; }
.tcsls-field input[readonly] { background: #f2f3f3; color: #747b7f; cursor: default; }
.tcsls-field input:focus,
.tcsls-field select:focus,
.tcsls-field textarea:focus {
  border-color: var(--tcsls-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,90,44,.09);
}
.tcsls-custom-schedule[hidden] { display: none !important; }
.tcsls-form-meta {
  margin: 12px 0 0;
  color: #8a9195;
  font-size: 10px;
  line-height: 1.4;
}
.tcsls-form-meta span { display: inline-block; }
.tcsls-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 16px;
  color: #747c80;
  font-size: 9.5px;
  line-height: 1.5;
}
.tcsls-consent input { width: 14px; height: 14px; margin: 1px 0 0; accent-color: var(--tcsls-accent); flex: 0 0 auto; }
.tcsls-consent a { color: var(--tcsls-accent) !important; text-decoration: underline; text-underline-offset: 2px; }
.tcsls-submit {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--tcsls-accent);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tcsls-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(255,90,44,.18); background: #ed4e23; }
.tcsls-form-notice { margin: 0 0 14px; padding: 10px 11px; border-radius: 6px; font-size: 11px; line-height: 1.45; }
.tcsls-success { background: #edf8f1; color: #27613c; border: 1px solid #cfe8d8; }
.tcsls-error { background: #fff1ee; color: #9c3f2b; border: 1px solid #f2d1c9; }
.tcsls-hp-field { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Navigation */
.tcsls-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 54px; margin-top: 64px; border-top: 1px solid #dedfdd; }
.tcsls-post-nav-slot a { display: inline-flex; align-items: center; gap: 10px; color: #33383b !important; text-decoration: none !important; font-size: 12px; line-height: 1.3; text-transform: uppercase; letter-spacing: .055em; font-weight: 800; }
.tcsls-next-slot { text-align: right; }
.tcsls-next-slot a { justify-content: flex-end; }
.tcsls-nav-arrow { display: inline-grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--tcsls-accent); color: #fff; font-size: 14px; }

@media (max-width: 1100px) {
  .tcsls-grid.tcsls-cols-3,
  .tcsls-grid.tcsls-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tcsls-card-link { min-height: 500px; }
  .tcsls-hero-inner { grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: 44px; }
  .tcsls-hero-media,
  .tcsls-hero-media img,
  .tcsls-hero-placeholder { min-height: 400px; }
  .tcsls-content-layout { grid-template-columns: 270px minmax(0, 1fr); gap: 42px; }
}

@media (max-width: 850px) {
  .tcsls-shell { width: min(100% - 32px, 1280px); }
  .tcsls-hero { padding: 58px 0 72px; }
  .tcsls-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .tcsls-hero-copy h1 { max-width: 760px; }
  .tcsls-hero-media,
  .tcsls-hero-media img,
  .tcsls-hero-placeholder { min-height: 390px; }
  .tcsls-content-section { padding-top: 62px; }
  .tcsls-content-layout { grid-template-columns: 1fr; }
  .tcsls-sidebar { position: static; }
  .tcsls-service-menu { max-width: none; }
}

@media (max-width: 680px) {
  .tcsls-category-tabs { gap: 8px; margin-bottom: 24px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: thin; }
  .tcsls-tab { flex: 0 0 auto; min-height: 40px; padding: 8px 16px; font-size: 13px; }
  .tcsls-grid,
  .tcsls-grid.tcsls-cols-2,
  .tcsls-grid.tcsls-cols-3,
  .tcsls-grid.tcsls-cols-4 { grid-template-columns: 1fr; gap: 22px; }
  .tcsls-card-link { min-height: 470px; }
  .tcsls-card-copy { left: 22px; right: 22px; bottom: 25px; }
  .tcsls-card-title { font-size: 29px; }
  .tcsls-card-arrow { width: 52px; height: 52px; top: 16px; right: 16px; }
  .tcsls-shell { width: min(100% - 24px, 1280px); }
  .tcsls-hero { padding: 48px 0 58px; }
  .tcsls-hero-copy h1 { font-size: clamp(40px, 13vw, 58px); }
  .tcsls-hero-copy p { margin-top: 20px; font-size: 15px; }
  .tcsls-hero-media,
  .tcsls-hero-media img,
  .tcsls-hero-placeholder { min-height: 290px; }
  .tcsls-content-section::before { width: 72%; height: 18px; }
  .tcsls-content-section { padding: 48px 0 40px; }
  .tcsls-service-menu { padding: 22px 18px; }
  .tcsls-main-content h2 { font-size: 34px; }
  .tcsls-faq-question { padding: 17px 16px; gap: 14px; }
  .tcsls-faq-answer { padding: 0 16px 17px; }
  .tcsls-lead-form-section { margin-top: 20px; padding: 20px 17px; }
  .tcsls-post-nav { grid-template-columns: 1fr; margin-top: 48px; }
  .tcsls-next-slot { text-align: left; }
  .tcsls-next-slot a { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .tcsls-card-image,
  .tcsls-card-arrow,
  .tcsls-card-description,
  .tcsls-tab,
  .tcsls-submit,
  .tcsls-service-menu a { transition: none !important; }
}

/* Updated single page layout */
.tcsls-hero-form .tcsls-booking-form,
.tcsls-hero-form form {
  margin-top: 0;
}
.tcsls-hero-form {
  background: rgba(255,255,255,.06);
  padding: 24px;
  border-radius: 18px;
}
.tcsls-hero-form .tcsls-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.tcsls-featured-image {
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
}
.tcsls-featured-image img {
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
/* FAQ cleaner UI */
.tcsls-accordion { gap:16px; }
.tcsls-faq-item {
  border:1px solid #e9ecec;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,.04);
}
.tcsls-faq-question {
  padding:22px 24px;
  font-size:16px;
}
.tcsls-faq-item.is-open .tcsls-faq-question {
  color:var(--tcsls-accent);
}
.tcsls-faq-answer {
  padding:0 24px 22px;
  color:#667075;
  line-height:1.7;
}
@media(max-width:767px){
 .tcsls-hero-form .tcsls-form-row {grid-template-columns:1fr;}
}

/* =========================================================
   Leads v1.5.1 — centered banner + strict 4-column form
   ========================================================= */
.tcsls-single .tcsls-hero {
  min-height: clamp(650px, 78vh, 760px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 96px 0 66px !important;
}

.tcsls-single .tcsls-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
}

/* Lead name sits directly above the form and stays centered. */
.tcsls-single .tcsls-hero-copy {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto 20px !important;
  text-align: center !important;
}
.tcsls-single .tcsls-hero-copy h1 {
  max-width: none !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(32px, 3.2vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.03em !important;
  text-transform: none !important;
}

/* Form itself is centered horizontally in the banner. */
.tcsls-single .tcsls-hero-form {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 18px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.055) !important;
}
.tcsls-single .tcsls-hero-form .tcsls-lead-form-section {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
}

/* Four input fields per row on desktop/current wide layout. */
.tcsls-single .tcsls-hero-form .tcsls-form-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 13px 14px !important;
  width: 100% !important;
}
.tcsls-single .tcsls-hero-form .tcsls-field,
.tcsls-single .tcsls-hero-form .tcsls-field.tcsls-span-2 {
  grid-column: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
}
.tcsls-single .tcsls-hero-form .tcsls-field > span {
  margin-bottom: 5px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase !important;
}
.tcsls-single .tcsls-hero-form .tcsls-field input,
.tcsls-single .tcsls-hero-form .tcsls-field select,
.tcsls-single .tcsls-hero-form .tcsls-field textarea {
  width: 100% !important;
  min-height: 43px !important;
  height: 43px;
  margin: 0 !important;
  padding: 9px 11px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #30363a !important;
  font-size: 12px !important;
}
.tcsls-single .tcsls-hero-form .tcsls-field textarea {
  resize: vertical;
}
.tcsls-single .tcsls-hero-form .tcsls-form-meta {
  display: none !important;
}
.tcsls-single .tcsls-hero-form .tcsls-consent {
  display: inline-flex !important;
  width: calc(100% - 190px) !important;
  margin: 14px 0 0 !important;
  padding-right: 18px !important;
  color: rgba(255,255,255,.76) !important;
  vertical-align: middle;
}
.tcsls-single .tcsls-hero-form .tcsls-consent a {
  color: #fff !important;
}
.tcsls-single .tcsls-hero-form .tcsls-submit {
  float: right;
  width: auto !important;
  min-width: 170px;
  min-height: 42px;
  margin-top: 12px !important;
  padding: 9px 20px !important;
}
.tcsls-single .tcsls-hero-form .tcsls-booking-form::after {
  content: '';
  display: table;
  clear: both;
}
.tcsls-single .tcsls-hero-form .tcsls-form-notice {
  margin-bottom: 13px;
}
.tcsls-single .tcsls-menu-chev {
  font-size: 21px;
  font-weight: 500;
}

/* Keep four columns at widths where the previous version fell back to two. */
@media (max-width: 760px) {
  .tcsls-single .tcsls-hero {
    min-height: auto !important;
    padding: 70px 0 48px !important;
  }
  .tcsls-single .tcsls-hero-inner {
    width: min(100% - 28px, 1380px) !important;
  }
  .tcsls-single .tcsls-hero-form .tcsls-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .tcsls-single .tcsls-hero-form .tcsls-consent {
    display: flex !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .tcsls-single .tcsls-hero-form .tcsls-submit {
    float: none;
    width: 100% !important;
    margin-top: 13px !important;
  }
}

@media (max-width: 520px) {
  .tcsls-single .tcsls-hero-copy {
    margin-bottom: 16px !important;
  }
  .tcsls-single .tcsls-hero-copy h1 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }
  .tcsls-single .tcsls-hero-form {
    padding: 14px !important;
  }
  .tcsls-single .tcsls-hero-form .tcsls-form-grid {
    grid-template-columns: 1fr !important;
  }
}
