#rentals.tk-rental-section {
  --tk-navy: #08243a;
  --tk-red: #e72c25;
  --tk-cream: #f5f0e8;
  --tk-ink: #241f18;
  --tk-muted: #66737f;
  background: var(--tk-cream);
  color: var(--tk-ink);
  padding: clamp(72px, 9vw, 120px) 24px;
}

.tk-rental-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tk-rental-eyebrow {
  color: var(--tk-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tk-rental-title {
  margin: 0;
  color: var(--tk-navy);
  font-family: var(--fdisp, Impact, sans-serif);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
}

.tk-rental-intro {
  max-width: 720px;
  margin: 18px 0 38px;
  color: #53616c;
  font-size: 18px;
  line-height: 1.65;
}

.tk-rental-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(8, 36, 58, .14);
}

.tk-rental-photo-wrap {
  min-width: 0;
  background: var(--tk-navy);
  display: flex;
  flex-direction: column;
}

.tk-rental-photo-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 510px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #f9fbfc 0, #dce5ea 68%, #c5d1d8 100%);
}

.tk-rental-photo-stage > img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 20px 10px;
}

.tk-rental-photo-stage[data-gallery-mode="photo"] > img {
  padding: 0;
  object-fit: cover;
}

.tk-rental-photo-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(8, 36, 58, .9);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tk-rental-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: var(--tk-navy);
}

.tk-rental-thumb {
  min-width: 0;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  text-align: left;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.tk-rental-thumb img {
  width: 72px;
  height: 52px;
  min-height: 0;
  border-radius: 7px;
  padding: 2px;
  background: #edf2f5;
  object-fit: contain;
}

.tk-rental-thumb:nth-child(2) img { padding: 0; object-fit: cover; }
.tk-rental-thumb[aria-pressed="true"] { border-color: #fff; background: rgba(255, 255, 255, .2); }
.tk-rental-thumb:focus-visible { outline: 3px solid #ffd15c; outline-offset: 2px; }

.tk-rental-details {
  padding: clamp(28px, 4vw, 48px);
}

.tk-rental-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 11px;
  background: #e7f7ef;
  color: #11603d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tk-rental-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a16b;
}

.tk-rental-details h3 {
  margin: 18px 0 8px;
  color: var(--tk-navy);
  font-family: var(--fdisp, Impact, sans-serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: .98;
  text-transform: uppercase;
}

.tk-rental-details > p {
  margin: 0;
  color: #5a6872;
  line-height: 1.6;
}

.tk-rental-rate {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 7px;
  margin-top: 18px;
  color: var(--tk-navy);
}

.tk-rental-rate strong { font-size: 34px; line-height: 1; }
.tk-rental-rate span { font-size: 16px; font-weight: 900; }
.tk-rental-rate small { flex-basis: 100%; color: #66737f; font-size: 12px; font-weight: 800; }

.tk-rental-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.tk-rental-spec {
  border: 1px solid #dce4e9;
  border-radius: 10px;
  padding: 12px;
  background: #f8fafb;
}

.tk-rental-spec small {
  display: block;
  color: #78858e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.tk-rental-spec strong { color: var(--tk-navy); }

.tk-rental-disclaimer {
  margin-top: 16px !important;
  font-size: 12px;
  color: #7a858d !important;
}

.tk-rental-form-panel {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: var(--tk-navy);
  color: #fff;
}

.tk-rental-form-panel h3 {
  margin: 0 0 8px;
  font-family: var(--fdisp, Impact, sans-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  text-transform: uppercase;
}

.tk-rental-form-panel > p {
  margin: 0 0 22px;
  color: #b9ccda;
  line-height: 1.55;
}

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

.tk-field { display: block; }
.tk-is-hidden { display: none !important; }
.tk-field.tk-wide { grid-column: 1 / -1; }

.tk-field > span {
  display: block;
  margin-bottom: 6px;
  color: #dce8f0;
  font-size: 12px;
  font-weight: 900;
}

.tk-field input,
.tk-field select,
.tk-field textarea {
  width: 100%;
  border: 1px solid #49677e;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: #18242d;
  font: inherit;
}

.tk-field textarea { min-height: 96px; resize: vertical; }
.tk-field [aria-invalid="true"] { border-color: #ff8f89; box-shadow: 0 0 0 2px rgba(242,41,34,.18); }

.tk-rental-submit,
.tk-contact-submit {
  border: 0 !important;
  border-radius: 10px !important;
  padding: 13px 18px !important;
  background: var(--tk-red, #e72c25) !important;
  color: #fff !important;
  font-weight: 900 !important;
  cursor: pointer;
}

.tk-rental-submit { margin-top: 16px; }
.tk-rental-submit:disabled,
.tk-contact-submit:disabled { opacity: .62; cursor: wait; }

.tk-form-status {
  display: none;
  margin-top: 14px;
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.45;
}

.tk-form-status.is-visible { display: block; }
.tk-form-status.is-success { background: #e7f7ef; color: #11603d; }
.tk-form-status.is-error { background: #fff0ef; color: #9a211c; }

.tk-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

#contact .tk-contact-email-row { margin-bottom: 0; }

@media (max-width: 850px) {
  .tk-rental-card { grid-template-columns: 1fr; }
  .tk-rental-photo-stage,
  .tk-rental-photo-stage > img { min-height: 420px; }
}

@media (max-width: 620px) {
  #rentals.tk-rental-section { padding-inline: 16px; }
  .tk-rental-title { font-size: clamp(38px, 13vw, 54px); }
  .tk-rental-intro { font-size: 16px; margin-bottom: 28px; }
  .tk-rental-form-grid,
  .tk-rental-specs { grid-template-columns: 1fr; }
  .tk-field.tk-wide { grid-column: auto; }
  .tk-rental-photo-stage,
  .tk-rental-photo-stage > img { min-height: 280px; }
  .tk-rental-photo-stage > img { padding: 12px 4px; }
  .tk-rental-thumbs { gap: 8px; padding: 8px; }
  .tk-rental-thumb { grid-template-columns: 54px minmax(0, 1fr); min-height: 58px; gap: 7px; font-size: 11px; }
  .tk-rental-thumb img { width: 54px; height: 44px; }
  .tk-rental-details { padding: 26px 22px; }
  .tk-rental-form-panel { border-radius: 16px; }
  .tk-rental-submit { width: 100%; text-align: center; }
}
